X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=libcds%2Fsrc%2Fstatic_sequence%2Fwt_node_internal.cpp;h=f5312db058ad0e55140b1cfde383e2b2c118e34f;hb=317fdc10a3d537fd87b855c4b8714b2472cde608;hp=ce5de071765bd6a9134016a74c319b128fd6a8a0;hpb=450ba3c9c74665094fb8f6821d6cc92d2bf23011;p=SXSI%2FXMLTree.git diff --git a/libcds/src/static_sequence/wt_node_internal.cpp b/libcds/src/static_sequence/wt_node_internal.cpp index ce5de07..f5312db 100644 --- a/libcds/src/static_sequence/wt_node_internal.cpp +++ b/libcds/src/static_sequence/wt_node_internal.cpp @@ -51,7 +51,7 @@ wt_node_internal::wt_node_internal(uint * symbols, uint n, uint l, wt_coder * c, } } if(count_left>0) { - if(match_left) + if(match_left/* && c->done(left[0],l+1)*/) left_child = new wt_node_leaf(left[0], count_left); else left_child = new wt_node_internal(left, count_left, l+1, c, bmb); @@ -59,7 +59,7 @@ wt_node_internal::wt_node_internal(uint * symbols, uint n, uint l, wt_coder * c, left_child = NULL; } if(count_right>0) { - if(match_right) + if(match_right/* && c->done(right[0],l+1)*/) right_child = new wt_node_leaf(right[0], count_right); else right_child = new wt_node_internal(right, count_right, l+1, c, bmb); @@ -70,6 +70,75 @@ wt_node_internal::wt_node_internal(uint * symbols, uint n, uint l, wt_coder * c, delete [] right; } +// Deletes symbols array! +wt_node_internal::wt_node_internal(uchar * symbols, uint n, uint l, wt_coder * c, static_bitsequence_builder * bmb) { + uint * ibitmap = new uint[n/W+1]; + for(uint i=0;iis_set((uint)symbols[i],l)) + bitset(ibitmap,i); + bitmap = bmb->build(ibitmap, n); + delete [] ibitmap; + uint count_right = bitmap->rank1(n-1); + uint count_left = n-count_right+1; + uchar * left = new uchar[count_left+1]; + uchar * right = new uchar[count_right+1]; + count_right = count_left = 0; + bool match_left = true, match_right = true; + for(uint i=0;iaccess(i)) { + right[count_right++]=symbols[i]; + if(count_right>1) + if(right[count_right-1]!=right[count_right-2]) + match_right = false; + } + else { + left[count_left++]=symbols[i]; + if(count_left>1) + if(left[count_left-1]!=left[count_left-2]) + match_left = false; + } + } + + delete [] symbols; + symbols = 0; + + if(count_left>0) { + if(match_left/* && c->done(left[0],l+1)*/) + { + left_child = new wt_node_leaf((uint)left[0], count_left); + delete [] left; + left = 0; + } + else + { + left_child = new wt_node_internal(left, count_left, l+1, c, bmb); + left = 0; // Already deleted + } + } else { + left_child = NULL; + } + if(count_right>0) { + if(match_right/* && c->done(right[0],l+1)*/) + { + right_child = new wt_node_leaf((uint)right[0], count_right); + delete [] right; + right = 0; + } + else + { + right_child = new wt_node_internal(right, count_right, l+1, c, bmb); + right = 0; // Already deleted + } + } else { + right_child = NULL; + } +// delete [] left; // already deleted +// delete [] right; +} + + wt_node_internal::wt_node_internal() { } wt_node_internal::~wt_node_internal() { @@ -92,19 +161,22 @@ uint wt_node_internal::rank(uint symbol, uint pos, uint l, wt_coder * c) { uint wt_node_internal::select(uint symbol, uint pos, uint l, wt_coder * c) { bool is_set = c->is_set(symbol, l); + uint ret = 0; if(!is_set) { if(left_child==NULL) return (uint)(-1); uint new_pos = left_child->select(symbol, pos, l+1,c); if(new_pos+1==0) return (uint)(-1); - return bitmap->select0(new_pos)+1; + ret = bitmap->select0(new_pos)+1; } else { if(right_child==NULL) return (uint)(-1); uint new_pos = right_child->select(symbol, pos, l+1,c); if(new_pos+1==0) return (uint)(-1); - return bitmap->select1(new_pos)+1; + ret = bitmap->select1(new_pos)+1; } + if(ret==0) return (uint)-1; + return ret; } uint wt_node_internal::access(uint pos) {