|
COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
|
#include <iostream>
Go to the source code of this file.
Classes | |
| struct | Node |
Functions | |
| int | main () |
| void | print_list (Node *head) |
| void | tail_insert (Node *&head, Node *&tail, int num) |
| int main | ( | void | ) |
Definition at line 42 of file build_list_forward.cpp.
References print_list(), and tail_insert().

| void print_list | ( | Node * | head | ) |
Definition at line 11 of file build_list_forward.cpp.
References Node::info, and Node::next.
Referenced by main().

Definition at line 23 of file build_list_forward.cpp.
References Node::info, and Node::next.
Referenced by main().
