s9e/shortest-common-superstring

Shortest common superstring generator

2.1.0 2019-11-05 15:06 UTC

This package is auto-updated.

Last update: 2024-04-11 19:18:03 UTC


README

s9e\ShortestCommonSuperstring takes a list of strings and returns a single string that contains all of the given input. The implementation uses a greedy approximation algorithm.

Build Status Code Coverage Scrutinizer Code Quality

Usage

$scs = new s9e\ShortestCommonSuperstring\ShortestCommonSuperstring;
echo $scs->getShortest(['abb', 'bba', 'bbb']);
abbba