Concept

Data Structures

1. Read the file header (definition + complexity + when to use). 2. Run it: 3.

Where it fits

  1. Data structures
  2. Data Structures

Packages: Data structures (pkg3datastructures)

Learn

Existing chapters for this concept.

See it in code

Existing Java examples.

Practice

Existing LeetCode material in JavaForge.

  • Design Add and Search Words Data Structure

    Blind 75 · Tree · pkg5leetcode/blind75/blind75_LC211DesignAddAndSearchWordsDataStructure.java · pkg5leetcode · blind75_LC211DesignAddAndSearchWordsDataStructure.java

    Trie insert; DFS search with '.' wildcard branches. Time O(m) insert, O(26^d) search worst case

    Open practice

Prepare

Existing interview questions.