Skip to content

Latest commit

 

History

History

README.md

Strings

String manipulation, pattern matching, and string algorithms.

Key Concepts Covered

  • String traversal and manipulation
  • String reversal
  • Palindrome checking
  • Character manipulation (uppercase/lowercase)
  • ASCII operations
  • Trie data structure
  • Longest common subsequence

Problems in this Directory

String Manipulation

Palindrome Problems

Character Problems

Subsequence Problems

Trie Applications

Miscellaneous

Tips

  • Master two-pointer technique for string problems
  • Use StringBuilder/stringstream for concatenations
  • Remember ASCII values: 'A'=65, 'a'=97, '0'=48
  • Practice in-place string manipulation
  • Understand string hashing for pattern matching