list.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.   Code for handling dubble-linked lists in C
  19. */
  20. #include "mysys_priv.h"
  21. #include <my_list.h>
  22. /* Add a element to start of list */
  23. LIST *list_add(LIST *root, LIST *element)
  24. {
  25.   DBUG_ENTER("list_add");
  26.   DBUG_PRINT("enter",("root: %lx  element: %lx", root, element));
  27.   if (root)
  28.   {
  29.     if (root->prev) /* If add in mid of list */
  30.       root->prev->next= element;
  31.     element->prev=root->prev;
  32.     root->prev=element;
  33.   }
  34.   else
  35.     element->prev=0;
  36.   element->next=root;
  37.   DBUG_RETURN(element); /* New root */
  38. }
  39. LIST *list_delete(LIST *root, LIST *element)
  40. {
  41.   if (element->prev)
  42.     element->prev->next=element->next;
  43.   else
  44.     root=element->next;
  45.   if (element->next)
  46.     element->next->prev=element->prev;
  47.   return root;
  48. }
  49. void list_free(LIST *root, pbool free_data)
  50. {
  51.   LIST *next;
  52.   while (root)
  53.   {
  54.     next=root->next;
  55.     if (free_data)
  56.       my_free((gptr) root->data,MYF(0));
  57.     my_free((gptr) root,MYF(0));
  58.     root=next;
  59.   }
  60. }
  61. LIST *list_cons(void *data, LIST *list)
  62. {
  63.   LIST *new=(LIST*) my_malloc(sizeof(LIST),MYF(MY_FAE));
  64.   if (!new)
  65.     return 0;
  66.   new->data=data;
  67.   return list_add(list,new);
  68. }
  69. LIST *list_reverse(LIST *root)
  70. {
  71.   LIST *last;
  72.   last=root;
  73.   while (root)
  74.   {
  75.     last=root;
  76.     root=root->next;
  77.     last->next=last->prev;
  78.     last->prev=root;
  79.   }
  80.   return last;
  81. }
  82. uint list_length(LIST *list)
  83. {
  84.   uint count;
  85.   for (count=0 ; list ; list=list->next, count++) ;
  86.   return count;
  87. }
  88. int list_walk(LIST *list, list_walk_action action, gptr argument)
  89. {
  90.   int error=0;
  91.   while (list)
  92.   {
  93.     if ((error = (*action)(list->data,argument)))
  94.       return error;
  95.     list=rest(list);
  96.   }
  97.   return 0;
  98. }