Skip to content

Commit 5571d7e

Browse files
committed
add allowed functions
1 parent 88c5114 commit 5571d7e

File tree

10 files changed

+10
-0
lines changed

10 files changed

+10
-0
lines changed

deque/deque_linked_list/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- linked list를 사용하여 deque을 구현 합니다.
78
- 아래와 같은 deque.h를 사용 합니다.
89
```

linked_list/circular_linked_list/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- 아래와 같은 list.h를 사용 합니다.
78
```
89
typedef struct s_node

linked_list/doubly_linked_list/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- 아래와 같은 list.h를 사용 합니다.
78
```
89
typedef struct s_node

linked_list/singly_linked_list/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- 아래와 같은 list.h를 사용 합니다.
78
```
89
typedef struct s_node

queue/queue_array/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- array를 사용하여 queue을 구현 합니다.
78
- 아래와 같은 queue.h를 사용 합니다.
89
```

queue/queue_linked_list/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- linked list를 사용하여 queue를 구현 합니다.
78
- 아래와 같은 queue.h를 사용 합니다.
89
```

stack/stack_array/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- array를 사용하여 stack을 구현 합니다.
78
- 아래와 같은 stack.h를 사용 합니다.
89
```

stack/stack_linked_list/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- linked list를 사용하여 stack을 구현 합니다.
78
- 아래와 같은 stack.h를 사용 합니다.
89
```

tree/binary_search_tree/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- binary search tree을 구현 합니다.
78
- 아래와 같은 tree.h를 사용 합니다.
89
```

tree/heap/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[뒤로 가기](..)
44

55
## exercise 00
6+
- allowed functions : malloc, free
67
- heap을 구현 합니다.
78
- 아래와 같은 heap.h를 사용 합니다.
89
```

0 commit comments

Comments
 (0)