Doubly-linked list/Element definition: Difference between revisions

From Rosetta Code
Content added Content deleted
Line 14: Line 14:


==[[C]]==
==[[C]]==
[[Category:C]]]
struct link {
struct link {
struct * link next;
struct * link next;

Revision as of 04:25, 8 May 2007

Task
Doubly-linked list/Element definition
You are encouraged to solve this task according to the task description, using any language you may know.

Define the data structure for a doubly-linked list element. The element should include a data member to hold its value and pointers to both the next element in the list and the previous element in the list. The pointers should be mutable.

Ada

type Link;
type Link_Access is access Link;
type Link is record
  Next : Link_Access := null;
  Prev : Link_Access := null;
  Data : Integer;
end record;

C

]

struct link {
  struct * link next;
  struct * link prev;
  int data;
};