Commit Graph

199 Commits (9138e8497ef0f09e66bf7574bf8b459d9ef45fdc)
 

Author SHA1 Message Date
Ujjwal 616e931601
Added Time Complexity and remove single comment into multi comment (#135)
* Added Time Complexity and remove single comment into multi comment

* added new line at end of program
2021-04-05 06:39:20 -04:00
Tawfik Yasser 4f8f068ecc
New scheduling algorithm [Round Robin] (#133)
* Create round-robin.java

* Update README.md

Add the round robin to README
2021-04-04 17:47:59 -04:00
Toihir Halim 9e742e7f8c
Add circular linked list java (#134) 2021-04-04 15:28:46 -04:00
Ujjwal 072f928379
Added Double ended queue to C(#126)
* Added double ended queue using array

* replace space( ) to dash(-)

* remove space complexity 

removed space complexity because i did know how to check space complexity

* done the requested changes

* update queue index readme

add double-ended-queue-using-array.c under c-or-cpp

Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-04-03 12:44:38 -04:00
Ritish Sehgal 84053d436f
added max subarray sum (#131) 2021-04-03 12:16:29 -04:00
Hazel Mahajan 6cd32d216b
Create-sqrt-monotonic-binary-search.cpp (#114)
* Create sqrt_monotonic_binary_search.cpp

* Rename sqrt_monotonic_binary_search.cpp to sqrt-monotonic-binary-search.cpp

* update string index readme

add sqrt-monotonic-binary-search.cpp under c-or-cpp

Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
Co-authored-by: Ming Tsai <37890026+ming-tsai@users.noreply.github.com>
2021-04-02 14:05:47 -04:00
Ming Tsai e133ec61bd
Merge pull request #127 from verma-tanishq/tanishq
Adding interpolation search algorithm
2021-04-02 14:01:42 -04:00
Tawfik Yasser 675d45473f
Algorithm Added (#129) 2021-04-02 13:42:22 -04:00
Arsenic 1860e5b25c
update searching index readme
add interpolation search under c-or-cpp
2021-04-02 14:04:31 +05:30
Toihir Halim 26b3e1174f
Add doubly linked list java (#125)
* Add doubly linked list in java

* Add java doubly linked list's link to README.md
2021-04-01 10:26:43 -04:00
Tanishq Verma 2535572a87 Adding interpolation search algo 2021-04-01 14:08:51 +05:30
Valerio Trinca 32fa3fdc15
Add Counting Sort - java (#124)
* Add CountingSort.java

* File name and Readme sorting

* static main and print array
2021-03-30 08:17:14 -04:00
Ujjwal 3f1e345411
Permutation of String (#123)
* added Permutation of String

* permutation of string.c

the main object is to explain the code more easy

* permutation of string.c

the main object is to explain the code more easy

* updated readme

* done all the recommend changes.

* added link of Permutation of string

* Update and rename Permutation of String.c to Permutation-of-String.c

- rename according to the naming conventions 
- changed gets() to fgets()

* update index readme of strings

correctly linked [Permutation of String] after renaming of the file

Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-03-30 08:15:37 -04:00
Gauravsingh Sisodia d1c691d684
Add Haskell subSequences (#121)
* Add Haskell Sequence

* Add type signature for the function

* Add aim of sequence.hs program

Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-03-30 07:39:02 -04:00
Gauravsingh Sisodia 098eed7b6c
Add Haskell Palindrome (#120) 2021-03-27 13:19:27 -04:00
UnleashMe69 89b7afb0cf
bubble-sort.go added (#117)
* bubble-sort.go added

* Updated bubble sort algorithm
2021-03-27 13:15:52 -04:00
temitayo aa919129f2
Add Python linkedlist (#119)
* fixed incorrect links

* added singly list Data structure

* removed semi-column

* added doubly linked list

* added  doubly linked list

* docs: update linked list index

add python double linked list in the linked list inded

Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-03-26 10:07:29 -04:00
Hazel Mahajan 3168e2f6c3
Create string-reverse.cpp (#113)
* Create string_reverse.cpp

* Update string_reverse.cpp

* Rename string_reverse.cpp to string-reverse.cpp

following the naming convention of the repository

* docs: update string index readme

add string-reversal in the string index readme

Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-03-26 10:06:39 -04:00
temitayo 29cbbeaf11
Add singly linked lists for python (#116)
* fixed incorrect links

* added singly list Data structure

* removed semi-column
2021-03-23 11:20:13 -04:00
Vivek Bisht 929c1366a0
added bellman-ford for c++ (#115) 2021-03-20 11:08:19 -04:00
Goutham Krishna f7c33dcb6e
Update README (#108) (#111) 2021-03-18 15:48:09 -04:00
Goutham Krishna e250c52ded
rust-> palindrome program, enforces specification in #108 (#109)
* issue 108 example: rust palindrome program

* edits on gitignore file

* update to specification file

* Updated README.md

* Updated parent README
2021-03-16 08:41:41 -04:00
Ming Tsai cc756628a2
chore: add workflows name attribute 2021-03-12 18:49:04 -04:00
Tawfik Yasser f3150c963a
Adding the circular queue (#104)
* Create circular-queue-linked-list.cpp

* Update README.md

* Update circular-queue-linked-list.cpp
2021-03-12 18:40:53 -04:00
Goutham Krishna 891c5816ac
Rename greating.yml to greeting.yml (#107) 2021-03-12 18:40:32 -04:00
Atin Bainada 08410d94b5
Interval Scheduling, Quick Sort, Insertion Sort in Go (#102)
* Interval Scheduling, Quick Sort, Insertion Sort in Go

* Update quick-sort.go

* Update interval-scheduling.go
2021-03-07 12:49:25 -04:00
Tawfik Yasser e211a1d20a
Queue linked-list Added (#100)
* Queue linked-.list Added

* Update queue-linked-list.cpp

* Update queue-linked-list.cpp
2021-03-07 12:47:15 -04:00
Atin Bainada fd412d13bd
Added contributors in the README (#98) 2021-03-03 18:52:16 -04:00
Ritish Sehgal cdaef8f9af
Added Dutch Flag algo (#93) 2021-03-03 14:55:50 -04:00
Goutham Krishna 6fe5b94526
Add Palindrome Check Algorithm in Python (Idiomatic Python) (#96) 2021-03-03 14:55:42 -04:00
truonggiangtran 327a2ad594
Add 3way quick sort for c++ (#85)
* Add 3way quick sort for c++

* Include description for 3way_quick_sort
2021-03-03 14:55:27 -04:00
Atin Bainada e375a9f8b0
Added Linear, Binary Search in Go (#94)
* Create linear-search.go

* Create binary-search.go

* Update README.md
2021-03-03 14:54:01 -04:00
Arsenic 7d9f810c06
fix: numbering in linked-list index (#92) 2021-03-01 20:04:36 -04:00
B PAVAN KUMAR 1018546897
added left-rotation.cpp file (#84)
* added left-rotation.cpp file

* Update README.md

Added a link for left-rotation.cpp
2021-02-28 15:24:22 -04:00
everly-gif 7eb8b8327c
Add Josephus Problem Using Circular Linked List (#86)
* Add Josephus Problem Using Circular Linked List

* Update josephus-problem.c

Made all requested changes
2021-02-28 09:18:15 -04:00
Ritish Sehgal 655bf87436
Added Dutch Flag algo (#87) 2021-02-28 09:17:57 -04:00
Shrashtika Singh a125b19f98
Add all possible insertion on linked lists (#82)
* all-possible-insertion-method-in-a-linked-list

* Rename All-possible-insertion-method.cpp to all-possible-insertion.cpp

* Update README.md
2021-02-26 11:39:29 -04:00
Akash Negi dcc8673790
Updated - README.md (#83)
This commit removes the statement in the section c# which states "You could use any online IDE (for an example [.net Finddle](https://dotnetfiddle.net/)) to test them."
2021-02-24 08:50:50 -04:00
Atin Bainada feb6dc99be
added algo to count inversions in an array in C++, Python, JavaScript and Java (#79)
* algo to count inversions in array

Added in C++, Python, JavaScript and Java

* Added comments

* Rename arrays/javascript/count-inversions.js to arrays/js/count-inversions.js

* Update count-inversions.cpp

* Update count-inversions.java

* Update count-inversions.js

* Update count-inversions.py
2021-02-23 16:14:09 -04:00
Ritwik Vaidya 8cb86de0d7
Add stacks for c-or-cpp (#80) 2021-02-21 21:33:58 -04:00
Atin Bainada 84d85814e2
Added Interval Scheduling Algorithm (#76)
* Create interval_scheduling.py

* Rename scheduling/interval_scheduling.py to scheduling/python/interval_scheduling.py

* Create README.md

* Update README.md

* Rename interval_scheduling.py to interval-scheduling.py
2021-02-18 11:38:12 -04:00
Tawfik Yasser 5938a1def4
Add method to single linkedlist (#75)
* Update singly.cpp

Add the `insertAtEnd()` method to single linkedlist.

* Update singly.cpp
2021-02-16 20:53:04 -04:00
Akash Negi b48084de34
insert_and_delete_beginning.c (#59)
* ADD - insert_at_beginning

This is a program to add item at the beginning of linked list . Structure Based Implementation .

* Changed FIle Named  .

File name was changed in accordance with the contribution guidelines .

* Changed c++ file to c . 

The file is updated and named was also changed

* Fixed Bug .

change the type of main function from void to int .
Fixed the edge cases for the deletion .
2021-02-14 02:28:12 -04:00
Vinayak Ravi Joshi 4d57584f7a
Add doubly, circular Linked List, and kruskal graphs (#72)
* Code for inserting elements in doubly linked list

* Circular linked list added

* Graphs Section added

* README updated
2021-02-11 16:25:00 -04:00
Tawfik Yasser 8c1cb2095f
Create greating.yml (#73) 2021-02-11 11:55:54 -04:00
Ming Tsai e34c727c55 docs: delete dummy new lines 2021-02-09 09:31:37 -04:00
Ming Tsai a6038e88cc chore: delete duplicate code 2021-02-09 09:31:25 -04:00
Ming Tsai 9416ad95f6 docs: delete dummy new line 2021-02-09 09:31:11 -04:00
Ming Tsai 998ddff4e5 chore: reanme reverse-linkedlist to reverse 2021-02-09 09:29:45 -04:00
Satyam Singh 6526860e53
added comp sort in cpp (#66)
* add binary search in js

* added merge sort in c

* added quick sort in cpp

* modified quick sort

* added heap sort

* updated readme.md

* added counting sort

* added bucket sort

* added shell sort

* added comb sort
2021-02-09 09:27:24 -04:00