Skip to content

Commit 19f4cba

Browse files
Chris WuChris Wu
Chris Wu
authored and
Chris Wu
committed
no message
1 parent 73c780e commit 19f4cba

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -205,17 +205,17 @@ If you are new or know nothing about data structures and algorithms, I recommend
205205
7. Code, Process, Thread
206206
8. [Stack memory vs Heap memory](https://www.gribblelab.org/CBootCamp/7_Memory_Stack_vs_Heap.html)
207207
* Stack memory
208-
1. Stores temporary variable created by functions.
209-
2. Memory is managed by CPU for you. No need to allocate and free it by hand.
210-
3. L.I.F.O.
211-
4. Stacks has limit (That is why we seldom use recursion real life)
212-
5. Stacks variable are local variable in nature.
208+
* Stores temporary variable created by functions.
209+
* Memory is managed by CPU for you. No need to allocate and free it by hand.
210+
* L.I.F.O.
211+
* Stacks has limit (That is why we seldom use recursion real life)
212+
* Stacks variable are local variable in nature.
213213

214214
* Heap memory
215-
1. Larger.
216-
2. Slightly slower. Because we has to use "pointers" to access.
217-
3. We are responsible to free() the memory.
218-
4. Heap variable is global variable in nature.
215+
* Larger.
216+
* Slightly slower. Because we has to use "pointers" to access.
217+
* We are responsible to free() the memory.
218+
* Heap variable is global variable in nature.
219219
9. GET vs POST
220220
10. [CORS](https://www.youtube.com/watch?v=eWEgUcHPle0)
221221
...

0 commit comments

Comments
 (0)