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

Upload New File

parent 813ed63f
Branches
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