Created Linked List node + Linked List - Incomplete
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#include "linkedlist.h"
|
||||
#include "linkedlistnode.h"
|
||||
|
||||
namespace Datastructures {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
namespace Datastructures {
|
||||
class LinkedList
|
||||
{
|
||||
public:
|
||||
LinkedList();
|
||||
~LinkedList();
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
LinkedList::LinkedList()
|
||||
{
|
||||
}
|
||||
|
||||
LinkedList::~LinkedList()
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
#include "linkedlistnode.h"
|
||||
|
||||
namespace Datastructures {
|
||||
namespace Nodes {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include "../Generic/undirectednode.h"
|
||||
|
||||
namespace Datastructures {
|
||||
namespace Nodes {
|
||||
template <typename T>
|
||||
class LinkedListNode : public Generic::UndirectedNode<T, LinkedListNode>
|
||||
{
|
||||
public:
|
||||
LinkedListNode();
|
||||
~LinkedListNode();
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user