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

Delete linked_list.h

parent effc5a4b
No related branches found
No related tags found
No related merge requests found
#include<iostream>
using namespace std;
class List {
public:
List();
void Insert_Head_Node(int value);
void Insert_Tail_Node(int value);
class Node {
public:
int value;
Node* next;
Node* previous;
};
void printlist(Node* head);
Node* head{nullptr};
Node* tail{nullptr};
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment