Stack Implementation in C
This is a C program that simulates stack operations graphically and in text mode. The program uses...
Read MorePosted by M. Saqib | Sep 19, 2008 | Utility Programs and Applications |
This is a C program that simulates stack operations graphically and in text mode. The program uses...
Read MorePosted by M. Saqib | Sep 19, 2008 | Utility Programs and Applications |
This is implementation of Bayer-Trees, which are normally used for indices of data bases. These routines provide all stuff that is needed to create and destroy; insert, update and delete; load and destroy; search and traverse; check a tree. Sort huge amounts of data by doing a multi-phase sorting on temporary files.
Read MorePosted by M. Saqib | Sep 10, 2008 | Databases Books |
This introduction to the fundamentals of data structures explores abstract concepts, considers how those concepts are useful in problem solving, explains how the abstractions can be made concrete by using a programming language,...
Read MorePosted by M. Saqib | Sep 9, 2008 | Utility Programs and Applications |
Ubiqx is a collection of ANSI C compatible modules for implementing linked lists, binary trees, caching and spare arrays. The goal of the ubiqx project is to develop a set of clean, small, re-usable code modules which implement fundamental constructs and mechanisms, and to make them available under the terms of the GNU Library General Public License (LGPL).
Read MorePosted by M. Saqib | Sep 9, 2008 | Utility Programs and Applications |
The big sort routine implements a way to sort huge amounts of data using C programming language. It sorts the data that do not fit into main memory by using a multi-phase sorting on files. It is a implementation from the book “Algorithms and data structures” by Niklaus Wirth. Additionally, this routine recognizes small amounts of data that do fit into memory and resorts to a in-place quicksort.
Read MorePosted by M. Saqib | Sep 9, 2008 | Java: Java Programming Concepts |
Posted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |
Posted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This is a C Program to perform list traversal operation using linked list. This C program to show the basic functions of linked list such as add, delete, append and delete.
Read More