Skip to content

Commit ef72e2d

Browse files
committedMay 21, 2018
Update READMEs.
1 parent a41e4a1 commit ef72e2d

File tree

9 files changed

+17
-11
lines changed

9 files changed

+17
-11
lines changed
 

‎src/data-structures/disjoint-set/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ After some operations of *Union*, some sets are grouped together.
1717
## References
1818

1919
- [Wikipedia](https://en.wikipedia.org/wiki/Disjoint-set_data_structure)
20-
- [By Abdul Bari on YouTube](https://www.youtube.com/watch?v=wU6udHRIkcc)
20+
- [By Abdul Bari on YouTube](https://www.youtube.com/watch?v=wU6udHRIkcc&index=14&t=0s&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)

‎src/data-structures/hash-table/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ Hash collision resolved by separate chaining.
2222

2323
## References
2424

25-
[Wikipedia](https://en.wikipedia.org/wiki/Hash_table)
25+
- [Wikipedia](https://en.wikipedia.org/wiki/Hash_table)
26+
- [YouTube](https://www.youtube.com/watch?v=shs0KM3wKv8&index=4&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)

‎src/data-structures/heap/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ called the root node.
1212

1313
## References
1414

15-
[Wikipedia](https://en.wikipedia.org/wiki/Heap_(data_structure))
15+
- [Wikipedia](https://en.wikipedia.org/wiki/Heap_(data_structure))
16+
- [YouTube](https://www.youtube.com/watch?v=t0Cq6tVNRBA&index=5&t=0s&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)

‎src/data-structures/linked-list/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ have better cache locality as compared to linked lists.
2121

2222
## References
2323

24-
[Wikipedia](https://en.wikipedia.org/wiki/Linked_list)
24+
- [Wikipedia](https://en.wikipedia.org/wiki/Linked_list)
25+
- [YouTube](https://www.youtube.com/watch?v=njTh_OwMljA&index=2&t=1s&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)

‎src/data-structures/priority-queue/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ with a linked list or an array, a priority queue can be implemented
1414
with a heap or a variety of other methods such as an unordered
1515
array.
1616

17-
18-
1917
## References
2018

21-
[Wikipedia](https://en.wikipedia.org/wiki/Priority_queue)
19+
- [Wikipedia](https://en.wikipedia.org/wiki/Priority_queue)
20+
- [YouTube](https://www.youtube.com/watch?v=wptevk0bshY&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=6)

‎src/data-structures/queue/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ Representation of a FIFO (first in, first out) queue
2222

2323
## References
2424

25-
[Wikipedia](https://en.wikipedia.org/wiki/Queue_(abstract_data_type))
25+
- [Wikipedia](https://en.wikipedia.org/wiki/Queue_(abstract_data_type))
26+
- [YouTube](https://www.youtube.com/watch?v=wjI1WNcIntg&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=3&)

‎src/data-structures/stack/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ Simple representation of a stack runtime with push and pop operations.
2121

2222
## References
2323

24-
[Wikipedia](https://en.wikipedia.org/wiki/Stack_(abstract_data_type))
24+
- [Wikipedia](https://en.wikipedia.org/wiki/Stack_(abstract_data_type))
25+
- [YouTube](https://www.youtube.com/watch?v=wjI1WNcIntg&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=3&)

‎src/data-structures/tree/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ root node, at the top, has no parent.
2424

2525
## References
2626

27-
[Wikipedia](https://en.wikipedia.org/wiki/Tree_(data_structure))
27+
- [Wikipedia](https://en.wikipedia.org/wiki/Tree_(data_structure))
28+
- [YouTube](https://www.youtube.com/watch?v=oSWTXtMglKE&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=8)

‎src/data-structures/trie/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ prefix tree.
1919

2020
## References
2121

22-
[Wikipedia](https://en.wikipedia.org/wiki/Trie)
22+
- [Wikipedia](https://en.wikipedia.org/wiki/Trie)
23+
- [YouTube](https://www.youtube.com/watch?v=zIjfhVPRZCg&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=7&t=0s)

0 commit comments

Comments
 (0)
Please sign in to comment.