c_cpp 二进制数组排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 二进制数组排序相关的知识,希望对你有一定的参考价值。
/*
http://ideone.com/DyeLPA
http://www.practice.geeksforgeeks.org/problem-page.php?pid=532
*/
#include <iostream>
using namespace std;
int main() {
int t, n, x;
cin >> t;
while(t--){
cin >> n;
int zero = 0, one = 0;
while(n--){
cin >> x;
if(x == 0) zero++;
else one++;
}
for(int i=0; i<zero; i++)
cout << 0 << (((i==zero-1) && one==0)? "\n" : " ");
for(int i=0; i<one; i++){
cout << 1;
cout << ((i==one-1) ? "\n" : " ");
}
}
return 0;
}
以上是关于c_cpp 二进制数组排序的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 从两个给定排序数组的备用元素生成所有可能的排序数组
c_cpp 对几乎排序(或K排序)的数组进行排序,插入排序
c_cpp 88.合并排序数组
c_cpp 以波形排序数组
c_cpp 合并数组排序
c_cpp 搜索几乎排序的数组