Skip to content

Instantly share code, notes, and snippets.

View lloydjatkinson's full-sized avatar
🌧️
Chilling

Lloyd Atkinson lloydjatkinson

🌧️
Chilling
  • England
  • 11:10 (UTC +01:00)
View GitHub Profile
@lloydjatkinson
lloydjatkinson / AhoCorasickTree.cs
Created April 24, 2017 07:53 — forked from alexandrnikitin/AhoCorasickTree.cs
Aho-Corasick C# implementation
using System.Collections.Generic;
using System.Linq;
namespace AhoCorasickTree
{
public class AhoCorasickTree
{
internal AhoCorasickTreeNode Root { get; set; }
public AhoCorasickTree(IEnumerable<string> keywords)