From dac38c199ad9594d2d06f6ac8191ba6996699632 Mon Sep 17 00:00:00 2001 From: CyC2018 <1029579233@qq.com> Date: Sat, 2 Mar 2019 10:19:58 +0800 Subject: [PATCH] auto commit --- docs/notes/Leetcode-Database 题解.md | 2 +- docs/notes/算法.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/notes/Leetcode-Database 题解.md b/docs/notes/Leetcode-Database 题解.md index 33877bb3..629aba39 100644 --- a/docs/notes/Leetcode-Database 题解.md +++ b/docs/notes/Leetcode-Database 题解.md @@ -497,7 +497,7 @@ https://leetcode.com/problems/customers-who-never-order/description/ ## Description -Curstomers 表: +Customers 表: ```html +----+-------+ diff --git a/docs/notes/算法.md b/docs/notes/算法.md index c7ab83c9..7593e36e 100644 --- a/docs/notes/算法.md +++ b/docs/notes/算法.md @@ -443,7 +443,7 @@ public abstract class MergeSort> extends Sort { } else if (j > h) { nums[k] = aux[i++]; - } else if (aux[i].compareTo(nums[j]) <= 0) { + } else if (aux[i].compareTo(aux[j]) <= 0) { nums[k] = aux[i++]; // 先进行这一步,保证稳定性 } else {