Ming Tsai
e9c25476d6
chore: list the directory
2021-04-14 21:50:45 -04:00
Ming Tsai
f62e6f7281
fix: the cd path
2021-04-14 21:45:49 -04:00
Ming Tsai
9d35a9e42c
chore: add dotnet action
2021-04-14 21:44:45 -04:00
Ming Tsai
2f47d5c828
chore: moving csharp file to its project ( #198 )
2021-04-14 21:42:45 -04:00
Toihir Halim
ef836c94d0
Added string tokenizer in java ( #184 )
...
* Added string tokenizer in java
* fix typos
* Update Readme change line index from 4 to 5
2021-04-14 20:37:29 -04:00
JACOB JAMES K
2f86af8736
Added Java Implementation of Dijkstras Algorithm for Single Source Shortest Path ( #187 )
...
* Added Java Implementation of Dijkstras Algorithm for Single Source Shortest Path
* Added changes to Dijkstras Algorithm Implementation according to review
* Corrected spelling mistakes
2021-04-14 14:54:00 -04:00
Aayush Jain
6cb96b0d44
Added myself to reviewer's list. ( #191 )
...
* Clone linked list with random pointer
* addition in reviewers list
2021-04-14 14:38:49 -04:00
Christian Clauss
d991c37cf1
Add Python doctests to singly linked list ( #190 )
2021-04-14 14:37:20 -04:00
Toihir Halim
0ca911387b
Add trees pre in post traversal java ( #178 )
...
* add pre, in and post traversal trees in java
* Update README.md
* update line 49 to pass lint test
change "System.out.print("\n\nin order: ");
to
System.out.println("\n");
System.out.print("in order: ");
2021-04-14 11:31:22 -04:00
Ujjwal
f662b85975
added count words program link
2021-04-14 20:24:42 +05:30
UG-SEP
f017b5df71
added Count Words.c
2021-04-14 20:19:59 +05:30
Sanjay PS
ca93cfa934
Added program in c for printing unique elements in an array ( #143 )
...
* Added program in c for printing unique elements in an array
* Update unique-elements-in-an-array.c
* Update unique-elements-in-an-array.c
* Update unique-elements-in-an-array.c
* Update unique-elements-in-an-array.c
- Make array declaration dynamic
- Formatted the output
- Cleanup of extra spaces in the program
Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-04-14 09:22:22 -04:00
Aayush Jain
b2cf773646
Clone linked list with random pointer ( #180 )
2021-04-14 08:40:52 -04:00
Toihir Halim
756589e272
Add reverse linked list in java ( #182 )
2021-04-13 23:43:37 -04:00
Ming Tsai
2017c59218
chore: add ignore word ( #181 )
2021-04-13 19:09:05 -04:00
Venkata Sridhar Sai
4d5176223f
added stack implementation and the standard problems on stacks in java ( #174 )
...
* added stack implementation and some standard problems on stacks in java
* Update stacks/JAVA/The_Stock_Span_Problem.java
Co-authored-by: Christian Clauss <cclauss@me.com>
* Update stacks/JAVA/The_Stock_Span_Problem.java
Co-authored-by: Christian Clauss <cclauss@me.com>
* all the suggestions addressed
* comments wrapped,Thanks for the suggestion.
* Update The_Stock_Span_Problem.java
* folder renamed
* renamed files
* Delete Balanced_Paranthesis.java
* Delete The_Stock_Span_Problem.java
* Delete stack.java
Co-authored-by: Christian Clauss <cclauss@me.com>
2021-04-13 14:53:25 -04:00
Atin Bainada
0a9135b5b3
Added doctest in palindrome.py ( #172 )
...
* Added doctest in palindrome.py
* small change to re run lint_python test
2021-04-13 12:01:28 -04:00
Atin Bainada
8793610586
fix: typo in readme ( #173 )
2021-04-13 11:31:18 -04:00
Ritish Sehgal
7afe26d505
Added build Binary Tree function in Cpp ( #160 )
...
* added max subarray sum
* added pre,in,post traversals
* Update pre-in-post-traversal.cpp
formatted the output
* Update pre-in-post-traversal.cpp
formatted output
* added build binary tree function
Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-04-13 11:00:41 -04:00
Ming Tsai
3d81af66e5
docs: add reviewers list
2021-04-13 09:30:56 -04:00
Christian Clauss
7a9ae18fca
Add Python doctest to interval-scheduling.py ( #162 )
...
* Add Python doctest to interval-scheduling.py
* URL to a description of the algorithm used
* Remove a stale comment
2021-04-13 07:00:59 -04:00
Christian Clauss
bd860a57a4
Add Python doctest to insertion-sort.py ( #165 )
...
* Add Python doctest to insertion-sort.py
* if __name__ == "__main__":
* Update insertion-sort.py
2021-04-12 12:23:20 -04:00
Christian Clauss
66c65383fb
Add Python doctests to quicksort.py ( #166 )
...
* Add Python doctests to quicksort.py
* quicksort(list(reversed(ascii_letters)))
* Update quick-sort.py
2021-04-12 12:22:12 -04:00
Christian Clauss
488eec39ef
Self-documenting variable names make comment unnecessary ( #163 )
2021-04-12 12:15:46 -04:00
Christian Clauss
2a8185f159
Add Python doctests to count-inversions.py ( #159 )
...
* Add Python doctests to count-inversions.py
These [doctests](https://docs.python.org/3/library/doctest.html ) can be run with `python3 -m doctest -v count-inversions.py`
Our GitHub Actions will also run these doctests. https://github.com/MakeContributions/DSA/actions
The answer to the last test should be 0, not 2.
@atin Your review please.
* Avoid unnecessary inversions
2021-04-12 06:03:47 -04:00
Christian Clauss
e151d71572
Use Pythonic item access ( #164 )
2021-04-12 06:02:56 -04:00
Christian Clauss
b95fa5b691
Add Python doctest to selection_sort.py ( #167 )
...
* Add Python doctest to selection_sort.py
* fix isort
* Update selection-sort.py
* all(selection_sort(arr) or arr == sorted(arr) for arr in arrays)
2021-04-12 06:02:35 -04:00
Christian Clauss
8dd686a31c
DoublyLinkedList.__iter__() ( #168 )
2021-04-11 17:49:05 -04:00
Christian Clauss
c245d22869
Add Python doctests to karatsuba.py ( #161 )
...
* Add Python doctests to karatsuba.py
`subtract()` can give the wrong answer when `y` > `x`. @atin Your review please.
* add() and absolute_difference()
* absolute_difference("1", "0")
* Update karatsuba.py
* Update karatsuba.py
2021-04-11 17:43:57 -04:00
Toihir Halim
c3db2ee9f9
add arrays left rotation in java ( #155 )
2021-04-11 13:49:36 -04:00
Christian Clauss
d7860a161e
GitHub Action to lint C and C++ code ( #156 )
...
* GitHub Action to lint C and C++ code
GitHub Action to run cpplint recursively on all pushes and pull requests https://github.com/cpplint/GitHub-Action-for-cpplint
* Update cpplint.yml
* Update cpplint.yml
* Update cpplint.yml
* Fix import order
Found C system header after C++ system header. Should be: doubly.h, c system, c++ system, other. [build/include_order] [4]
* Fix import order
* Update string-tokeniser.cpp
2021-04-11 13:48:29 -04:00
Christian Clauss
0459f08eeb
GitHub Action to lint Python code ( #151 )
...
* GitHub Action to lint Python code
* Fix typo
2021-04-10 21:21:48 -04:00
Ritish Sehgal
c08e033754
Added level order traversal in Binary trees ( #153 )
...
* added max subarray sum
* added pre,in,post traversals
* Update pre-in-post-traversal.cpp
formatted the output
* Update pre-in-post-traversal.cpp
formatted output
Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-04-10 05:11:47 -04:00
Arsenic
f515542235
Typo fix patch ( #154 )
...
* Update README.md
fix typo
./README.md:14: seperated ==> separated
* Update string-tokeniser.cpp
fix typo
./strings/c-or-cpp/string-tokeniser.cpp:27: delimeter ==> delimiter
* Update palindrome.js
fix typo
./strings/js/palindrome.js:4: alpha-numeric ==> alphanumeric
* Update quick-sort.java
fix typo
./sorting/java/quick-sort.java:2: choosen ==> chosen
* Update counting-sort.java
fix typo
./sorting/java/counting-sort.java:4: algortithm ==> algorithm
* Update merge-sort.java
fix typo
./sorting/java/merge-sort.java:12: Funtion ==> Function
* Update bubble-sort.cpp
fix typo
./sorting/c-or-cpp/bubble-sort.cpp:21: swaping ==> swapping
* Update and rename Insert_and_delete_beginning.c to Insert-and-delete-beginning.c
fix typo
./linked-lists/c-or-cpp/Insert_and_delete_beginning.c:18: Intialize ==> Initialize
and rename the file according to contribution guidlines
* Update Insert-and-delete-beginning.c
fix typo
./linked-lists/c-or-cpp/Insert_and_delete_beginning.c:37: beggining ==> beginning
* Update bellman-ford.cpp
fix typo
./graphs/c-or-cpp/bellman-ford.cpp:80: weigth ==> weight
* Update README.md
fix typo
./stacks/README.md:5: Paranthesis ==> Parenthesis
* Rename balanced-paranthesis.cpp to balanced-parenthesis.cpp
fix typo in name of the file
* Update linear-search.cpp
fix typos
./searching/c-or-cpp/linear-search.cpp:22: inputed ==> inputted
./searching/c-or-cpp/linear-search.cpp:24: inputed ==> inputted
2021-04-10 05:10:32 -04:00
Aayush Jain
183a3a660e
Add Kadane's Algorithm to Java ( #149 )
...
* Kadane’s Algorithm
* Update README.md
* Kadane's Algorithm
2021-04-09 15:38:44 -04:00
Tawfik Yasser
007e8a54a6
Update README.md ( #146 )
2021-04-09 12:48:38 -04:00
Ritish Sehgal
a4c29a4b59
Added 3 basic traversals in Binary Trees ( #144 )
...
* added max subarray sum
* added pre,in,post traversals
* Update pre-in-post-traversal.cpp
formatted the output
* Update pre-in-post-traversal.cpp
formatted output
Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-04-09 08:52:11 -04:00
Ming Tsai
6d27728246
docs: update Contribution Guidelines
2021-04-07 14:32:02 -04:00
Ujjwal
5ab719ce5e
Prim's Algorithm in c ( #140 )
...
* Added Prim's Algorithm
* added Time complexity and algorithm name
* added prim's algorithm link
* recorrected the link address
* added .c exitension
* Update time complexity of prim's algo
Co-authored-by: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com>
2021-04-07 11:36:58 -04:00
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