FreePrograms

  CONTACT US   ABOUT US   PRIVACY  DISCLAIMER

C Language Tutorial with Free C Programs

FREE C PROGRAMS 

What is C C vs C++ vs Java Program Structure Data Types in C Basic Rules of C & C++
Functions in C If, Else Conditions Loops in C Switch Case Arrays
Pointers Structures in C Strings in C Command Line Arguments Type Casting
Linked Lists Recursion Binary Trees Inheritance Multiple Inheritance
Templates File I/O Object Oriented Programming Data Structures in C C interview Questions
 

Linked Lists : C Language Tutorial

Linked Lists are Simple data structures which are used to implement abstract data structures, like stack, queues, hash tables etc. The concept of linked lists is easy.

Each record of a linked list is called an element or node. Each node has min. two members, one of which points to the next item or node in the list.

These are called as Single Linked Lists because they only point to the next one, and not the previous.

Those lists that do point to both are called Doubly Linked Lists or Circular Linked Lists.

Free C Programs

Simple Linked List

A linked list is one of the fundamental data structures, and can be used to implement other data structures

Doubly Linked List

Doubly Linked List Implementation

Push and Pop in Linked list

Learn how to Push & Pop in a Linked List

© COPYRIGHT 2009 ALL RIGHTS RESERVED FREECPROGRAMS.COM