annotate tree.c @ 141:c27dddbfe901 libavutil

0.5l
author michael
date Tue, 14 Nov 2006 10:04:09 +0000
parents dbcf66639764
children f9a4c04ebb0e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
136
4ae092965c27 AVL tree
michael
parents:
diff changeset
1 /*
4ae092965c27 AVL tree
michael
parents:
diff changeset
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
4ae092965c27 AVL tree
michael
parents:
diff changeset
3 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
4 * This file is part of FFmpeg.
4ae092965c27 AVL tree
michael
parents:
diff changeset
5 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
4ae092965c27 AVL tree
michael
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
4ae092965c27 AVL tree
michael
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
4ae092965c27 AVL tree
michael
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
4ae092965c27 AVL tree
michael
parents:
diff changeset
10 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
4ae092965c27 AVL tree
michael
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4ae092965c27 AVL tree
michael
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4ae092965c27 AVL tree
michael
parents:
diff changeset
14 * Lesser General Public License for more details.
4ae092965c27 AVL tree
michael
parents:
diff changeset
15 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
4ae092965c27 AVL tree
michael
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
4ae092965c27 AVL tree
michael
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4ae092965c27 AVL tree
michael
parents:
diff changeset
19 */
4ae092965c27 AVL tree
michael
parents:
diff changeset
20
4ae092965c27 AVL tree
michael
parents:
diff changeset
21 #include "common.h"
4ae092965c27 AVL tree
michael
parents:
diff changeset
22 #include "log.h"
4ae092965c27 AVL tree
michael
parents:
diff changeset
23 #include "tree.h"
4ae092965c27 AVL tree
michael
parents:
diff changeset
24
4ae092965c27 AVL tree
michael
parents:
diff changeset
25 typedef struct AVTreeNode{
4ae092965c27 AVL tree
michael
parents:
diff changeset
26 struct AVTreeNode *child[2];
4ae092965c27 AVL tree
michael
parents:
diff changeset
27 void *elem;
4ae092965c27 AVL tree
michael
parents:
diff changeset
28 int state;
4ae092965c27 AVL tree
michael
parents:
diff changeset
29 }AVTreeNode;
4ae092965c27 AVL tree
michael
parents:
diff changeset
30
4ae092965c27 AVL tree
michael
parents:
diff changeset
31 void *av_tree_find(const AVTreeNode *t, void *key, int (*cmp)(void *key, const void *b), void *next[2]){
4ae092965c27 AVL tree
michael
parents:
diff changeset
32 if(t){
4ae092965c27 AVL tree
michael
parents:
diff changeset
33 unsigned int v= cmp(t->elem, key);
4ae092965c27 AVL tree
michael
parents:
diff changeset
34 if(v){
4ae092965c27 AVL tree
michael
parents:
diff changeset
35 if(next) next[(v>>31)^1]= t->elem;
4ae092965c27 AVL tree
michael
parents:
diff changeset
36 return av_tree_find(t->child[v>>31], key, cmp, next);
4ae092965c27 AVL tree
michael
parents:
diff changeset
37 }else{
4ae092965c27 AVL tree
michael
parents:
diff changeset
38 return t->elem;
4ae092965c27 AVL tree
michael
parents:
diff changeset
39 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
40 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
41 return NULL;
4ae092965c27 AVL tree
michael
parents:
diff changeset
42 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
43
4ae092965c27 AVL tree
michael
parents:
diff changeset
44 void *av_tree_insert(AVTreeNode **tp, void *key, int (*cmp)(void *key, const void *b)){
4ae092965c27 AVL tree
michael
parents:
diff changeset
45 AVTreeNode *t= *tp;
4ae092965c27 AVL tree
michael
parents:
diff changeset
46 if(t){
4ae092965c27 AVL tree
michael
parents:
diff changeset
47 unsigned int v= cmp(t->elem, key);
4ae092965c27 AVL tree
michael
parents:
diff changeset
48 if(v){
4ae092965c27 AVL tree
michael
parents:
diff changeset
49 int i= v>>31;
4ae092965c27 AVL tree
michael
parents:
diff changeset
50 AVTreeNode **child= &t->child[i];
4ae092965c27 AVL tree
michael
parents:
diff changeset
51 void *ret= av_tree_insert(child, key, cmp);
4ae092965c27 AVL tree
michael
parents:
diff changeset
52 if(!ret){
4ae092965c27 AVL tree
michael
parents:
diff changeset
53 t->state -= ((int)v>>31)|1;
4ae092965c27 AVL tree
michael
parents:
diff changeset
54 if(!(t->state&1)){
4ae092965c27 AVL tree
michael
parents:
diff changeset
55 if(t->state){
4ae092965c27 AVL tree
michael
parents:
diff changeset
56 if((*child)->state*2 == t->state){
4ae092965c27 AVL tree
michael
parents:
diff changeset
57 *tp= *child;
4ae092965c27 AVL tree
michael
parents:
diff changeset
58 *child= (*child)->child[i^1];
4ae092965c27 AVL tree
michael
parents:
diff changeset
59 (*tp)->child[i^1]= t;
4ae092965c27 AVL tree
michael
parents:
diff changeset
60 t->state= 0;
4ae092965c27 AVL tree
michael
parents:
diff changeset
61 }else{
4ae092965c27 AVL tree
michael
parents:
diff changeset
62 *tp= (*child)->child[i^1];
4ae092965c27 AVL tree
michael
parents:
diff changeset
63 (*child)->child[i^1]= (*tp)->child[i];
4ae092965c27 AVL tree
michael
parents:
diff changeset
64 (*tp)->child[i]= *child;
4ae092965c27 AVL tree
michael
parents:
diff changeset
65 *child= (*tp)->child[i^1];
4ae092965c27 AVL tree
michael
parents:
diff changeset
66 (*tp)->child[i^1]= t;
4ae092965c27 AVL tree
michael
parents:
diff changeset
67
4ae092965c27 AVL tree
michael
parents:
diff changeset
68 i= (*tp)->state > 0;
4ae092965c27 AVL tree
michael
parents:
diff changeset
69 (*tp)->child[i ]->state= 0;
4ae092965c27 AVL tree
michael
parents:
diff changeset
70 (*tp)->child[i^1]->state= -(*tp)->state;
4ae092965c27 AVL tree
michael
parents:
diff changeset
71 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
72 (*tp)->state=0;
4ae092965c27 AVL tree
michael
parents:
diff changeset
73 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
74 return key;
4ae092965c27 AVL tree
michael
parents:
diff changeset
75 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
76 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
77 return ret;
4ae092965c27 AVL tree
michael
parents:
diff changeset
78 }else{
4ae092965c27 AVL tree
michael
parents:
diff changeset
79 return t->elem;
4ae092965c27 AVL tree
michael
parents:
diff changeset
80 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
81 }else{
4ae092965c27 AVL tree
michael
parents:
diff changeset
82 *tp= av_mallocz(sizeof(AVTreeNode));
4ae092965c27 AVL tree
michael
parents:
diff changeset
83 (*tp)->elem= key;
4ae092965c27 AVL tree
michael
parents:
diff changeset
84 return NULL;
4ae092965c27 AVL tree
michael
parents:
diff changeset
85 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
86 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
87
4ae092965c27 AVL tree
michael
parents:
diff changeset
88 void av_tree_destroy(AVTreeNode *t){
4ae092965c27 AVL tree
michael
parents:
diff changeset
89 av_tree_destroy(t->child[0]);
4ae092965c27 AVL tree
michael
parents:
diff changeset
90 av_tree_destroy(t->child[1]);
4ae092965c27 AVL tree
michael
parents:
diff changeset
91 av_free(t);
4ae092965c27 AVL tree
michael
parents:
diff changeset
92 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
93
4ae092965c27 AVL tree
michael
parents:
diff changeset
94 #if 0
4ae092965c27 AVL tree
michael
parents:
diff changeset
95 void av_tree_enumerate(AVTreeNode *t, void *opaque, int (*f)(void *opaque, void *elem)){
137
dbcf66639764 improve enumerate so arbitrary ranges can be enumerated quickly
michael
parents: 136
diff changeset
96 int v= f(opaque, t->elem);
dbcf66639764 improve enumerate so arbitrary ranges can be enumerated quickly
michael
parents: 136
diff changeset
97 if(v>=0) av_tree_enumerate(t->child[0], opaque, f);
dbcf66639764 improve enumerate so arbitrary ranges can be enumerated quickly
michael
parents: 136
diff changeset
98 if(v<=0) av_tree_enumerate(t->child[1], opaque, f);
136
4ae092965c27 AVL tree
michael
parents:
diff changeset
99 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
100 #endif
4ae092965c27 AVL tree
michael
parents:
diff changeset
101
4ae092965c27 AVL tree
michael
parents:
diff changeset
102 #ifdef TEST
4ae092965c27 AVL tree
michael
parents:
diff changeset
103
4ae092965c27 AVL tree
michael
parents:
diff changeset
104 static int check(AVTreeNode *t){
4ae092965c27 AVL tree
michael
parents:
diff changeset
105 if(t){
4ae092965c27 AVL tree
michael
parents:
diff changeset
106 int left= check(t->child[0]);
4ae092965c27 AVL tree
michael
parents:
diff changeset
107 int right= check(t->child[1]);
4ae092965c27 AVL tree
michael
parents:
diff changeset
108
4ae092965c27 AVL tree
michael
parents:
diff changeset
109 if(left>999 || right>999)
4ae092965c27 AVL tree
michael
parents:
diff changeset
110 return 1000;
4ae092965c27 AVL tree
michael
parents:
diff changeset
111 if(right - left != t->state)
4ae092965c27 AVL tree
michael
parents:
diff changeset
112 return 1000;
4ae092965c27 AVL tree
michael
parents:
diff changeset
113 if(t->state>1 || t->state<-1)
4ae092965c27 AVL tree
michael
parents:
diff changeset
114 return 1000;
4ae092965c27 AVL tree
michael
parents:
diff changeset
115 return FFMAX(left, right)+1;
4ae092965c27 AVL tree
michael
parents:
diff changeset
116 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
117 return 0;
4ae092965c27 AVL tree
michael
parents:
diff changeset
118 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
119
4ae092965c27 AVL tree
michael
parents:
diff changeset
120 static void print(AVTreeNode *t, int depth){
4ae092965c27 AVL tree
michael
parents:
diff changeset
121 int i;
4ae092965c27 AVL tree
michael
parents:
diff changeset
122 for(i=0; i<depth*4; i++) av_log(NULL, AV_LOG_ERROR, " ");
4ae092965c27 AVL tree
michael
parents:
diff changeset
123 if(t){
4ae092965c27 AVL tree
michael
parents:
diff changeset
124 av_log(NULL, AV_LOG_ERROR, "Node %p %2d %4d\n", t, t->state, t->elem);
4ae092965c27 AVL tree
michael
parents:
diff changeset
125 print(t->child[0], depth+1);
4ae092965c27 AVL tree
michael
parents:
diff changeset
126 print(t->child[1], depth+1);
4ae092965c27 AVL tree
michael
parents:
diff changeset
127 }else
4ae092965c27 AVL tree
michael
parents:
diff changeset
128 av_log(NULL, AV_LOG_ERROR, "NULL\n");
4ae092965c27 AVL tree
michael
parents:
diff changeset
129 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
130
4ae092965c27 AVL tree
michael
parents:
diff changeset
131 int cmp(const void *a, const void *b){
4ae092965c27 AVL tree
michael
parents:
diff changeset
132 return a-b;
4ae092965c27 AVL tree
michael
parents:
diff changeset
133 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
134
4ae092965c27 AVL tree
michael
parents:
diff changeset
135 int main(){
4ae092965c27 AVL tree
michael
parents:
diff changeset
136 int i,j,k;
141
michael
parents: 137
diff changeset
137 AVTreeNode *root= NULL;
136
4ae092965c27 AVL tree
michael
parents:
diff changeset
138
4ae092965c27 AVL tree
michael
parents:
diff changeset
139 for(i=0; i<10000; i++){
4ae092965c27 AVL tree
michael
parents:
diff changeset
140 int j= (random()%863294);
4ae092965c27 AVL tree
michael
parents:
diff changeset
141 if(check(root) > 999){
4ae092965c27 AVL tree
michael
parents:
diff changeset
142 av_log(NULL, AV_LOG_ERROR, "FATAL error %d\n", i);
4ae092965c27 AVL tree
michael
parents:
diff changeset
143 print(root, 0);
4ae092965c27 AVL tree
michael
parents:
diff changeset
144 return -1;
4ae092965c27 AVL tree
michael
parents:
diff changeset
145 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
146 av_log(NULL, AV_LOG_ERROR, "inserting %4d\n", j);
4ae092965c27 AVL tree
michael
parents:
diff changeset
147 av_tree_insert(&root, (void*)(j+1), cmp);
4ae092965c27 AVL tree
michael
parents:
diff changeset
148 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
149 return 0;
4ae092965c27 AVL tree
michael
parents:
diff changeset
150 }
4ae092965c27 AVL tree
michael
parents:
diff changeset
151 #endif