-
Notifications
You must be signed in to change notification settings - Fork 41
Data Structures
Ashish Chopra edited this page Jan 5, 2016
·
15 revisions
This page provides an extensive index of all the data structure implementation found in Structures repo, to best of our knowledge and effort. In case, if you find something missing or misleading, let us know.
These data structure are abstract in nature, you can use them as collection in any of your creative problem, like we did in ours. To know more how to use them, checkout some of our Creative Problems section.
- A
generic
implementation ofresizable
Stack - #Stack - A stack implementation using Linked List - #StackOfStrings
- A stack with a
fixed capacity
using arrays - #FixedCapacityStackOfStrings - A stack with
resizable capacity
using arrays - #ResizableStackOfStrings - A stack with
find()
anddelete()
operation on middle elements - #StackWithMiddle