Tag : linked

Title User Language Tags Description Date
Implementation of stack in C (linked lists) lionaneesh C This is a basic implementation of Stack in C using linked lists ... This snippet uses 2 functions... 1. pop = simply pops the data from the top of the stack 2. push = simply pushes the data on the top of the stack March 21, 2011
A More Robust LinkedList KYA Lua A linked list implementation in Lua. Emulates the use of a "class" to provide functionality of a data structure. Sample usage is included. December 28, 2010
Node Array Based Off of Nick Parlante's tutorial from Stanford University trentonknight C++ September 25, 2010
Recursively Reverse A LinkedList m-e-g-a-z Java Reverses a LinkedList using Recursion June 1, 2010
Linked List, C++ alias120 C++ Simple Linked List implementation using struct. No OOP/sans class May 29, 2010
Merge 2 files in sorted order via linked-list David W C reads 1st file into a list via insert sort reads 2nd file into that same list via insert sort writes the new merged data records to a sorted merge file May 29, 2010
Merge Two Sorted LinkedLists japanir C Given two sorted LinkedLists list1 by ref and list2, the function will merge the 2 lists into list1 by changing pointers. May 19, 2010
Add two very long integers from file using linked list jessicalegner C++ This code will create two linked lists from files containing very larger integers, larger integers than are able to be stored in C++. It has methods to both add and display the numbers. May 9, 2010
Demo of recursion with linked list ... David W C++ Recursive methods may often be hard to follow, especially for new students ... and if you ask for a demo of recursion in a linked list, a very useful merge sort demo might present an overwhelming challenge to beginners ... This demo, of a simple list of char's, attempts to show some of the features, benefits and hazards of recursion ... (using linked-lists.) April 19, 2010
Template class List (using a plain linked-list) David W C++ Demo of creating a template class List ... The test program demos a List of integers, but try out other types, including your own. April 17, 2010
Recursively Reverse Print a Singly-Linked List without a Tail Pointer macosxnerd101 Java Recursively prints a singly-linked list to the console. It accepts the Head node as a param. April 12, 2010
Linked Lists Martyn.Rae C++ Provides base classes for fifo lifo and chained lists. February 4, 2010
Ordered Double Linked List Using head and tail poncho4all C++ This snippet gives a doubly linked list with an int part that is ordered ascendant or descendant September 12, 2009
Ordered Linked List Using head and tail poncho4all C++ This snippet takes in int data and orders it in descending order and you can pull out certain value without killing the whole list September 3, 2009
C version, using a linked-list of struct Student David W C C way to approximate class Student ... with an insert-sorted list and simple password protection. Note: will only permit unique id's. May 3, 2009