浏览代码

上传文件至 '随机数排序C++'

lisihan 4 月之前
父节点
当前提交
1c3a3660ff
共有 1 个文件被更改,包括 1 次插入4 次删除
  1. 1 4
      随机数排序C++/algo.h

+ 1 - 4
随机数排序C++/algo.h

@@ -1,8 +1,5 @@
 #pragma once
-#ifndef ALGO_H
-#define ALGO_H
 void QuickSort(int* arr/*O*/, int left/*I*/, int right/*I*/);
 int  PartSort(int* arr/*IO*/, int left/*I*/, int right/*I*/);
 void swap(int* arr/*IO*/, int left/*I*/, int right/*I*/);
-int* RandomArrayCreate(int Arraylength/*I*/);
-#endif
+