|
Algorithms_in_C++
1.0.0
Set of algorithms implemented in C++.
|
Public Member Functions | |
| void | display () |
| void | insert_front (int new_data) |
| void | insert_tail (int new_data) |
| int | get_size () |
| bool | find_item (int item_to_find) |
| int | operator* () |
| void | operator++ () |
Protected Attributes | |
| node * | head |
| int | total |