Implement and evaluate two search algorithms. Input data file: Your input file will be a CSV (comma-separated values) file. Each row in that input file will correspond to STATE information. Which of the following algorithms is commonly used for searching in sorted data structures like binary search trees?
A. Breadth-first search (BFS) .
B. Depth-first search (DFS) .
C. Binary search.
D. Linear search.