View Single Post
Old 06-02-2022, 08:42 PM   #1
sahithya
Registered User
 
Join Date: Feb 2013
Location: Bangalore
Posts: 1,231
5 algorithms every programmer must know

1. Binary Search, iterative and recursive implementation. My favorite one.

2. Bubble Sort. It’s pretty slow and is not used in real projects, so you need just to understand it.

3. Merge Sort. Teaches efficient, comparison sorting via recursion.

4. Quick Sort. Teaches efficient in-place sorting.

5. Depth/Breadth First Search.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
sahithya is offline   Reply With Quote