Skip to content

Commit bbfdf0a

Browse files
committed
fix readme
1 parent 91ee815 commit bbfdf0a

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ Remember that each data has its own trade-offs. And you need to pay attention mo
2222
`B` - Beginner, `A` - Advanced
2323

2424
* `B` [Array](data-structures/Array)
25-
* `B` [Array](data-structures/Array)
26-
* `B` [Vector](data-structures/Array)
25+
* `B` [Static Array](data-structures/Array/include/Array.h)
26+
* `B` [Dynamic Array](data-structures/Array/include/Vector.h)
2727
* `B` [Linked List](data-structures/LinkedList)
28-
* `B` [Singly Linked List](data-structures/LinkedList)
29-
* `B` [Doubly Linked List](data-structures/DoublyLinkedList)
28+
* `B` [Singly Linked List](data-structures/LinkedList/include/SinglyLinkedList.h)
29+
* `B` [Doubly Linked List](data-structures/LinkedList/include/DoublyLinkedList.h)
3030
* `B` [Queue](data-structures/Queue)
3131
* `B` [Stack](data-structures/Stack)
3232

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#ifndef VECTOR_H
2+
#define VECTOR_H
3+
4+
5+
#endif // VECTOR_H

0 commit comments

Comments
 (0)