aboutsummaryrefslogtreecommitdiff
path: root/lib/util/lcp.go
blob: 2e2e6906aefaac2f8a261388624fea7cb7e905df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Licensed under the GNU Free Documentation License 1.2
// https://www.gnu.org/licenses/old-licenses/fdl-1.2.en.html
//
// Source: https://rosettacode.org/wiki/Longest_common_prefix#Go

package util

func LongestCommonPrefix(list []string) string {
	// Special cases first
	switch len(list) {
	case 0:
		return ""
	case 1:
		return list[0]
	}

	// LCP of min and max (lexigraphically)
	// is the LCP of the whole set.
	min, max := list[0], list[0]
	for _, s := range list[1:] {
		switch {
		case s < min:
			min = s
		case s > max:
			max = s
		}
	}

	for i := 0; i < len(min) && i < len(max); i++ {
		if min[i] != max[i] {
			return min[:i]
		}
	}

	// In the case where lengths are not equal but all bytes
	// are equal, min is the answer ("foo" < "foobar").
	return min
}