![]() |
TheAlgorithms/C++ 1.0.0
All the 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 |
| void cll::display | ( | ) |
Definition at line 17 of file cll.cpp.
| bool cll::find_item | ( | int | item_to_find | ) |
| void cll::insert_front | ( | int | new_data | ) |
Definition at line 33 of file cll.cpp.
| void cll::insert_tail | ( | int | new_data | ) |
Definition at line 54 of file cll.cpp.
| void cll::operator++ | ( | ) |