modify code

master
algorithmzuo 4 years ago
parent 1cc64d5c75
commit ef85606ca3

@ -173,16 +173,11 @@ public class Code04_DoubleLinkedListQuickSort {
L.last = rt;
rt = L;
}
} else {
if (eh == null) {
eh = L;
et = L;
} else {
et.next = L;
L.last = et;
et = L;
}
}
L = tmp;
}
return new Info(lh, lt, ls, rh, rt, rs, eh, et);

Loading…
Cancel
Save