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