Unverified Commit 7b2a2bb0 authored by ir1d's avatar ir1d Committed by GitHub
Browse files

Update llrbt.md

parent c7333139
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -74,7 +74,6 @@
      root->size = size(root->lc) + size(root->rc) + 1;
      return root;
    }
    ```
    
    template<class Key, class Compare>
    typename Set<Key, Compare>::Node_Set<Key, Compare>::insert(Set::Node_root, const Key &key) const {if (root == nullptr)
@@ -86,9 +85,6 @@
        root->rc = insert(root->rc, key);
      return fix_up(root);
    }

    ```

    ```

### 删除