Beispiel #1
0
        public void AddingElementsWithIndexer()
        {
            var suffixTree = new SuffixTreeMap <string>();

            var words = new string[]
            {
                "One", "one", "oNe", "two", "hello",
                "test", "here", "there", "?!??!?!?!?",
                "VeryVeryVeryLoooooooooooooooooong",
                ".k[2c3-9024g-u,9weg,ouimwt", "3q2tgwadh",
                "`+rv`+*1v+vt23*1`vt*1v", "!@#)(*^$!%@_",
                "  bum  ", "  bam  ", "  bum  bam  ",
                "1", "12", "123", "1234", "12345", "123456"
            };


            for (int i = 0; i < words.Length; i++)
            {
                if (suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }

                suffixTree[words[i]] = words[i];

                if (!suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }
            }

            Assert.IsTrue(suffixTree.Count == words.Length);
        }
Beispiel #2
0
        public void CheckIfSuffixIsContained()
        {
            var suffixTree = new SuffixTreeMap <string>();

            var words = new string[]
            {
                "One", "one", "oNe", "two", "hello",
                "test", "here", "there", "?!??!?!?!?",
                "VeryVeryVeryLoooooooooooooooooong",
                ".k[2c3-9024g-u,9weg,ouimwt", "3q2tgwadh",
                "`+rv`+*1v+vt23*1`vt*1v", "!@#)(*^$!%@_",
                "  bum  ", "  bam  ", "  bum  bam  ",
                "1", "12", "123", "1234", "12345", "123456"
            };


            for (int i = 0; i < words.Length; i++)
            {
                suffixTree.Add(words[i], words[i]);

                for (int j = 0; j < words[i].Length; j++)
                {
                    if (!suffixTree.ContainsSuffix(words[i].Substring(j, words[i].Length - j)))
                    {
                        Assert.Fail();
                    }
                }
                if (!suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }
            }

            Assert.IsTrue(suffixTree.Count == words.Length);
        }
Beispiel #3
0
        public void UpdatingElementsWithIndexerUsingTryGetValueMethodToGetValue()
        {
            var suffixTree = new SuffixTreeMap <string>();

            var words = new string[]
            {
                "One", "one", "oNe", "two", "hello",
                "test", "here", "there", "?!??!?!?!?",
                "VeryVeryVeryLoooooooooooooooooong",
                ".k[2c3-9024g-u,9weg,ouimwt", "3q2tgwadh",
                "`+rv`+*1v+vt23*1`vt*1v", "!@#)(*^$!%@_",
                "  bum  ", "  bam  ", "  bum  bam  ",
                "1", "12", "123", "1234", "12345", "123456"
            };


            for (int i = 0; i < words.Length; i++)
            {
                if (suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail("1");
                }

                suffixTree.Add(words[i], words[i]);

                if (!suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail("2");
                }
            }

            Assert.IsTrue(suffixTree.Count == words.Length);

            // Update all values
            for (int i = 0; i < words.Length; i++)
            {
                string value;
                if (suffixTree.TryGetValue(words[i], out value))
                {
                    suffixTree[value] = value + "updated";
                }
            }

            int count = 0;

            foreach (var kvp in suffixTree)
            {
                if (!object.Equals(kvp.Key + "updated", kvp.Value))
                {
                    Assert.Fail("3");
                }
                count++;
            }

            Assert.IsTrue(suffixTree.Count == count &&
                          suffixTree.Count == words.Length);
        }
Beispiel #4
0
        public void AddingAndRemovingSomeWordsAndCheckingIfContained()
        {
            var suffixTree = new SuffixTreeMap <string>();

            var words = new string[]
            {
                "One", "one", "oNe", "two", "hello",
                "test", "here", "there", "?!??!?!?!?",
                "VeryVeryVeryLoooooooooooooooooong",
                ".k[2c3-9024g-u,9weg,ouimwt", "3q2tgwadh",
                "`+rv`+*1v+vt23*1`vt*1v", "!@#)(*^$!%@_",
                "  bum  ", "  bam  ", "  bum  bam  ",
                "1", "12", "123", "1234", "12345", "123456"
            };


            for (int i = 0; i < words.Length; i++)
            {
                if (suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }

                suffixTree.Add(words[i], words[i]);

                if (!suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }
            }

            if (suffixTree.Count != words.Length)
            {
                Assert.Fail();
            }

            int removedWords = 0;

            for (int i = 0; i < words.Length; i += 2)
            {
                if (suffixTree.Remove(words[i]))
                {
                    removedWords++;
                }
                else
                {
                    Assert.Fail();
                }

                if (suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }
            }

            Assert.IsTrue(suffixTree.Count == words.Length - removedWords);
        }
Beispiel #5
0
        public void GetWordsBySuffixAndCheckIfSorted()
        {
            var suffixTree = new SuffixTreeMap <string>();

            var words = new string[]
            {
                "afa suffix", "abaa suffix", "asd suffix",
                "ase suffix", "rfda suffix", "rtfs suffix",
                "efad suffix", "Abaa suffix", "fasrg suffix",
                "test suffix", "t3st suffix", "tEst suffix",
                "TEST suffix", "Test suffix", "T3st suffix",
                "Test123 suffix", "aheyj suffix", "gwecgs suffix",
                ".,gml;k suffix", "rbkp;r suffix", "wopger'lb suffix",
                "  zzz suffix", "^&*(& suffix", "кирилица suffix",
                "suffix not presented"
            };

            for (int i = 0; i < words.Length; i++)
            {
                if (suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }

                suffixTree.Add(words[i], words[i]);

                if (!suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }
            }

            var previousWord = string.Empty;
            int suffixWords  = 0;

            foreach (var word in suffixTree.GetWordsBySuffix("suffix"))
            {
                if (string.CompareOrdinal(previousWord, word.Key) > 0)
                {
                    Assert.Fail();
                }

                System.Diagnostics.Trace.WriteLine(word);

                previousWord = word.Key;
                suffixWords++;
            }

            Assert.IsTrue(suffixTree.Count == words.Length &&
                          suffixWords < words.Length);
        }
Beispiel #6
0
        public void CheckIfSortedAfterAdding()
        {
            var suffixTree = new SuffixTreeMap <string>();

            var words = new string[]
            {
                "One", "one", "oNe", "two", "hello",
                "test", "here", "there", "?!??!?!?!?",
                "VeryVeryVeryLoooooooooooooooooong",
                ".k[2c3-9024g-u,9weg,ouimwt", "3q2tgwadh",
                "`+rv`+*1v+vt23*1`vt*1v", "!@#)(*^$!%@_",
                "  bum  ", "  bam  ", "  bum  bam  ",
                "1", "12", "123", "1234", "12345", "123456"
            };


            for (int i = 0; i < words.Length; i++)
            {
                if (suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }

                suffixTree.Add(words[i], words[i]);

                if (!suffixTree.ContainsWord(words[i]))
                {
                    Assert.Fail();
                }
            }

            var previousWord = string.Empty;

            foreach (var word in suffixTree)
            {
                if (string.CompareOrdinal(previousWord, word.Key) > 0)
                {
                    Assert.Fail();
                }

                //System.Diagnostics.Trace.WriteLine(word);

                previousWord = word.Key;
            }

            Assert.IsTrue(suffixTree.Count == words.Length);
        }