Wang Huan

Results 2 issues of Wang Huan

执行下面段代码,会卡在第4行(删除第4行前的一行或多行均不会出现卡主的情况): ```go myCedar.Insert([]byte("李沁"), 1) myCedar.Delete([]byte("李沁")) myCedar.Insert([]byte("测试"), 1) myCedar.Insert([]byte("的淡"), 1) // 在该行卡主 myCedar.Insert([]byte("的"), 1) ``` 经过断点调试可发现卡主的原因是程序在cedar.go源文件的236~237行处于死循环状态: ```go if hasChild && keepOrder { c = &da.Ninfos[base^int(*c)].Sibling for da.Ordered && *c != 0...

solve the issue of: [https://github.com/brokercap/Bifrost/issues/289](https://github.com/brokercap/Bifrost/issues/289)