BTreeNode *search(int k){
		return (root=NULL)?NULL:root->search(k);
	}