algorithms icon indicating copy to clipboard operation
algorithms copied to clipboard

How to avoid issue about delete method in rbtree

Open thongpham1412 opened this issue 6 years ago • 0 comments

  # if key is not present.
  #
  # !!! Warning !!! There is a currently a bug in the delete method that occurs rarely
  # but often enough, especially in large datasets. It is currently under investigation.
  #
  # Complexity: O(log n)
  #
  #   map = Containers::TreeMap.new
  #   map.push("MA", "Massachusetts")
  #   map.push("GA", "Georgia")
  #   map.min_key #=> "GA"```

thongpham1412 avatar Nov 13 '19 09:11 thongpham1412