Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
19 void push(
void *
object);
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
#define max(a, b)
shorthand for maximum value
Definition: kohonen_som_topology.c:39