Luke Else luke-else
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-04-04 20:36:07 +00:00
e1a85f7b53 Created Tree + Tree Node
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-04-04 20:16:07 +00:00
27c51969f8 Updated Generic Nodes to be Uninstantiable
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-04-02 20:22:23 +00:00
78df73e66d Separeted Generic Nodes (Directed and Undirected)
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-04-01 21:02:45 +00:00
e5fa390608 Updated Repo Layout
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 21:13:16 +00:00
88d84ab448 Ran Code Cleanup
luke-else closed issue luke-else/DataStructuresCSharp#4 2022-03-31 21:07:28 +00:00
Queue
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 21:06:29 +00:00
fc832edb9d Added + Completed Queue Datastructure
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 21:05:17 +00:00
703826c8a6 Simplified Push Method
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 20:55:20 +00:00
c54401fdbb Fixed Push and Pop methods on Stack
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 20:36:47 +00:00
1738ef0e5a Created QueueNode
luke-else closed issue luke-else/DataStructuresCSharp#3 2022-03-31 20:33:35 +00:00
Stack
luke-else closed issue luke-else/DataStructuresCSharp#13 2022-03-31 20:33:35 +00:00
Generic Node Creation
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 20:32:46 +00:00
bff4abff01 Stack Completed
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 20:29:16 +00:00
40f73375b9 Added comments to StackNode
4fb6d4e15a Updated StackNode to use new Node Type
c69c6ee0d3 Updated DoublyLinkedListNode to use new Node Type
3d5f1cfbc1 Updated LinkedListNode to use new Node Type
Compare 4 commits »
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-31 20:23:53 +00:00
ea5d5a73ed Added GenericNode outline
luke-else commented on issue luke-else/DataStructuresCSharp#13 2022-03-30 14:33:55 +00:00
Generic Node Creation

e.g. LinkedListNode:Node<T, LinkedListNode>

luke-else commented on issue luke-else/DataStructuresCSharp#13 2022-03-29 19:39:49 +00:00
Generic Node Creation

need to find a way to set Next node to be the same type as the current node if we use a single node to inherit from.

Node<T, t> ????

luke-else opened issue luke-else/DataStructuresCSharp#13 2022-03-29 15:26:41 +00:00
Generic Node Creation
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-28 22:16:38 +00:00
de0f4195ed Updated Protection Level of all current datastructures - Needs Review
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-28 22:08:24 +00:00
fdd1461e3a Added Push, Pop and Peek methods to Stack