Skip to content

Instantly share code, notes, and snippets.

View cherydeng's full-sized avatar
🐹
No GI

deng cherydeng

🐹
No GI
  • JIANGNAN University
View GitHub Profile
// 已知数组 A[1··n]的元素类型为整型 int,设计一个时间和空间上尽可能高效的算法
// 将其调整为左右两部分,左边所有元素为奇数,右边所有元素为偶数,不要求对这些元素排序
// (1) 给出算法的基本设计思想:
// (2) 根据设计思想,采用 c 语言表述算法,关键之处给出注释:
// (3) 说明你所设计算法的时间复杂度和空间复杂度。
#include <iostream>
#include <vector>
#include <random>
using namespace std;