theoryofprogramming icon indicating copy to clipboard operation
theoryofprogramming copied to clipboard

Implement Compressed Trie Tree in C

Open VamsiSangam opened this issue 8 years ago • 0 comments

Issue Description

  • Impement the compressed trie tree data structure in C. Required operations would be to insert and search for existence of words. startsWith opertion is optional.
  • Corresponding post on website
  • Permitted languages - C

Guidelines

  • Your code will be live on a tutorial website, so code readability and understandability will be given paramount importance.
  • Please follow coding conventions listed in CONVENTIONS.md
  • The directory structure of the project is pretty obvious, but take a moment to go through STRUCTURE.md if you are confused where to place your code.
  • Please add a few sample input output test case files too. Minimum 1. The more the merrier!

VamsiSangam avatar Feb 03 '17 17:02 VamsiSangam