Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
19 bool adjacent(
Graph, Vertex, Vertex);
20 void showGraph(
Graph);
21 void freeGraph(
Graph);
Node, the basic data structure in the tree.
Definition: binary_search_tree.c:15
node * newNode(int data)
The node constructor, which receives the key value input and returns a node pointer.
Definition: binary_search_tree.c:28
int main()
Driver code.
Definition: client.c:70
void display(double **A, int N)
Function to display square matrix.
Definition: lu_decompose.c:66
Definition: dynamic_array.h:7
Definition: bellman_ford.c:8
Definition: bellman_ford.c:14
void print(CantorSet *head)
Print sets in the current range to stdout
Definition: cantor_set.c:55