Computing

Maze game using stack in c

The following C project contains the C source code and C examples used for maze game using stack. Maze game using stack.This program gets a text file "input.txt" and produces "output.txt".gets bounds of maze, starting point coodinates and the maze from the input file.Then solves it..

Max heap in c

The following C project contains the C source code and C examples used for max heap. Max heap is a binary tree like data structure, that always contains the biggest element at its top. Max heap is greatly used in searching and sorting algos and in priority queues, as it reduces the sorting time to o(nlogn).

List queue in c

The following C project contains the C source code and C examples used for list & queue. List & Stack in C++ using either pointers (linked list) or an array (of fixed size) made for and exercise in Software Engineering

Linked list with c - v2 in c

The following C project contains the C source code and C examples used for linked list with c - v2. This is the 2nd Version of my Linked List. This program truly demonstrates the operaton of a LL in a most Efficient avenue. 3 new functions have been included in this version. Plz leave any comment u want.

Linked list test driver in c

The following C project contains the C source code and C examples used for linked list test driver. Tests the functions associated with a linked list class developed by the high school-level A.P. Computer Science board. Linked lists are generally very fast for searching and adding nodes, but the disorganized arrays are not memory efficient.

Pages

Subscribe to RSS - Computing