Advertisement

Results for "Category: Data Structures"

ASP_Volume3 #66301
Binary2C++

Convert a binary file in a useful C/C++ structure that can be included in a C/C++ source.

C_Volume2 #81264
A 2D Array Implemented as a Queue

2D Array Implemented as a Queue. http://users.neca.com/jboxall/ja05007.htm

C_Volume2 #81265
Binary Search Tree

This program implements a doubly linked list as a binary search tree and includes functions to: traverse inorder, preorder & postorder, insert and delete a node, search for a node, and count the height of a given leaf.

C_Volume2 #81345
Pointers Tutorial.

Pointers Tutorial. Introduction to pointers for beginners. I hope u find it useful. :)

C_Volume2 #81361
Basics of C/C++: Part III--Loops

This is the third installment of the Lessons in C programming tutorials created by me, Alexander. In this lesson I will cover loops. Loops basically do what it sounds like, loop. If you have read lesson 2 you should understand some Boolean expressions. If you do not, you should read it again. When working with loops it is important to understand truth and false. Maybe you should try doing some truth tables with problems.

C_Volume2 #81364
Basics of C/C++ Part 4: Functions

Now that you have learned all about variables, loops, and if statements it is time to learn the next thing in programming: Functions. Obviously, you should have a good idea about what a function is, as you have used ones like cout before. However, this lesson will be more in detail about not only functions that are already made, but about making your own, or maybe I will continue this later...

C_Volume2 #81367
Intro to C/C++ Part 9: Strings

This lesson is one on strings. Strings are really arrays, but there are some different functions that are used for strings, like adding to strings, finding the length of strings, and also of checking to see if strings match. Strings are basically sentences, or words. Like, "This is a string".

C_Volume2 #81383
Library book managment using linked list

[Please rate my code.] This helps to maintain a book-list in a small library. The book information contains the title, author, publish year, and ISBN code. The information will be given to you in a text file books.txt. Each line of the file contains data about books. (For more information about this, look at the books.txt file in the zip file) It provides functions to: - add a book - delete a book based on the ISBN code or title - search for a book based on the ISBN code - list all books - list every books written by a specific author It also provides an easy way for users to select a command from a command menu to perform the above functions and to input data from the keyboard. The "books.txt" file is used to initialize the list.

C_Volume2 #81451
Doubly Linked List Template

Template for a doubly linked-list data structure, can be used also for queues and stacks.

C_Volume2 #81471
Hash table functions

Hash table management by Jerry Coffin, with improvements by HenkJan Wolthuis.

C_Volume2 #81530
What is a linked list?

An introduction to linked lists for beginners. I know there are already some. I guess it won't hurt to have another.

C_Volume2 #81546
Link list (queue)

produces a link list as a queue. it is part of my billing project and so uses order placing. nothing complicated.

C_Volume2 #81631
Expression calculator using stacks. Infix to Postfix.

Demonstration of Reverse Polish Notation expression calculation using Stacks.

C_Volume2 #81632
Expression calculator using Expression trees. Infix to Postfix. Reverse Polish Notation(RPN)

Demonstration of expression trees. Creating and evaluationg an expression tree, a special type of binary tree.

C_Volume2 #81745
Text that types itself!

The following code, when running, looks like the text is actually typing itself. This technique uses two main things, char arrays and the Sleep(); function. This technique would be great to use for slash screens, presentations or just impressing your friends! Also, please take the time to vote for my code. Thanks!!

C_Volume2 #81753
Character arrays, structures and unions

This program covers character arrays, structures, and unions - three VERY powerful features of C++. The first part, character arrays, explains and demostrates the use of the [] operators when dealing with strings. The second part, structures, demostrates the use of structures in real-world applications and defines the differences/similarities between structures and classes. The third and final part, unions, identifies the word 'unions' as a keyword, shows how their used and gives a copy-and-pastable example.

C_Volume2 #81880
Doubly Linked List

This is simple example of doubly linked list. You can insert/delete items anywhere in the list.

C_Volume2 #81999
Code Example - Stack Template

A simple stack template.

C_Volume2 #82000
Code Example - List Template

a simple little list template, done for practice. Comes with example driver.

C_Volume2 #82001
Code Example - Vector Template

a simple vector template.

Languages
Top Categories
Global Discovery