Problem Solving with Algorithms and Data Structures
Runestone in social media:
Follow @iRunestone
Help support us:
Table of Contents
Book Index
Scratch ActiveCode
Change Course
Instructor's Page
Progress Page
Edit Profile
Change Password
Register
Login
Navigation Help
Help for Instructors
About Runestone
Report A Problem
Chapters
1. Introduction
2. Analysis
3. Linear Structures
4. Linear Linked Structures
5. Recursion
6. Searching and Hashing
7. Sorting
8. Trees and Tree Algorithms
9. Graphs and Graph Algorithms
6.8. Summary
ΒΆ
A sequential search is
\(O(n)\)
for ordered and unordered lists.
A binary search of an ordered list is
\(O(\log n)\)
in the worst case.
Hash tables can provide constant time searching.
Next Section - 6.9. Discussion Questions