Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bbfdf0a

Browse filesBrowse files
committed
fix readme
1 parent 91ee815 commit bbfdf0a
Copy full SHA for bbfdf0a

File tree

Expand file treeCollapse file tree

2 files changed

+9
-4
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+9
-4
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+4-4Lines 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

+5Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.