| | |
Description | Compatibility | Level/ Author | Views/ Date Submitted | User Rating |
| |
| |
 |
a Binary Search Example | C++ (general), UNIX C++ | Beginner / Ian Davis | 22958 since 4/22/2002 11:14:33 PM |
By 9 Users 2 Excellent Ratings
|
| |
The program accepts the name of an input file from the command line. Then it reads strings from the input file into a dynamically allocated array of pointers to char. Prompts the user for a string to search for. After that it searches the array using bina ...(description truncated) |
| |
| |
| |
 |
A Bottom-Up Parser Example ! | C++ (general), Microsoft Visual C++ | Advanced / Paul Sader | 12058 since 2/9/2003 5:02:49 PM |
By 3 Users 2 Excellent Ratings
|
| |
It is an example of a bottom-up parser, using an algorithm I came up with. My bottom-up parser was completely hand-written, without any code generation. It's algoritm is centered around a finite-state machine code as a tree structure with several nodes an ...(description truncated) (ScreenShot) |
| |
| |
| |
 |
A Data Encryptor | C++ (general), Microsoft Visual C++ | Beginner / KYG | 19085 since 12/14/2001 10:34:06 AM |
By 6 Users 4 Excellent Ratings
|
| |
A simple encrytor. Password legnth is up to 254, and is not limited to aplphabet, numbers, but also all the characters in the ASCII. Use ALT + 2 or 3 digit number on numpad to key in other characters in ASCII. |
| |
Please support the site by visiting our
sponsor:
|
| |
| |
 |
A Doubly-Linked List C++ Class | C++ (general), Microsoft Visual C++, Borland C++ | Intermediate / Email Component | 12433 since 11/16/2002 12:23:55 AM | Unrated
|
| |
A general-purpose doubly-linked list C++ class. |
| |
| |
| |
 |
A Faster Way to "MOD" and how to grab a digit from an Integer | C, C++ (general), Microsoft Visual C++ | Beginner / Ethan Queen | 6480 since 7/17/2003 6:52:45 AM |
By 1 Users
|
| |
This program is to show how to get the last digit of an integer type without using
"last_digit = num % 10"
It also shows that "%" is slower than my optimized code due to "%" using division
My optimized code is faster than using "%" about 90% of the time,a ...(description truncated) |
| |
| |
| |
 |
A Fraction Calculator | C++ (general), Microsoft Visual C++, Borland C++ | Beginner / Sean Callan | 17950 since 4/7/2002 8:14:27 PM |
By 3 Users
|
| |
This is just a simple Calculator that allows someone to +,-,*,/ fractions. Was a class lab thought it might actually be useful to someone. |
| |
| |
| |
 |
A Graphical Sorting Program | C++ (general), Borland C++ | Intermediate / joe giardino | 19659 since 2/13/2001 8:21:29 PM |
By 1 Users
|
| |
This program graphically explains basic sorting algorithms. Included is the bubble sort, the insertion sort, the selection sort, the shell sort, and the quick sort. There is a delay option so that the sorting can be slowed down to see what the computer is ...(description truncated) (ScreenShot) |
| |
| |
| |
 |
A Merge Sort | C | Beginner / Shyam Srinivas | 10420 since 10/28/2004 2:07:06 PM | Unrated
|
| |
Merge Sort |
| |
| |
| |
 |
A N - Queens Problem | C | Beginner / Shyam Srinivas | 6239 since 10/28/2004 2:13:38 PM |
By 3 Users
|
| |
To solve N Queens Problem |
| |
| |
| |
 |
A Perfect Number | C++ (general), Microsoft Visual C++ | Beginner / Xolani | 13565 since 7/3/2002 5:00:27 AM |
By 3 Users
|
| |
An integer number is said to be a perfect number if its factors, including 1(but not the number itself), sum to the number. For example, 6 is a perfect number because 6= 1+2+3. Write a method perfect that determines if parameter number is a perfect number ...(description truncated) |
| |