linked.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include "linked.hpp"
  5. // unlink take a node out of the linked list, but does not dispose of the memory
  6. int linked_list::unlink(linked_node *p)
  7. {
  8. linked_node *q;
  9. if (first()) // if there are any nodes..
  10. {
  11. if (first()==p) // if they want to unlinkt the first node
  12. {
  13. fn->last()->set_next(fn->next()); // set the first's last's next to the first's next
  14. fn->next()->set_last(fn->last()); // set the first next's last to the first last
  15. if (fn->next()==fn) // if there is ony one node
  16. { fn=NULL; cn=NULL; } // clear the list
  17. else fn=p->next(); // else point the first pointer to the next node
  18. nn--; // decrement the number of nodes in the list
  19. return 1;
  20. }
  21. else
  22. {
  23. q=first()->next();
  24. while (q!=p && q!=first()) // find the node in the list
  25. q=q->next();
  26. if (q!=first()) // is it in the list at all?
  27. { q->last()->set_next(q->next()); // yes unlink the pointers
  28. q->next()->set_last(q->last());
  29. nn--;
  30. return 1;
  31. } // decrement the number of nodes
  32. }
  33. }
  34. return 0;
  35. }
  36. // this function clears all the nodes in a linked list and dispose of the
  37. // memory for each one by calling is't destructor
  38. linked_list::~linked_list()
  39. {
  40. if (fn)
  41. fn->last()->set_next(NULL); // set the last nodes next to NULL
  42. // so we can go until we hit NULL
  43. while (fn != NULL) // repeat until we get to that node
  44. {
  45. cn=fn->next();
  46. delete fn; // delete the old node
  47. fn=cn;
  48. }
  49. cn=NULL; // clear the list
  50. nn=0; // set the number of nodes to 0
  51. }
  52. // this function returns the node number a node is in a linked list
  53. // it start at the node and goes backwards until it reaches the first
  54. // node
  55. int linked_list::node_number(linked_node *p)
  56. {
  57. int x;
  58. x=1;
  59. while (p!=first())
  60. { x++; p=p->last(); }
  61. return x;
  62. }
  63. // this function returns a pointer to the xth node
  64. class linked_node *linked_list::get_node(int x)
  65. {
  66. class linked_node *p;
  67. p=fn; // start tat the first node
  68. while (x--!=1) p=p->next(); // go forward X-1 nodes
  69. return p;
  70. }
  71. // this function adds a node to the end of a linked_list
  72. void linked_list::add_end(class linked_node *p)
  73. {
  74. nn++;
  75. if (fn==NULL) // if there are no nodes, then this one becomes the first
  76. { fn=p;
  77. fn->set_next(fn); // and it poits to itself for first and last
  78. fn->set_last(fn);
  79. }
  80. else
  81. {
  82. p->set_last(fn->last()); // otherwise add it in at the end
  83. p->set_next(fn);
  84. fn->last()->set_next(p);
  85. fn->set_last(p); // the first's last pointer points to the node we just added
  86. }
  87. }
  88. // to add a node at the fron of the list, just add it at the end and set
  89. // the first pointer to it
  90. void linked_list::add_front(class linked_node *p)
  91. {
  92. add_end(p);
  93. fn=p;
  94. }
  95. // insert adds a node in the list according to is sort value
  96. void linked_list::insert(class linked_node *p)
  97. {
  98. class linked_node *q;
  99. // if there are nodes, or it belongs at the beginin call add front
  100. if ((fn==NULL) || (p->compare(fn,sortby)>0))
  101. add_front(p);
  102. // else if it goes at the ned call add_end
  103. else if (p->compare(fn->last(),sortby)<=0)
  104. add_end(p);
  105. else // otherwise we have to find the right spot for it.
  106. {
  107. nn++;
  108. q=fn;
  109. while (q!=fn->last()) // q starts at the front
  110. { q=q->next();
  111. if (p->compare(q,sortby)>0) // repeat until we find a value greater than the one we are inserting
  112. { p->set_next(q);
  113. p->set_last(q->last()); // insert it with pointers here
  114. q->last()->set_next(p);
  115. q->set_last(p);
  116. q=fn->last(); // set q to the last node so we exit the loop
  117. }
  118. }
  119. }
  120. }
  121. linked_list::linked_list(linked_node *first)
  122. { linked_node *prev;
  123. fn=first; cn=first; sortby=1; nn=0;
  124. if (first)
  125. { cn=first;
  126. do
  127. {
  128. nn++;
  129. prev=cn;
  130. cn=cn->next();
  131. } while (cn && cn!=first);
  132. if (cn==NULL)
  133. {
  134. fn->set_last(prev);
  135. prev->set_next(fn);
  136. }
  137. cn=first;
  138. }
  139. }