Editing Linked list

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 2: Line 2:
  
 
==Terminology==
 
==Terminology==
Each object stored in a linked list is known as an '''element''' or '''value'''. The address of the next value is known as a '''link''', as it "links" the element to the next one. A value and the corresponding link, stored together and taken collectively, are known as a '''node''' of the list. The '''size''' or '''length''' of a linked list is the number of elements or nodes it contains. A list may be empty if it contains no elements. If it is not empty, its first node is known as the '''head''', and the rest of its elements, which themselves form a linked list, are known as the '''tail'''. There are traditionally two functions on a linked list: one that returns the head, known as '''car''', and one that returns the tail, known as '''cdr'''. Adding an element to the beginning of a list—thus making it the head and the original list the tail—is called '''cons''', and adding an element to the end, '''snoc'''.
+
Each object stored in a linked list is known as an '''element''' or '''value'''. The address of the next value is known as a '''link''', as it "links" the element to the next one. A value and the corresponding link, stored together and taken collectively, are known as a '''node''' of the list. The '''size''' or '''length''' of a linked list is the number of elements or nodes it contains. A list may be empty if it contains no elements. If it is not empty, its first node is known as the '''head''', and the rest of its elements, which themselves form a linked list, are known as the '''tail'''. There are traditionally two functions on a linked list: one that returns the head, known as '''car''', and one that returns the tail, known as '''cdr'''.
  
 
==Implementation==
 
==Implementation==

Please note that all contributions to PEGWiki are considered to be released under the Attribution 3.0 Unported (see PEGWiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)