auto commit

This commit is contained in:
CyC2018
2019-03-23 21:58:03 +08:00
parent 50813f55b1
commit f3b765d6ba

View File

@ -602,6 +602,7 @@ public Node rotateLeft(Node h) {
public Node rotateRight(Node h) {
Node x = h.left;
h.left = x.right;
x.right = h;
x.color = h.color;
h.color = RED;
x.N = h.N;