Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 621 Bytes

File metadata and controls

18 lines (13 loc) · 621 Bytes

Algos

This repository showcases a collection of algorithms implemented in different programming languages.

csv_parser

  • Detail the logic behind a streaming CSV parser that is compliant with RFC 4180.

word_dict

  • Dictionary of words with efficient lookup supporting character substitution, insertion, and deletion, thus enabling exact and fuzzy matching.
  • Useful for autocomplete and spell checking.
  • Written in C++ and compilable with CMake. Manual compilation may require updating #include paths to reflect the project structure.
  • Licensed under the MIT License, which is included in each source file.