Saved Bookmarks
| 1. |
Which search method takes less memory?(a) Depth-First Search(b) Breadth-First search(c) Optimal search(d) Linear Search |
|
Answer» Correct choice is (a) Depth-First Search Best explanation: Depth-First Search takes less memory since only the nodes on the current path are stored, but in Breadth First Search, all of the tree that has generated must be stored. |
|