排序

将由1,2,3组成的乱序序列数排序,使得排序后的顺序为1,2,3.

核心思想:使用begin,end,current三个指针,初始时begin,current指向序列首部,end指向序列尾部。当current指向1时,current++;当current指向0时,current与begin指针的内容交换,current++,begin++;当current指向2时,current与end的内容交换,end--;

// ConsoleApplication52.cpp : 定义控制台应用程序的入口点。
//非零元素相对位置不变

#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;
//void partition(int *a, int p, int r){
//	int i, j;
//	i = r + 1;
//	for (j = r; j >= 0; j--){
//		if (a[j] != 0){
//			i--;
//			a[i] = a[j];
//			a[j] = 0;
//		}
//	}
//	//cout << i<<endl;
//	j = i - 1;
//	for (int k = i ; k <= r; k++){
//		
//		if (a[k] == 1){
//			j++;
//			int temp = a[j];
//			a[j] = a[k];
//			a[k] = temp;
//
//		}
//	}
//
//}
void SSort(int *a,int n){
	int *current, *begin, *end;
	begin = current = a;
	end = begin + (n-1);
	while (current <= end){
		if (*current == 1){
			current++;

		}else if (*current == 0){
			int temp = *begin;
			*begin = *current;
			*current = temp;
			current++;
			begin++;
		}
		else{
			int temp = *current;
			*current = *end;
			*end = temp;
			end--;
		}

	}
}
void test(int  *a,int r){
	SSort(a,  r);
	for (int i = 0; i < r; i++)
		cout <<a[i] <<" " ;
}
int _tmain(int argc, _TCHAR* argv[])
{
	int a[10] = {0,1,2,1,1,2,0,2,1,0};
	test(a, 10);
	system("pause");
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值