hon9g / algorithms

TIL: to keep practice on algorithms
6 stars 2 forks source link

Trie #30

Open hon9g opened 4 years ago

hon9g commented 4 years ago

Problems selected by LeetCode for the topic Trie 🌐

Click ✔️ to go to each solution. The Link to each problem🌐 is at the top of each solution.

🔗 Basic Operations

# title my solution
208 Implement Trie (Prefix Tree) ✔️

🔗 Practical Application I

# title my solution
677 Map Sum Pairs ✔️
648 Replace Words ✔️
642 Design Search Autocomplete System
211 Add and Search Word - Data structure design

🔗 Practical Application II

# title my solution
421 Maximum XOR of Two Numbers in an Array
212 Word Search II
425 Word Squares
336 Palindrome Pairs
hon9g commented 4 years ago

208. Implement Trie (Prefix Tree)

/**

/**

/**

/**

hon9g commented 4 years ago

677. Map Sum Pairs

/**

hon9g commented 4 years ago

648. Replace Words

hon9g commented 4 years ago

642. Design Search Autocomplete System

hon9g commented 4 years ago

211. Add and Search Word - Data structure design

hon9g commented 4 years ago

421. Maximum XOR of Two Numbers in an Array

hon9g commented 4 years ago

212. Word Search II

hon9g commented 4 years ago

425. Word Squares

hon9g commented 4 years ago

336. Palindrome Pairs