This source file includes following definitions.
- main
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 #include <config.h>
19
20 #include "gl_list.hh"
21 #include "gl_array_list.h"
22
23 #include <string.h>
24
25 #include "macros.h"
26
27 static const char A[] = "A";
28 static const char C[] = "C";
29 static const char D[] = "D";
30
31 int
32 main (int argc, char *argv[])
33 {
34 gl_List<const char *> list1;
35
36 list1 = gl_List<const char *> (GL_ARRAY_LIST, NULL, NULL, NULL, true);
37 list1.add_last (A);
38 list1.add_last (C);
39 list1.add_last (D);
40 list1.add_last (C);
41 ASSERT (list1.size () == 4);
42
43 gl_List<const char *>::iterator iter1 = list1.begin ();
44 {
45 const char *elt;
46 ASSERT (iter1.next (elt));
47 ASSERT (strcmp (elt, "A") == 0);
48 ASSERT (iter1.next (elt));
49 ASSERT (strcmp (elt, "C") == 0);
50 ASSERT (iter1.next (elt));
51 ASSERT (strcmp (elt, "D") == 0);
52 ASSERT (iter1.next (elt));
53 ASSERT (strcmp (elt, "C") == 0);
54 ASSERT (!iter1.next (elt));
55 }
56
57 gl_List<const char *> list2 = gl_List<const char *> (list1, 1, 3);
58
59 gl_List<const char *>::iterator iter2 = list2.begin ();
60 {
61 const char *elt;
62 ASSERT (iter2.next (elt));
63 ASSERT (strcmp (elt, "C") == 0);
64 ASSERT (iter2.next (elt));
65 ASSERT (strcmp (elt, "D") == 0);
66 ASSERT (!iter1.next (elt));
67 }
68
69 ASSERT (list2.indexof (A) == (size_t)(-1));
70 ASSERT (list2.indexof (D) == 1);
71
72 ASSERT (list2.sortedlist_indexof (strcmp, "A") == (size_t)(-1));
73 ASSERT (list2.sortedlist_indexof (strcmp, "D") == 1);
74
75 list2.free ();
76 list1.free ();
77
78 return 0;
79 }