Skip to main content

10 docs tagged with "strings"

View all tags

Character Replacement

In this blog post, we'll explore how to solve the character replacement problem using the sliding window technique.

Strings

Learn about strings in JavaScript, Java, Python, and C++. Understand how to create, manipulate, and use strings effectively in programming.

Strings in C++

A professional guide to string manipulation in C++. Learn about legacy C-style character arrays, the modern std::string class, manipulation methods, safely parsing text streams, and position indexing.

Trie (Prefix Tree)

A comprehensive guide to the Trie (Prefix Tree) data structure with visual diagrams, Insert, Search, Delete, and AutoComplete implementations in Python, Java, and C++, and practice problems.