Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
7 int QueueIsEmpty(
queue);
8 void QueueEnqueue(
queue,
int);
9 int QueueDequeue(
queue);
List * create(double value)
Create list function, a new list containing one node will be created.
Definition: doubly_linked_list.c:92
Node, the basic data structure in the tree.
Definition: binary_search_tree.c:15
int data
data of the node
Definition: binary_search_tree.c:18
int main()
Driver code.
Definition: client.c:70
int count(int *arr, const int size)
Count func counts the number of prime numbers.
Definition: prime_seive.c:42
int find(node *root, int data)
Search procedure, which looks for the input key in the tree and returns 1 if it's present or 0 if it'...
Definition: binary_search_tree.c:152
Definition: bellman_ford.c:8
Definition: bellman_ford.c:14