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
int count(int *arr, const int size)
Count func counts the number of prime numbers.
Definition: prime_seive.c:42
void print(List *list)
Print list function.
Definition: doubly_linked_list.c:256
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