コード例 #1
0
        public void SuffxiTree_LexGreatest_Tests(string input, string output)
        {
            var tree = new SuffixTree(input);

            Assert.Equal(output, tree.GetLexGreatestSubstring());
        }