Skip to content

Instantly share code, notes, and snippets.

@ka4tik
ka4tik / 0.suffixtree.cs
Created September 23, 2012 21:32 — forked from axefrog/0.suffixtree.cs
C# Suffix tree implementation based on Ukkonen's algorithm
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace SuffixTreeAlgorithm
{
public class SuffixTree
{