Skip to content

Commit edb439e

Browse files
author
Deepak Malik
committed
Updating ReadMe
1 parent 630e8b2 commit edb439e

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
## Algorithms-In-Java
2-
Implementation of Algorithms in Java
3-
4-
1. Searching
5-
- [Linear Search](../master/src/com/deepak/algorithms/Searching/LinearSearch.java)
6-
- [Binary Search](../master/src/com/deepak/algorithms/Searching/BinarySearch.java)
7-
8-
2. Sorting
9-
- [Time and Space Complexity](../master/src/com/deepak/algorithms/Sorting/TimeAndSpaceComplexity.md)
10-
- [Selection Sort](../master/src/com/deepak/algorithms/Sorting/SelectionSort.java)
11-
- [Insertion Sort](../master/src/com/deepak/algorithms/Sorting/InsertionSort.java)
12-
- [Bubble Sort](../master/src/com/deepak/algorithms/Sorting/BubbleSort.java)
13-
- [Merge Sort](../master/src/com/deepak/algorithms/Sorting/MergeSort.java)
14-
- [Counting Sort](../master/src/com/deepak/algorithms/Sorting/CountingSort.java)
2+
Implementation of Algorithms in Java, Most of these names are picked up from GeeksForGeeks
3+
4+
1. [ ] **Analysis of Algorithms**
5+
- [X] [Time and Space Complexity](../master/src/com/deepak/algorithms/Sorting/TimeAndSpaceComplexity.md)
6+
7+
2. [X] **Searching Algorithms**
8+
- [X] [Linear Search](../master/src/com/deepak/algorithms/Searching/LinearSearch.java)
9+
- [X] [Binary Search](../master/src/com/deepak/algorithms/Searching/BinarySearch.java)
10+
11+
2. [ ] **Sorting Algorithms**
12+
- [X] [Selection Sort](../master/src/com/deepak/algorithms/Sorting/SelectionSort.java)
13+
- [X] [Insertion Sort](../master/src/com/deepak/algorithms/Sorting/InsertionSort.java)
14+
- [X] [Bubble Sort](../master/src/com/deepak/algorithms/Sorting/BubbleSort.java)
15+
- [X] [Merge Sort](../master/src/com/deepak/algorithms/Sorting/MergeSort.java)
16+
- [X] [Counting Sort](../master/src/com/deepak/algorithms/Sorting/CountingSort.java)
1517

0 commit comments

Comments
 (0)