SlideShare a Scribd company logo
Google
Applied CS
with Android
High Time
Ghost
How-to
1. Build dictionary
2. Set button click listeners
3. Decide the turn
Decide the turn
if (user's turn) {
listen to onKeyUp -> (k) {
if k is a valid letter {
append it to TextView
} else ignore
}
} else {
if word is of length 4 or more && it is a valid word {
Computer wins
} else {
put next character
}
}
Put next character
It should form a valid word
because this is a computer!
Ta-da !
while (low < high) {
mid = (low + high) / 2;
t = words.get(mid);
if(t.startsWith(prefix)) {
return t;
} else if(prefix.compareTo(t) > 0) {
// LHS is bigger
low = mid + 1;
} else {
// RHS is bigger
high = mid - 1;
}
}
Best case: O(1)
Average/Worst case:
O(log n)
Google Applied CS - Day 3
Google Applied CS - Day 3
Tri !
re(tri)eval
Basics
1. HashMap<Character, TrieNode> children
2. root.add(word)
3. root.isWord(word)
4. root.getAnyWordStartingWith(word)
Add a word to Trie
void add(String s, int position) {
if (position >= s.length()) return;
char c = s.charAt(position);
TrieNode n = children.get(c);
if (n == null) {
n = new TrieNode();
children.put(c, n);
}
if (position == s.length() - 1) {
n.isWord = true;
}
n.add(s, position + 1);
}
And a bit of method
overloading
void add(String s) {
add(s, 0)
}
void add(String s, int position) { ... }
Same logic, different application
1. root.isWord(word)
2. root.getAnyWordStartingWith(word)
Fast Dictionary !
An efficient lookup structure
This is it for today
Any doubts?

More Related Content

PDF
Google Applied CS - Day 1
PDF
Google Applied CS - Introduction
PDF
V 10 7-20
PDF
Google Applied CS - Day 4
PDF
Description of the project Purpose To implement a simple au.pdf
PPTX
Trie Data Structure
PDF
Souvenir's Booth - Algorithm Design and Analysis Project Project Report
Google Applied CS - Day 1
Google Applied CS - Introduction
V 10 7-20
Google Applied CS - Day 4
Description of the project Purpose To implement a simple au.pdf
Trie Data Structure
Souvenir's Booth - Algorithm Design and Analysis Project Project Report

Recently uploaded (20)

PDF
Complications of Minimal Access Surgery at WLH
PDF
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PDF
SOIL: Factor, Horizon, Process, Classification, Degradation, Conservation
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PPTX
Cell Types and Its function , kingdom of life
PPTX
Lesson notes of climatology university.
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
Classroom Observation Tools for Teachers
PDF
RMMM.pdf make it easy to upload and study
PPTX
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
Computing-Curriculum for Schools in Ghana
PDF
advance database management system book.pdf
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Complications of Minimal Access Surgery at WLH
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
SOIL: Factor, Horizon, Process, Classification, Degradation, Conservation
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
Cell Types and Its function , kingdom of life
Lesson notes of climatology university.
What if we spent less time fighting change, and more time building what’s rig...
Classroom Observation Tools for Teachers
RMMM.pdf make it easy to upload and study
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
LDMMIA Reiki Yoga Finals Review Spring Summer
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Paper A Mock Exam 9_ Attempt review.pdf.
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
A powerpoint presentation on the Revised K-10 Science Shaping Paper
A systematic review of self-coping strategies used by university students to ...
Computing-Curriculum for Schools in Ghana
advance database management system book.pdf
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Ad
Ad

Google Applied CS - Day 3