From 0dfb647f8f3dc9b90b1055fb9309697b7bb2d551 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 4 Nov 2022 12:03:03 +0000 Subject: [PATCH] Updated repo to be C# only --- C#/C#.csproj => C#.csproj | 0 {C#/Datastructures => Datastructures}/BinaryTree/Tree.cs | 0 {C#/Datastructures => Datastructures}/BinaryTree/TreeNode.cs | 0 .../DoublyLinkedList/DoublyLinkedList.cs | 0 .../DoublyLinkedList/DoublyLinkedListNode.cs | 0 {C#/Datastructures => Datastructures}/Generic/DirectedNode.cs | 0 .../Generic/UndirectedNode.cs | 0 {C#/Datastructures => Datastructures}/Heap/Heap.cs | 0 {C#/Datastructures => Datastructures}/Heap/HeapNode.cs | 0 .../LinkedList/LinkedList.cs | 0 .../LinkedList/LinkedListNode.cs | 0 {C#/Datastructures => Datastructures}/Queue/Queue.cs | 0 {C#/Datastructures => Datastructures}/Queue/QueueNode.cs | 0 {C#/Datastructures => Datastructures}/Stack/Stack.cs | 0 {C#/Datastructures => Datastructures}/Stack/StackNode.cs | 0 C#/Program.cs => Program.cs | 0 README.md | 4 ++-- C#/c#.sln => c#.sln | 0 18 files changed, 2 insertions(+), 2 deletions(-) rename C#/C#.csproj => C#.csproj (100%) rename {C#/Datastructures => Datastructures}/BinaryTree/Tree.cs (100%) rename {C#/Datastructures => Datastructures}/BinaryTree/TreeNode.cs (100%) rename {C#/Datastructures => Datastructures}/DoublyLinkedList/DoublyLinkedList.cs (100%) rename {C#/Datastructures => Datastructures}/DoublyLinkedList/DoublyLinkedListNode.cs (100%) rename {C#/Datastructures => Datastructures}/Generic/DirectedNode.cs (100%) rename {C#/Datastructures => Datastructures}/Generic/UndirectedNode.cs (100%) rename {C#/Datastructures => Datastructures}/Heap/Heap.cs (100%) rename {C#/Datastructures => Datastructures}/Heap/HeapNode.cs (100%) rename {C#/Datastructures => Datastructures}/LinkedList/LinkedList.cs (100%) rename {C#/Datastructures => Datastructures}/LinkedList/LinkedListNode.cs (100%) rename {C#/Datastructures => Datastructures}/Queue/Queue.cs (100%) rename {C#/Datastructures => Datastructures}/Queue/QueueNode.cs (100%) rename {C#/Datastructures => Datastructures}/Stack/Stack.cs (100%) rename {C#/Datastructures => Datastructures}/Stack/StackNode.cs (100%) rename C#/Program.cs => Program.cs (100%) rename C#/c#.sln => c#.sln (100%) diff --git a/C#/C#.csproj b/C#.csproj similarity index 100% rename from C#/C#.csproj rename to C#.csproj diff --git a/C#/Datastructures/BinaryTree/Tree.cs b/Datastructures/BinaryTree/Tree.cs similarity index 100% rename from C#/Datastructures/BinaryTree/Tree.cs rename to Datastructures/BinaryTree/Tree.cs diff --git a/C#/Datastructures/BinaryTree/TreeNode.cs b/Datastructures/BinaryTree/TreeNode.cs similarity index 100% rename from C#/Datastructures/BinaryTree/TreeNode.cs rename to Datastructures/BinaryTree/TreeNode.cs diff --git a/C#/Datastructures/DoublyLinkedList/DoublyLinkedList.cs b/Datastructures/DoublyLinkedList/DoublyLinkedList.cs similarity index 100% rename from C#/Datastructures/DoublyLinkedList/DoublyLinkedList.cs rename to Datastructures/DoublyLinkedList/DoublyLinkedList.cs diff --git a/C#/Datastructures/DoublyLinkedList/DoublyLinkedListNode.cs b/Datastructures/DoublyLinkedList/DoublyLinkedListNode.cs similarity index 100% rename from C#/Datastructures/DoublyLinkedList/DoublyLinkedListNode.cs rename to Datastructures/DoublyLinkedList/DoublyLinkedListNode.cs diff --git a/C#/Datastructures/Generic/DirectedNode.cs b/Datastructures/Generic/DirectedNode.cs similarity index 100% rename from C#/Datastructures/Generic/DirectedNode.cs rename to Datastructures/Generic/DirectedNode.cs diff --git a/C#/Datastructures/Generic/UndirectedNode.cs b/Datastructures/Generic/UndirectedNode.cs similarity index 100% rename from C#/Datastructures/Generic/UndirectedNode.cs rename to Datastructures/Generic/UndirectedNode.cs diff --git a/C#/Datastructures/Heap/Heap.cs b/Datastructures/Heap/Heap.cs similarity index 100% rename from C#/Datastructures/Heap/Heap.cs rename to Datastructures/Heap/Heap.cs diff --git a/C#/Datastructures/Heap/HeapNode.cs b/Datastructures/Heap/HeapNode.cs similarity index 100% rename from C#/Datastructures/Heap/HeapNode.cs rename to Datastructures/Heap/HeapNode.cs diff --git a/C#/Datastructures/LinkedList/LinkedList.cs b/Datastructures/LinkedList/LinkedList.cs similarity index 100% rename from C#/Datastructures/LinkedList/LinkedList.cs rename to Datastructures/LinkedList/LinkedList.cs diff --git a/C#/Datastructures/LinkedList/LinkedListNode.cs b/Datastructures/LinkedList/LinkedListNode.cs similarity index 100% rename from C#/Datastructures/LinkedList/LinkedListNode.cs rename to Datastructures/LinkedList/LinkedListNode.cs diff --git a/C#/Datastructures/Queue/Queue.cs b/Datastructures/Queue/Queue.cs similarity index 100% rename from C#/Datastructures/Queue/Queue.cs rename to Datastructures/Queue/Queue.cs diff --git a/C#/Datastructures/Queue/QueueNode.cs b/Datastructures/Queue/QueueNode.cs similarity index 100% rename from C#/Datastructures/Queue/QueueNode.cs rename to Datastructures/Queue/QueueNode.cs diff --git a/C#/Datastructures/Stack/Stack.cs b/Datastructures/Stack/Stack.cs similarity index 100% rename from C#/Datastructures/Stack/Stack.cs rename to Datastructures/Stack/Stack.cs diff --git a/C#/Datastructures/Stack/StackNode.cs b/Datastructures/Stack/StackNode.cs similarity index 100% rename from C#/Datastructures/Stack/StackNode.cs rename to Datastructures/Stack/StackNode.cs diff --git a/C#/Program.cs b/Program.cs similarity index 100% rename from C#/Program.cs rename to Program.cs diff --git a/README.md b/README.md index b9349d3..39844d2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # DataStructures -List of DataStructures implemented in C#, Go And C++ +List of DataStructures implemented in C# ## What is Included @@ -11,7 +11,7 @@ Doubly Linked List Stack Queue Binary Tree -Heap +Heap ~ ### Algorithms diff --git a/C#/c#.sln b/c#.sln similarity index 100% rename from C#/c#.sln rename to c#.sln