Commit Graph

561 Commits

Author SHA1 Message Date
walter-ind
de21114391
Add files via upload 2019-10-02 13:22:43 +05:30
Ashwek Swamy
08728c0481
Merge pull request #292 from PRITI1999/master
Update Bubble Sort.cpp
2019-09-20 16:46:44 +05:30
PRITI1999
c05fe43168
Update Bubble Sort.cpp
Removed unnecessary usage of break and restored the single entry and single exit mechanism
2019-09-17 21:49:29 +05:30
Yang Libin
641514acb4
Merge pull request #289 from shoaibrayeen/patch-1
Space Optimization for the code - Constant Space
2019-08-29 23:35:03 +08:00
Shoaib Rayeen
ded49a0016
Space Optimization for the code - Constant Space 2019-08-29 13:19:45 +05:30
Yang Libin
b7116581d5
Merge pull request #288 from jordan-matthews-98/master
fixed BFT, removed unneeded code
2019-08-28 09:09:45 +08:00
Jordan Matthews
9a5d8d9c6b
Merge branch 'master' into master 2019-08-27 10:33:04 -05:00
jordan-matthews-98
c09256f42d fixed BFT, removed unneeded code 2019-08-27 10:14:38 -05:00
yanglbme
69ddc9fc52 style: format code 2019-08-21 10:10:08 +08:00
Yang Libin
abc0d365de
Update Queue Using Linked List.cpp 2019-08-21 09:17:20 +08:00
Yang Libin
0ab4f5f89d
Merge pull request #286 from omkarkolate/patch-2
Update in Deque() fuction
2019-08-21 09:16:36 +08:00
Omkar Kolate
3631f6570e
Update in Deque() fuction
Because of earlier logic not going to deque the last element of the queue because at the last front == rear as per your logic which directly results in "Underflow".
2019-08-15 16:10:59 +05:30
Yang Libin
71b03523dd
Merge pull request #281 from khavinshankar/master
Added reverse function to linked list
2019-08-07 18:30:28 +08:00
Khavin Shankar
19df162e6b
Merge pull request #1 from khavinshankar/reverse-function-to-linked-list
Update Linked List.cpp
2019-08-07 07:06:31 +05:30
Khavin Shankar
5db2683566
Update Linked List.cpp 2019-08-07 07:04:58 +05:30
Yang Libin
c071083afe
Merge pull request #280 from abhishek-987/newBranch
added Dynamic Programming Problems
2019-08-01 17:23:37 +08:00
Abhishek Chaturvedi
0b8d66bd91 added Dynamic Programming Problems 2019-07-30 22:40:44 +05:30
mahbubur.rahman
12a886fae7 Added knuth pratt morris algorithm for sfinding string match.
- Calculate whether the given pattern exist in the given text.
- Return true if it finds a match.
- Otherwise return false.
2019-07-19 17:55:42 +09:00
Ashwek Swamy
a3ddfcdcf3
Merge pull request #171 from AbhiY98/master
Added Topological Sorting
2019-02-20 15:35:54 +05:30
Abhishek Yadav
a8ab996d27
Update Topological-Sort.cpp 2019-02-20 00:15:38 +05:30
Ashwek Swamy
f77fd6fb2d
Update BFS.cpp
Fixed issue #179
2019-02-17 17:58:40 +05:30
Ashwek Swamy
8f468a9cd4
Merge pull request #180 from Deepak25101997/master
Selection Sort in Singly Linked List
2019-02-14 19:38:09 +05:30
Deepak25101997
3543096846
Selection Sort in Singly Linked List
Selection Sort in Singly Linked List with proper comments for better understanding.
2019-02-14 02:48:58 +05:30
Deepak25101997
ea776f0a0b
Delete selectionSortLinkedList.cpp 2019-02-14 02:46:55 +05:30
Ashwek Swamy
00437ca392
Merge pull request #145 from keshav-space/master
Added new Algorithms to compute power for Huge Number
2019-02-13 19:28:32 +05:30
Ashwek Swamy
62ff5e5d61
Indent code 2019-02-13 19:28:19 +05:30
Ashwek Swamy
c8ad735c0b
Merge pull request #123 from ojas1234/master
Added Binary heap in data structures
2019-02-12 21:48:36 +05:30
Ashwek Swamy
a9d7f92c87
Rename Datastructures/Binaryheap.cpp to Data Structure/Binaryheap.cpp 2019-02-12 21:48:26 +05:30
ashwek
e946cc8291 Moved programs to appropriate directories 2019-02-12 20:32:46 +05:30
ashwek
bd6c8a3531 Removed duplicate files 2019-02-12 18:58:22 +05:30
ashwek
80a487e911 Removed Stack Using Array.cpp
Updated version exists in "Data Structure/"
2019-02-12 18:54:31 +05:30
ashwek
67283e0adc Removed Sparse Matrix.cpp
Updated version exists at "Others/"
2019-02-12 18:53:21 +05:30
ashwek
a4b38f79ba Removed Paranthesis Matching.cpp
Updated version exists at "Others/"
2019-02-12 18:49:29 +05:30
ashwek
b93e42bfe7 Removed Linked List.cpp
Updated version exists at "Data Structure"
2019-02-12 18:47:19 +05:30
ashwek
3c87bc84b5 Removed Others/Happy_number.cpp
Updated versions exists at /
2019-02-12 18:44:56 +05:30
ashwek
3688e48cc0 Removed Decimal to Roman Numeral.cpp
Updated version exists at Others/
2019-02-12 18:41:45 +05:30
ashwek
dc47d48cd8 Removed Others/Decimal To Hexadecimal .cpp
updated versions exists (Decimal To Hexadecimal.cpp)
2019-02-12 18:40:26 +05:30
ashwek
374f68aa1f Removed Others/Decimal To Binary.cpp
Recent updated version exists (Decimal To Binary.cpp)
2019-02-12 18:36:25 +05:30
ashwek
98c00dc47d Deleted Binary Search Tree.cpp
Duplicate. Same file exists in "Data Structure" directory
2019-02-12 18:26:58 +05:30
ashwek
81db27db04 Deleted Tree.cpp
Duplicate. Same file exists in "Data Structure" directory.
2019-02-12 18:23:34 +05:30
Deepak25101997
3e7cf72300
Selection Sort in Singly Linked List 2019-02-11 06:27:36 +05:30
ashwek
df7cc5d4d0 Renamed Datastructures -> Data Structure
Following uniform naming convention in the repo
2019-02-10 20:02:33 +05:30
Ashwek Swamy
37326e92dd
Merge pull request #114 from Aruj-Sharma/master
Added Bitonic Sort
2019-02-10 19:21:23 +05:30
Ashwek Swamy
293a9bf14a
Update BitonicSort.cpp 2019-02-10 19:20:56 +05:30
Ashwek Swamy
1d90764630
Merge pull request #156 from Deepak-j-p/master
Implemented sort for string
2019-02-10 12:32:27 +05:30
Ashwek Swamy
46970cd5fc
Update CountingSortString.cpp 2019-02-10 12:32:07 +05:30
Ashwek Swamy
f3ba9082f8
Merge pull request #167 from rafi007akhtar/rafi_changes
DP program: Catalan numbers
2019-02-10 12:27:18 +05:30
Ashwek Swamy
f4b0006955
Merge pull request #155 from gopikrishnanrmg/master
Added and algorithm to check if a number is palindrome
2019-02-10 12:10:48 +05:30
Ashwek Swamy
9e6cd3bb7c
Update Palindromeofnumber.cpp 2019-02-10 12:10:29 +05:30
Ashwek Swamy
4ede76c969
Merge pull request #94 from tosirap/master
Odd_Even Sort
2019-02-10 11:22:48 +05:30