There are 56 files, weighing 4.3 MiB with 793,140 hits in total.
Displaying 41 to 56 of 56 files.
Sort Huge amount of data
» 20.0 KiB - 5,442 hits - October 7, 2008
The bigsort routine implements a way to sort huge amounts of 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.
Stack Implementation in C
» 79.2 KiB - 17,072 hits - October 7, 2008
This C program actually simulates the stack operations graphically and in text mode. User can Add, Delete, Search, and Replace the items from stack.
Text Editor
» 92.8 KiB - 16,864 hits - October 7, 2008
This program is written in pure C programming language. The interface of the C program is just like Turbo C/C++ compiler like interface
Arrays as Data Structure
» 2.2 KiB - 11,262 hits - March 28, 2009
This is C and C++ source code to demonstrate the use of Arrays as data structure. Program contains four different C/C++ files which includes single and multidimensional arrays.
Binary Trees
» 49.7 KiB - 16,737 hits - July 15, 2009
Stanford CS Education Library: introduces the basic concepts of binary trees, and works through a series of practice problems with solution code in C/C++ and Java. Binary trees have an elegant recursive pointer structure, so they are a good way to learn recursive pointer algorithms.
DirectDraw Sample Program
» 18.1 KiB - 12,209 hits - October 10, 2008
This is a very simple DirectDraw sample.
Advanced topics I - C++ Lecture Notes
» 111.7 KiB - 14,409 hits - May 30, 2015
Templates, Standard Template Library and Operator Overloading.
Advanced topics II - C++ Lecture Notes
» 218.3 KiB - 20,602 hits - May 30, 2015
Arrays and Strings - C++ Lecture Notes
» 105.5 KiB - 14,460 hits - May 30, 2015
Basic use of arrays and strings.
Classes - C++ Lecture Notes
» 503.4 KiB - 15,068 hits - May 30, 2015
Class declaration, instances, accessing fields, passing as parameters and constructors.
Flow of control - C++ Lecture Notes
» 127.6 KiB - 17,914 hits - May 30, 2015
Description of Control structures and Nested Control Structures.
Functions - C++ Lecture Notes
» 459.7 KiB - 16,935 hits - May 30, 2015
Basic use of functions, declaration, arguments, return values and function overloading.
Introduction - C++ Lecture Notes
» 111.9 KiB - 36,918 hits - May 30, 2015
An introduction to C++ and hello world program, basic language features and variables.
Memory Management - C++ Lecture Notes
» 513.5 KiB - 16,155 hits - May 30, 2015
Memory management, Allocation and Deallocation, new and delete operators.
Object-Oriented Programming - C++ Lecture Notes
» 147.0 KiB - 17,052 hits - May 30, 2015
The Basic Ideas of OOP, Encapsulation, Inheritance, Polymorphism and Multiple Inheritance.
Pointers - C++ Lecture Notes
» 136.9 KiB - 13,508 hits - May 30, 2015
Pointers and their Behavior, declaration and syntax.