Skip to content
Snippets Groups Projects
Commit 27a4ccde authored by Alrik Appelfeldt's avatar Alrik Appelfeldt
Browse files

Delete list.h

parent d92a86d6
No related branches found
No related tags found
No related merge requests found
class List
{
public:
List();
void insert(int val);
void delete(int val);
int get(int index) const;
int size() const;
private:
class Element
{
int value;
Element* next;
Element* prev;
}
Element* first;
Element* last;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment