lispsort.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:2k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * lispsort.c
  4.  *
  5.  * Copyright (c) 1994, Regents of the University of California
  6.  *
  7.  *
  8.  * IDENTIFICATION
  9.  *   $Header: /usr/local/cvsroot/pgsql/src/backend/lib/lispsort.c,v 1.10 1999/02/13 23:15:35 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #include <sys/types.h>
  14. #include <postgres.h>
  15. #include <nodes/pg_list.h>
  16. #include <nodes/primnodes.h>
  17. #include <nodes/plannodes.h>
  18. #include <nodes/relation.h>
  19. #include <lib/lispsort.h>
  20. #include <lib/qsort.h>
  21. #ifdef NOT_USED
  22. /*
  23. ** lisp_qsort: Takes a lisp list as input, copies it into an array of lisp
  24. **    nodes which it sorts via qsort() with the comparison function
  25. **    as passed into lisp_qsort(), and returns a new list with
  26. **    the nodes sorted.  The old list is *not* freed or modified (?)
  27. */
  28. List *
  29. lisp_qsort(List *the_list, /* the list to be sorted */
  30.    int (*compare) ()) /* function to compare two nodes */
  31. {
  32. int i;
  33. size_t num;
  34. List   **nodearray;
  35. List    *tmp,
  36.    *output;
  37. /* find size of list */
  38. num = length(the_list);
  39. if (num < 2)
  40. return copyObject(the_list);
  41. /* copy elements of the list into an array */
  42. nodearray = (List **) palloc(num * sizeof(List *));
  43. for (tmp = the_list, i = 0; tmp != NIL; tmp = lnext(tmp), i++)
  44. nodearray[i] = copyObject(lfirst(tmp));
  45. /* sort the array */
  46. pg_qsort(nodearray, num, sizeof(List *), compare);
  47. /* lcons together the array elements */
  48. output = NIL;
  49. for (i = num - 1; i >= 0; i--)
  50. output = lcons(nodearray[i], output);
  51. return output;
  52. }
  53. #endif