0_0_24193572_5572.cpp: In function 'void build(int, int, int)':
0_0_24193572_5572.cpp:16:12: error: too few arguments to function 'void build(int, int, int)'
build(rson);
^
0_0_24193572_5572.cpp:8:6: note: declared here
void build(int l,int r,int rt)
^
0_0_24193572_5572.cpp:17:12: error: too few arguments to function 'void build(int, int, int)'
build(lson);
^
0_0_24193572_5572.cpp:8:6: note: declared here
void build(int l,int r,int rt)
^
0_0_24193572_5572.cpp:18:11: error: 'Pushup' was not declared in this scope
Pushup(rt);
^
0_0_24193572_5572.cpp: In function 'void update(int, int, int, int, int)':
0_0_24193572_5572.cpp:31:19: error: too few arguments to function 'void update(int, int, int, int, int)'
update(p,add,lson);
^
0_0_24193572_5572.cpp:22:6: note: declared here
void update(int p,int add,int l,int r,int rt)
^
0_0_24193572_5572.cpp:32:24: error: too few arguments to function 'void update(int, int, int, int, int)'
else update(p,add,rson);
^
0_0_24193572_5572.cpp:22:6: note: declared here
void update(int p,int add,int l,int r,int rt)
^
0_0_24193572_5572.cpp:33:11: error: 'Pushup' was not declared in this scope
Pushup(rt);
^
0_0_24193572_5572.cpp: In function 'int find(int, int, int, int, int)':
0_0_24193572_5572.cpp:52:8: error: 'm' was not declared in this scope
if(L<=m)
^
0_0_24193572_5572.cpp:53:20: error: too few arguments to function 'int find(int, int, int, int, int)'
ret+=find(L,R,lson);
^
0_0_24193572_5572.cpp:44:5: note: declared here
int find(int L,int R,int l,int r,int rt)
^
0_0_24193572_5572.cpp:54:7: error: 'm' was not declared in this scope
if(R>m)
^
0_0_24193572_5572.cpp:55:20: error: too few arguments to function 'int find(int, int, int, int, int)'
ret+=find(L,R,rson);
^
0_0_24193572_5572.cpp:44:5: note: declared here
int find(int L,int R,int l,int r,int rt)
^
0_0_24193572_5572.cpp: In function 'int main()':
0_0_24193572_5572.cpp:70:13: error: 'bulid' was not declared in this scope
bulid(1,n,1);
^
0_0_24193572_5572.cpp:76:77: error: 'query' was not declared in this scope
if (op[0] == 'Q') printf("%d\n",query(a , b , 1 , n , 1));
^
|