Blame view

lib/sort.c 2.54 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
  /*
   * A fast, small, non-recursive O(nlog n) sort for the Linux kernel
   *
   * Jan 23 2005  Matt Mackall <mpm@selenic.com>
   */
  
  #include <linux/kernel.h>
  #include <linux/module.h>
ecec4cb7a   Adrian Bunk   [PATCH] lib/sort....
9
  #include <linux/sort.h>
4e57b6817   Tim Schmielau   [PATCH] fix missi...
10
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11

ecec4cb7a   Adrian Bunk   [PATCH] lib/sort....
12
  static void u32_swap(void *a, void *b, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
14
15
16
17
  {
  	u32 t = *(u32 *)a;
  	*(u32 *)a = *(u32 *)b;
  	*(u32 *)b = t;
  }
ecec4cb7a   Adrian Bunk   [PATCH] lib/sort....
18
  static void generic_swap(void *a, void *b, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
22
23
24
25
26
27
  {
  	char t;
  
  	do {
  		t = *(char *)a;
  		*(char *)a++ = *(char *)b;
  		*(char *)b++ = t;
  	} while (--size > 0);
  }
72fd4a35a   Robert P. J. Day   [PATCH] Numerous ...
28
  /**
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
30
31
32
   * sort - sort an array of elements
   * @base: pointer to data to sort
   * @num: number of elements
   * @size: size of each element
b53907c01   Wu Fengguang   generic swap(): l...
33
34
   * @cmp_func: pointer to comparison function
   * @swap_func: pointer to swap function or NULL
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
   *
   * This function does a heapsort on the given array. You may provide a
b53907c01   Wu Fengguang   generic swap(): l...
37
   * swap_func function optimized to your element type.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
40
41
42
43
44
45
   *
   * Sorting time is O(n log n) both on average and worst-case. While
   * qsort is about 20% faster on average, it suffers from exploitable
   * O(n*n) worst-case behavior and extra memory requirements that make
   * it less suitable for kernel use.
   */
  
  void sort(void *base, size_t num, size_t size,
b53907c01   Wu Fengguang   generic swap(): l...
46
47
  	  int (*cmp_func)(const void *, const void *),
  	  void (*swap_func)(void *, void *, int size))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48
49
  {
  	/* pre-scale counters for performance */
d3717bdf8   keios   [PATCH] low perfo...
50
  	int i = (num/2 - 1) * size, n = num * size, c, r;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51

b53907c01   Wu Fengguang   generic swap(): l...
52
53
  	if (!swap_func)
  		swap_func = (size == 4 ? u32_swap : generic_swap);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
56
  
  	/* heapify */
  	for ( ; i >= 0; i -= size) {
d3717bdf8   keios   [PATCH] low perfo...
57
58
  		for (r = i; r * 2 + size < n; r  = c) {
  			c = r * 2 + size;
b53907c01   Wu Fengguang   generic swap(): l...
59
60
  			if (c < n - size &&
  					cmp_func(base + c, base + c + size) < 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
  				c += size;
b53907c01   Wu Fengguang   generic swap(): l...
62
  			if (cmp_func(base + r, base + c) >= 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
  				break;
b53907c01   Wu Fengguang   generic swap(): l...
64
  			swap_func(base + r, base + c, size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
  		}
  	}
  
  	/* sort */
995e4286a   Subbaiah Venkata   lib/sort.c optimi...
69
  	for (i = n - size; i > 0; i -= size) {
b53907c01   Wu Fengguang   generic swap(): l...
70
  		swap_func(base, base + i, size);
d3717bdf8   keios   [PATCH] low perfo...
71
72
  		for (r = 0; r * 2 + size < i; r = c) {
  			c = r * 2 + size;
b53907c01   Wu Fengguang   generic swap(): l...
73
74
  			if (c < i - size &&
  					cmp_func(base + c, base + c + size) < 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
  				c += size;
b53907c01   Wu Fengguang   generic swap(): l...
76
  			if (cmp_func(base + r, base + c) >= 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
  				break;
b53907c01   Wu Fengguang   generic swap(): l...
78
  			swap_func(base + r, base + c, size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  		}
  	}
  }
  
  EXPORT_SYMBOL(sort);
  
  #if 0
  /* a simple boot-time regression test */
  
  int cmpint(const void *a, const void *b)
  {
  	return *(int *)a - *(int *)b;
  }
  
  static int sort_test(void)
  {
d28c2bc8d   Domen Puncer   [PATCH] fix lib/s...
95
  	int *a, i, r = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  
  	a = kmalloc(1000 * sizeof(int), GFP_KERNEL);
  	BUG_ON(!a);
  
  	printk("testing sort()
  ");
  
  	for (i = 0; i < 1000; i++) {
  		r = (r * 725861) % 6599;
  		a[i] = r;
  	}
  
  	sort(a, 1000, sizeof(int), cmpint, NULL);
  
  	for (i = 0; i < 999; i++)
  		if (a[i] > a[i+1]) {
  			printk("sort() failed!
  ");
  			break;
  		}
  
  	kfree(a);
  
  	return 0;
  }
  
  module_init(sort_test);
  #endif