blob: 50a67a193c054f36dcecf810f126efb58e924f03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
*
* 9.37
*
*
*/
int main () {
// Array is fixed size
// Not sure why list does not have capacity.
// From my understanding of manually creating linked lists
// We create each node and connect the previous one to the new one.
// Maybe there is not really a need to allocate for nodes that dont exist?
return 0;
}
|