Skip to content

Commit 409e2e9

Browse files
author
computer0101
committed
update markdown in notes.md files to remove improper display of references
1 parent c47aef3 commit 409e2e9

File tree

6 files changed

+33
-21
lines changed

6 files changed

+33
-21
lines changed

graphs/notes.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Traversals:
6262

6363
4. **Topological Sorting**: Dependencies of packages can be represented using graphs and those packages are compiled first which have no dependenies or have dependencies but these have already been compiled.
6464

65-
<br>
66-
*References*:
67-
* [https://en.wikipedia.org/wiki/Graph_(abstract_data_type)](https://en.wikipedia.org/wiki/Graph_(abstract_data_type))
65+
<br/>
66+
67+
_References_:
68+
69+
- [https://en.wikipedia.org/wiki/Graph\_(abstract_data_type)](https://en.wikipedia.org/wiki/Graph_(abstract_data_type))

linked_lists/circular_doubly_ll/notes.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ It is the combine version of circular and doubly linked list where each node poi
1111
5. Delete − Deletes an element using the given key.
1212
6. Reverse - Reverses the linked list.
1313

14-
<br>
15-
*References*:
16-
[https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)
14+
<br/>
15+
16+
_References_:
17+
18+
- [https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)

linked_lists/circular_ll/notes.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ In the last node of a list, the link field often contains a null reference, a sp
1111
5. Delete − Deletes an element using the given key.
1212
6. Reverse - Reverses the linked list.
1313

14-
<br>
15-
*References*:
16-
[https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)
14+
<br/>
15+
16+
_References_:
17+
18+
- [https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)

linked_lists/doubly_ll/notes.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Many modern operating systems use doubly linked lists to maintain references to
1313
5. Delete − Deletes an element using the given key.
1414
6. Reverse - Reverses the linked list.
1515

16-
<br>
17-
*References*:
18-
* [https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)
16+
<br/>
17+
18+
_References_:
19+
20+
- [https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)

linked_lists/notes.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ A drawback of linked lists is that access time is linear (and difficult to pipel
3232
- Θ(n) when last element is unknown
3333
- Insert/Delete in middle: search time + Θ(1)
3434

35-
<br>
36-
*References*:
37-
* [https://en.wikipedia.org/wiki/Linked_list](https://en.wikipedia.org/wiki/Linked_list)
38-
* [https://www.quora.com/What-is-an-application-of-linear-linked-list-data-structures](https://www.quora.com/What-is-an-application-of-linear-linked-list-data-structures)
39-
* [https://www.geeksforgeeks.org/applications-of-linked-list-data-structure/](https://www.geeksforgeeks.org/applications-of-linked-list-data-structure/)
35+
<br/>
36+
37+
_References_:
38+
39+
- [https://en.wikipedia.org/wiki/Linked_list](https://en.wikipedia.org/wiki/Linked_list)
40+
- [https://www.quora.com/What-is-an-application-of-linear-linked-list-data-structures](https://www.quora.com/What-is-an-application-of-linear-linked-list-data-structures)
41+
- [https://www.geeksforgeeks.org/applications-of-linked-list-data-structure/](https://www.geeksforgeeks.org/applications-of-linked-list-data-structure/)

linked_lists/single_ll/notes.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ Singly linked lists contain nodes which have a data field as well as 'next' fiel
1111
5. Delete − Deletes an element using the given key.
1212
6. Reverse - Reverses the linked list.
1313

14-
<br>
15-
*References*:
16-
[https://www.tutorialspoint.com/data_structures_algorithms/linked_list_algorithms.htm](https://www.tutorialspoint.com/data_structures_algorithms/linked_list_algorithms.htm)
17-
[https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)
14+
<br/>
15+
16+
_References_:
17+
18+
- [https://www.tutorialspoint.com/data_structures_algorithms/linked_list_algorithms.htm](https://www.tutorialspoint.com/data_structures_algorithms/linked_list_algorithms.htm)
19+
- [https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list](https://en.wikipedia.org/wiki/Linked_list#Singly_linked_list)

0 commit comments

Comments
 (0)