Address Book v1.3
This is completely coaded in TurboC 3.0 language. Program made using linked list concept in C. Program has command line support for opening files. One can make groups for relatives, frainds etc.
Addressbook using double-linked list v1.0
This example shows the use of a double-linked list by implementing an addressbook for the console. It has features like inserting, searching(linear), sorting(bubble sort), deleting and load/save to a file. I wrote this during my study of Applied Computer Science so it's intended mainly for stud...
Array Filter 1.0
This is an array filter done using VC++ mainly C. Should anyone needs to learn arrays or some sort of array filter using C codes, you guys might want to look at this. (Dont be alarm with the prototypes Extract,Print is prototype used by the main to call their funtions and their variables{char , and ...
B-Trieve Indexing Module For C Programmers
B-PLUS is a versatile, carefully designed module for C programmers who need a fast, efficient program for indexing data files. B-PLUS allows data records to be retrieved based on a key value without regard to their position in the data file.
Binary search tree simulator v1.0
This program simulates a binary search tree and has options to optimize the binary search tree for maximum search efficiency. It has an option to view the tree and also to delete an item from it. This program is released to the public domain for academic purposes and for improving it. C Source i...
C PROGRAMS USING DATASTRUCTURES v1.0
Programs like linklist, stack, simple queue, circular queue, priority circularqueue, linklist as stack, linklist as queue, binary tree & various operations on it, infix to postfix expression, infix to prefix expression
Data Structure for C 0.1
A Flexible Simple Data Structure Library for C. Make sure you look at the documentation for functions available, the test files for examples using those datastructure, Makefiles for how to compile using those structures. If you find any bugs or have comments, give me a kind email. I am very will...
Dictionary in C V1
This is a programs that implements binary tree algorithm to create a dictionary. i.e u can add a word and its meaning. Basic idea is to implement binary tree.
Dynamic stack lib for linux v1.00
This is a lib for using a dynamic stack in your linux programs. it is simple but very usefull. You can push elements to the stack of any type. Check out the header file for more information.
Erwin Data Structure Library v2.0.278
The Erwin library is a very efficient and robust data structure template library for C and C++. No templates are used; a Perl script generates C files. Vectors (dynamic arrays), lists, and hash tables (maps) of arbitrary key and value types are provided. Several tools are included for auto-generatin...
FlexList - C Linked List Functions.
FlexList builds doubly linked lists of any type data. A unique stack-queue-list-array hybrid data structure is utilized thus enabling a flexlist to be accessed as an array, pushed and popped like a stack, or queued and dequeued like a queue.
Linked List 1.0
Linked List Routines -- the node structure definition and functions for : creating the list, inserting a new item (before first node, after the last node, before/after a node specified by a key), deleting an item (the first/last node or one specified by a key), viewing the list items, removing t...
Linked list using C (v1.0)
C program to demonstrate linear linked list. Contains file functions, mouse programing in text mode, colors in text mode, writing directly into VDU memory, bubble sorting techniques, adding, deleting, reversing, displaying the linked list.
Linked list, I-Tree, Que, and Stack Library.
This file contains info for the linked list, que, and stack functions. A Simple test program has been written to give you an idea of how to use and call the functions, It's a spread sheet like program to test various linked list functions.
Maze solving 1.00.0
Definition : this file contain an implementation of complete maze and it's solving its a clear and easy to understand implemetation By Masoud Kalali
MTOOLS version 2.0
MTools is a public domain collection of programs to allow UNIX systems to read, write, and manipulate files on an MSDOS filesystem (typically a diskette). C source
Shop1_3 - Arrays/Linked List/Binary Search Tree
This is a compilation of shop programs I wrote in 3 different ways or better said data structures from scratch. Shop 1 is implemented with an array. When the program starts it allocates memory on heap and gives 100 possibly entries of products (during runtime it is not possible to customize it). Sho...
Sorts 1.00.0
This file contain an array based implementation of 6 mature sort 1-Buble sort 2-Heap sort 3-Quick sort 4-Merge sort 5-Insertion sort 6-selection sort * there is a sample which show you how you can use this. By Masoud Kalali
Stack v1.0
Basic Stack Implementation Functions: - create_stack: create a stack with the specified size, if size <= 0 then stack size is MAX_STACK_SIZE - destroy_stack: destroy the spesified stack - stack_size: get the number of elements in stack - push: put an element to the stack - pop: get an element from ...
Student Databse Manager v.10
I made this for my 1st year BS(CS) Final Programming Project. A Student Database Manager. Good example of using linked lists and filing for such Database applictions.
The B-plus program a B-tree indexing file module for C
Programmers by hunter and associates B-plus is a versatile, carefully designed module for C programmers who need a fast, efficient program for indexing data files. B-plus allows data records to be retrieved based on a key value without regard to their position in the data file. The data records ...
The LL project v1.2
General purpose double linked list. Features: * General purpose doble linked list. * Written in "C". * Configurable & flexible. * Cross compiling capabilities (I used standard libraries only). * fully commented (maybe exagerated commented). * Tested in the following compilers/plattaforms: - Borl...