What does each entry in the Link List called?


Each entry in a linked list is called a node. Think of a node as an entry that has three sub entries. One sub entry contains the data, which may be one attribute or many attributes. Another points to the previous node, and the last points to the next node. When you enter a new item on a linked list, you allocate the new node and then set the pointers to previous and next nodes.



Explore posts in the same categories: Data Structure Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • List the sequence of events when a large transaction that exceeds beyond its optimal value when an entry wraps and causes the rollback segment to expand into another extend?
  • Transaction Begins An entry is made in the RBS header for new transactions entry Transaction acquired blocks in an extent of RBS The...
  • What are the phases of swapping a page from the memory?
  • Page stealer finds the page eligible for swapping and places the page number in the list of pages to be...
  • What is Linked List ?
  • Linked List is one of the fundamental data structures. It consists of a sequence of nodes, each containing arbitrary...
  • What is the difference between a DYNAMIC and STATIC call in COBOL ?
  • To correct an earlier answer All called modules cannot run standalone if they require program variables passed to them...
  • What is the difference between a DYNAMIC and STATIC call in COBOL ?
  • To correct an earlier answer: All called modules cannot run standalone if they require program variables passed to them via...
  • What is Static and Dynamic linking ?
  • In static linking, the called subroutine is link-edited into the calling program , while in dynamic linking, the subroutine &...
  • What’s the difference between ‘class’ and ‘id’?
  • As a person, you may have an ID card - a passport, a driving license or whatever - which identifies...
  • What is private database link ?
  • Private database link is created on behalf of a specific user. A private database link can be used only when...
  • What is logical link control?
  • One of two sublayers of the data link layer of OSI reference model, as defined by the IEEE 802 standard....
  • What is Link Manager Protocol
  • The link manager protocol is responsible for link set-up between Bluetooth devices. This includes setting up of security functions like...

    Comment:

    You must be logged in to post a comment.