void print() { int j=1,t=1; for(int i=1; i<=(n<<2); i++) { j++; printf("%d ",tree[i]); if(j>pow(2,(t-1))) { printf(" "); j=1; t++; } } printf(" "); }