Commit Graph

171 Commits

Author SHA1 Message Date
Artem Boiarshinov
cfdd9a428b
Replace html syntax by markdown equivalent (#2500) 2021-10-06 08:41:29 +03:00
Simran Pattnaik
db85993d0e
Add Dijskstra's Algorithm (Fixes #2470) (#2476) 2021-10-05 16:16:28 +03:00
sahil-13399
3602904966
Implement MinMax solution using Stack (#2482)
Co-authored-by: sahil.samantaray <sahil.samantaray@nymble.in>
2021-10-04 21:02:18 +03:00
Nikita Kapoor
f622e7c7f7
Add Readme.md for HashMap data structure #2445 (#2449) 2021-10-03 12:52:53 +03:00
Dhruv Panwar
654aec92b0
Add Kahn's algorithm for topological sorting of a graph (HacktoberFest2021) (#2347) 2021-10-01 08:44:04 +03:00
kuroyukihime
b5f4ab282a
Detect a loop in linked list (#2346)
Co-authored-by: Andrii Siriak <siryaka@gmail.com>
2021-10-01 08:39:38 +03:00
Andrii Siriak
dfe189b21f
Resolve build errors & cleanup structure (#2334) 2021-09-26 12:26:59 +03:00
mohamadAmin
01179a3de6
create Readme.md for stacks (#2279)
* create Readme.md for stacks

* Update README.md

Co-authored-by: Yang Libin <contact@yanglibin.info>
2021-08-23 11:07:33 +08:00
github-actions
44dfbed43a Formatted with Google Java Formatter 2021-07-15 14:03:52 +00:00
Huayang Sun
d3a6ba2437
fix #2251 (#2252) 2021-07-15 22:03:07 +08:00
Nishant Chatterjee
02fab665de
fixed typo vertes to vertex Fixes: #{$2189} (#2190) 2021-04-18 18:02:48 +08:00
github-actions
6dd5b2029e Formatted with Google Java Formatter 2021-04-09 14:19:34 +00:00
Dennis Nilsson
0550711a3e
Update CountSinglyLinkedListRecursion.java (#2170)
Only method comment for public recursive method.
2021-04-09 22:18:51 +08:00
github-actions
5f59cd85d6 Formatted with Google Java Formatter 2021-03-26 11:27:48 +00:00
Chen Ostrovski
67cb97df82
Fix 2D array passed to Arrays.fill() (#2010)
Arrays.fill() accepts single dimensional arrays, so fill one row at a time.

Fixes TheAlgorithms/Java#2009
2021-03-26 19:27:16 +08:00
Sameer Ahmed Khan
912be910c8
Fixed Spelling error. See issue #2055 (#2083)
Corrected 'distance' spelling in line 51.
2021-02-03 19:23:10 +08:00
Sameer Ahmed Khan
d1e75019a7
FIXES: #2056 (#2085)
Fixed typo
2021-02-03 19:21:02 +08:00
Sameer Ahmed Khan
be8432c38e
Fixes: #2057 (#2086)
Fixed typo
2021-02-03 17:02:25 +08:00
Du Yuanchao
95484f8c89
update SinglyLinkedList (#2058) 2020-12-01 09:33:06 +08:00
shellhub
7137ac0164 Format with google formatter 2020-10-27 11:23:46 +08:00
shellhub
6faa2e31f2 infix to postfix 2020-10-27 11:07:01 +08:00
github-actions
0db62bb450 Formatted with Google Java Formatter 2020-10-24 10:31:42 +00:00
github-actions
5d59a2e828 Formatted with Google Java Formatter 2020-10-24 10:23:28 +00:00
shellhub
3b19b12f03 fixed build error 2020-10-24 16:33:40 +08:00
Nishant Ingle
afddfd02d5
Add comment above parameterised constructor 2020-10-01 21:21:56 +05:30
shellhub
e003f9a2de get element at special index 2020-09-22 11:58:41 +08:00
shellhub
cc0e3510e2 search in singly linked list using recursion 2020-09-22 11:23:45 +08:00
shellhub
e98693b140 search element 2020-09-22 11:09:19 +08:00
shellhub
093cc37806 count singly linked list using recursion 2020-09-22 11:06:57 +08:00
shellhub
26cd941143 * Update SinglyLinkedList
* Refactor MergeSortedSinglyLinkedList to single file
* Create Problem09 and Problem10 in Project Euler
2020-09-22 09:47:09 +08:00
shellhub
89ae3d5dec Updated StackArrayList 2020-09-14 20:18:54 +08:00
shellhub
1b09878aaf update Stack 2020-08-27 20:24:00 +08:00
Stepfen Shawn
b7a05621e5
Merge pull request #1422 from rbshealy/master
Add dynamic hash table functionality
2020-08-26 09:30:49 +08:00
Lakhan Nad
75480d44bf Tests added for BST DataStructures 2020-08-18 21:03:31 +05:30
Ray
ed1273a35d Add dynamic hash table functionality 2020-08-17 19:22:32 -04:00
Lakhan Nad
efdd1ddd42 DS: Binary Search Tree added Closes #1420 2020-08-17 15:48:52 +05:30
Stepfen Shawn
ee11fcafd9
Merge pull request #1410 from rnitish/master
Added insert element by index and clearList to DoublyLinkedList.java
2020-08-17 08:21:54 +08:00
Ray S
c9fb43b44f
Update and rename ListAddnFun to ListAddnFun.java
Updates include:
add no-args constructor
add whitespace
use public class LinkedList
use private fields
2020-08-15 15:20:32 -04:00
rnitish
73888a68ea Added insert by index
Added insert by index
2020-08-12 00:13:23 +05:30
Ray S
460a8d0a74
Add white-space 2020-08-06 22:50:49 -04:00
Ray
851df781dd Add javadoc comments and Cleanup DynamicArray.java 2020-08-06 22:32:49 -04:00
Ray S
bc7e3fd8ba
use public class HashMap 2020-08-05 17:22:37 -04:00
Ray
697d25b47e Add nested linked list and node class to HashMap.java 2020-08-05 17:11:10 -04:00
Stepfen Shawn
0ba52b956d
Rename GraphAlgos to GraphAlgos.java 2020-08-02 20:13:38 -05:00
Ray S
f729092e8a
Use public class HashMapLinearProbing 2020-08-02 09:17:16 -04:00
Ray
84f5038996 Add HashMapLinearProbing.java and MainLinearProbing.java 2020-08-01 18:00:27 -04:00
Ray
0ce51e88dd Added deleteNode method 2020-07-23 19:59:52 -04:00
Anup Kumar Panwar
a63cb705cc
Merge pull request #1350 from MarcosVillacanas/marcosvillacanas-A-Star
A-Star Algorithm Included
2020-07-16 17:23:29 +05:30
MarcosVillacanas
174b43caa5 link-Removed 2020-07-06 21:28:29 +02:00
MarcosVillacanas
bf0fdd735a Context added 2020-07-06 13:00:35 +02:00