Sorting & Searching
Learn efficient algorithms for organizing and finding data.
Overview
Sorting and searching are fundamental operations in computer science, critical for efficiently organizing and retrieving data.
Sorting Algorithms
Comparison-Based Sorting
-
Bubble Sort
- Time Complexity: O(n²)
- Space Complexity: O(1)
- Stable: Yes
-
Selection Sort
- Time Complexity: O(n²)
- Space Complexity: O(1)
- Stable: No
-
Insertion Sort
- Time Complexity: O(n²)
- Space Complexity: O(1)
- Stable: Yes
-
Merge Sort
- Time Complexity: O(n log n)
- Space Complexity: O(n)
- Stable: Yes
-
Quick Sort
- Time Complexity: O(n log n) average, O(n²) worst
- Space Complexity: O(log n)
- Stable: No
-
Heap Sort
- Time Complexity: O(n log n)
- Space Complexity: O(1)
- Stable: No
Non-Comparison Sorting
-
Counting Sort
- Time Complexity: O(n + k)
- Space Complexity: O(n + k)
- Stable: Yes
-
Radix Sort
- Time Complexity: O(d * (n + k))
- Space Complexity: O(n + k)
- Stable: Yes
Searching Algorithms
-
Linear Search
- Time Complexity: O(n)
-
Binary Search
- Time Complexity: O(log n)
- Requires sorted data
-
Depth-First Search (DFS)
- Used for traversing or searching tree or graph structures
-
Breadth-First Search (BFS)
- Used for traversing or searching tree or graph structures
Common Problems
- Search in Rotated Sorted Array
- Find First and Last Position of Element in Sorted Array
- Merge Intervals
- Kth Largest Element in an Array
- Top K Frequent Elements
Related Resources
Practice Problems
Binary Search
EasyGiven a sorted array of integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
Search in Rotated Sorted Array
MediumThere is an integer array nums sorted in ascending order (with distinct values). Prior to being passed to your function, nums is possibly rotated. Given the array nums after the possible rotation and an integer target, return the index of target if it is in nums, or -1 if it is not in nums.
Study Tips
- Start with easier problems and gradually increase difficulty
- Focus on understanding the problem before coding
- Review solutions even after solving to learn optimal approaches