Kyler Smith, 2017 Stack data structure implementation.
More...
|
struct node * | left |
|
struct node * | right |
|
int | data |
|
struct node * | leftNode |
|
struct node * | rightNode |
|
int | val |
|
struct node * | par |
|
int | color |
|
int | vertex |
|
struct node * | next |
|
int | info |
|
struct node * | link |
|
struct node * | pre |
|
char | data |
|
Kyler Smith, 2017 Stack data structure implementation.
The documentation for this struct was generated from the following files:
- data_structures/binary_trees/binary_search_tree.c
- data_structures/binary_trees/create_node.c
- data_structures/binary_trees/redblacktree.c
- data_structures/graphs/bfs.c
- data_structures/graphs/dfs.c
- data_structures/graphs/queue.c
- data_structures/graphs/strongly_connected_components.c
- data_structures/graphs/topologicalsort.c
- data_structures/linked_list/ascendingpriorityqueue.c
- data_structures/linked_list/CircularLinkedList.C
- data_structures/linked_list/merge_linked_lists.c
- data_structures/linked_list/queue_linked_list.c
- data_structures/linked_list/singly_link_list_deletion.c
- data_structures/linked_list/stack_using_linked_lists.c
- data_structures/stack/parenthesis.c
- data_structures/stack.c