InterviewSolution
Saved Bookmarks
| 1. |
Quick search algorithm starts searching from the right most character to the left.(a) true(b) falseThis question was addressed to me in my homework.This intriguing question originated from String Matching topic in chapter String Matching of Data Structures & Algorithms II |
|
Answer» RIGHT answer is (b) false The best I can explain: Quick search ALGORITHM starts searching from the left most character to the right and it USES only bad character shift tables. |
|