Skip to content

Commit 75c3c32

Browse files
committed
Algorithm set v1
1 parent 100e29a commit 75c3c32

File tree

6 files changed

+515
-3
lines changed

6 files changed

+515
-3
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Algorithm-examples
22
algorithm examples in java
33

4-
* Bullet list
5-
* Nested bullet
6-
* Sub-nested bullet etc
4+
* Sorting algorithms
5+
* bubbleSort
6+
* selectionSort
7+
8+
* Binary search algorithms
9+
* Recursive
10+
* Non-Recursive
11+
12+
* Implementation of the queue by using a linked list
13+
* Operations
14+
*Enque
15+
*Deque

bubbleSort/bubbleSort.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//Author Jayendra Matarage
12
import java.util.Arrays;
23

34
class bubbleSort{

non-recursive/NonRecursiveBinarySearch.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//Author Jayendra Matarage
12
import java.util.Scanner;
23

34
public class NonRecursiveBinarySearch {

0 commit comments

Comments
 (0)