Follow

Translate

Wednesday, March 9, 2016

Arrays, Records and Pointers

Arrays, Records and Pointers 

The Operation one normally performs on any linear structure.

(a) Traversal: Processing each element in the list.
(b) Search: Finding the location of the element with a given value or the record with a given key.
(c) Insertion: Adding a new element to the list
(d) Deletion: Removing an element from the list.
(e) Sorting: Arranging the elements in some type of order.
(f) Merging: Combing two lists into a single list.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • DELETION FROM A LINKED LIST DELETION FROM A LINKED LIST :   Let LIST be a linked list with a node N between nodes A and B Suppose node N is to be deleted from the linked list.The schematic diagram of such a deletion appears.The deletion… Read More
  • Inserting after a Given Node Algorithm:  INSLOC(INFO, LINK, START, AVAIL, LOC, ITEM) This algorithm inserts ITEM so that ITEM follows the node with location LOC or inserts ITEM as the first node when LOC = NULL. 1.        … Read More
  • Inserting at the Beginning of a List Algorithm:   INSFIRST(INFO,  LINK,  START, AVAIL, ITEM) This algorithm inserts ITEM as the first node in the list. 1.     [OVERFLOW?]  If AVAIL = NULL , then : Write: OVERFLOW… Read More
  • DELETION FROM A LINKED LIST DELETION FROM A LINKED LIST :   Let LIST be a linked list with a node N between nodes A and B Suppose node N is to be deleted from the linked list.The schematic diagram of such a deletion appears.The deletion… Read More
  • Inserting after a Given Node Algorithm:  INSLOC(INFO, LINK, START, AVAIL, LOC, ITEM) This algorithm inserts ITEM so that ITEM follows the node with location LOC or inserts ITEM as the first node when LOC = NULL. 1.        … Read More

0 comments:

Post a Comment