Luke Else luke-else
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
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-28 21:41:31 +00:00
f263a14170 Updated Create Method for Stack + StackNode
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-26 22:40:18 +00:00
ba2f01f836 Redeclared Stack count as private
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-26 22:39:14 +00:00
7a3c15d602 Removed whitespace
luke-else pushed to development at luke-else/DataStructuresCSharp 2022-03-26 22:38:47 +00:00
8444f0fa0a Created Stack class + Creation Methods