0_0_33763173_3603.cpp: In member function 'void Nx::build(int, int, int)':
0_0_33763173_3603.cpp:38:21: error: 'lson' was not declared in this scope
build(l,mid,lson);
^
0_0_33763173_3603.cpp:39:25: error: 'rson' was not declared in this scope
build(mid + 1,r,rson);
^
0_0_33763173_3603.cpp: In member function 'int Nx::queryMax(int, int, int)':
0_0_33763173_3603.cpp:48:40: error: 'lson' was not declared in this scope
ret = max(ret,queryMax(L,R,lson));
^
0_0_33763173_3603.cpp:50:40: error: 'rson' was not declared in this scope
ret = max(ret,queryMax(L,R,rson));
^
0_0_33763173_3603.cpp: In member function 'int Nx::queryMin(int, int, int)':
0_0_33763173_3603.cpp:60:40: error: 'lson' was not declared in this scope
ret = min(ret,queryMin(L,R,lson));
^
0_0_33763173_3603.cpp:62:40: error: 'rson' was not declared in this scope
ret = min(ret,queryMin(L,R,rson));
^
0_0_33763173_3603.cpp: In function 'void build(int, int, int)':
0_0_33763173_3603.cpp:77:17: error: 'lson' was not declared in this scope
build(l,mid,lson);
^
0_0_33763173_3603.cpp:78:21: error: 'rson' was not declared in this scope
build(mid + 1,r,rson);
^
0_0_33763173_3603.cpp: In function 'int queryMax(int, int, int, int, int)':
0_0_33763173_3603.cpp:89:44: error: 'lson' was not declared in this scope
ret = max(ret,queryMax(x1,x2,y1,y2,lson));
^
0_0_33763173_3603.cpp:91:44: error: 'rson' was not declared in this scope
ret = max(ret,queryMax(x1,x2,y1,y2,rson));
^
0_0_33763173_3603.cpp: In function 'int queryMin(int, int, int, int, int)':
0_0_33763173_3603.cpp:103:44: error: 'lson' was not declared in this scope
ret = min(ret,queryMin(x1,x2,y1,y2,lson));
^
0_0_33763173_3603.cpp:105:44: error: 'rson' was not declared in this scope
ret = min(ret,queryMin(x1,x2,y1,y2,rson));
^
|