移除注释

This commit is contained in:
yhh
2020-12-10 11:19:18 +08:00
parent 0e7dc67d9d
commit c0450f21b6
2 changed files with 2 additions and 4 deletions

View File

@@ -3006,8 +3006,7 @@ declare module es {
declare class ArrayUtils { declare class ArrayUtils {
/** /**
* 执行冒泡排序 * 执行冒泡排序
* @param ary * @param ary
* 算法参考 -- http://www.hiahia.org/datastructure/paixu/paixu8.3.1.1-1.htm
*/ */
static bubbleSort(ary: number[]): void; static bubbleSort(ary: number[]): void;
/** /**

View File

@@ -7635,8 +7635,7 @@ var ArrayUtils = /** @class */ (function () {
} }
/** /**
* 执行冒泡排序 * 执行冒泡排序
* @param ary * @param ary
* 算法参考 -- http://www.hiahia.org/datastructure/paixu/paixu8.3.1.1-1.htm
*/ */
ArrayUtils.bubbleSort = function (ary) { ArrayUtils.bubbleSort = function (ary) {
var isExchange = false; var isExchange = false;