Updated Repo Layout
This commit is contained in:
parent
88d84ab448
commit
e5fa390608
@ -1,6 +1,4 @@
|
||||
using C_.Datastructures.Nodes;
|
||||
|
||||
namespace C_.Datastructures
|
||||
namespace C_.Datastructures.DoublyLinkedList
|
||||
{
|
||||
public class DoublyLinkedList<T>
|
||||
{
|
@ -1,4 +1,6 @@
|
||||
namespace C_.Datastructures.Nodes
|
||||
using C_.Datastructures.Generic;
|
||||
|
||||
namespace C_.Datastructures.DoublyLinkedList
|
||||
{
|
||||
internal class DoublyLinkedListNode<T> : Node<T, DoublyLinkedListNode<T>>
|
||||
{//Inherits from Node
|
@ -1,4 +1,4 @@
|
||||
namespace C_.Datastructures.Nodes
|
||||
namespace C_.Datastructures.Generic
|
||||
{
|
||||
internal class Node<T, NodeType>
|
||||
{//Generic Node type that every other type inherits from
|
@ -1,6 +1,4 @@
|
||||
using C_.Datastructures.Nodes;
|
||||
|
||||
namespace C_.Datastructures
|
||||
namespace C_.Datastructures.LinkedList
|
||||
{
|
||||
public class LinkedList<T>
|
||||
{
|
@ -1,4 +1,6 @@
|
||||
namespace C_.Datastructures.Nodes
|
||||
using C_.Datastructures.Generic;
|
||||
|
||||
namespace C_.Datastructures.LinkedList
|
||||
{
|
||||
internal class LinkedListNode<T> : Node<T, LinkedListNode<T>>
|
||||
{//Inherits from Node
|
@ -1,6 +1,4 @@
|
||||
using C_.Datastructures.Nodes;
|
||||
|
||||
namespace C_.Datastructures
|
||||
namespace C_.Datastructures.Queue
|
||||
{
|
||||
internal class Queue<T>
|
||||
{
|
@ -1,4 +1,6 @@
|
||||
namespace C_.Datastructures.Nodes
|
||||
using C_.Datastructures.Generic;
|
||||
|
||||
namespace C_.Datastructures.Queue
|
||||
{
|
||||
internal class QueueNode<T> : Node<T, QueueNode<T>>
|
||||
{
|
@ -1,6 +1,4 @@
|
||||
using C_.Datastructures.Nodes;
|
||||
|
||||
namespace C_.Datastructures
|
||||
namespace C_.Datastructures.Stack
|
||||
{
|
||||
public class Stack<T>
|
||||
{
|
@ -1,4 +1,6 @@
|
||||
namespace C_.Datastructures.Nodes
|
||||
using C_.Datastructures.Generic;
|
||||
|
||||
namespace C_.Datastructures.Stack
|
||||
{
|
||||
internal class StackNode<T> : Node<T, StackNode<T>>
|
||||
{//Inherits from Node
|
Loading…
Reference in New Issue
Block a user