码迷,mamicode.com
首页 > 编程语言 > 详细

HD-ACM算法专攻系列(7)——排序

时间:2017-06-16 11:34:09      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:nbsp   div   bre   alt   ++   技术分享   int   string   image   

题目描述:

技术分享

 

源码:

 

#include"iostream"
#include"string"
using namespace std;

void Order(int *p, int n)
{
	int tmp;
	if(n < 2)return;
	for(int i = 0; i < n - 1; i++)
	{
		for(int j = 0; j < n - i - 1; j++)
		{
			if(p[j] > p[j + 1])
			{
			    tmp = p[j];
				p[j] = p[j + 1];
				p[j + 1] = tmp;
			}
		}
	}
}


int main()
{
	string str;
	int nums[501], count, start, len, num;
	bool ok;
	while(cin>>str)
	{
		count = 0;
		start = 0;
		len = str.length();
		for(int i = 0; i < len; i++)
		{
			if(str[i] == ‘5‘)
			{
				start++;
			}
			else
			{
				break;
			}
		}
		num = 0;
		ok = true;
		for(int i = start; i < len; i++)
		{
			if(str[i] != ‘5‘)
			{
				ok = true;
				num = num * 10 + (str[i] - ‘0‘);
			}
			else
			{
				if(ok)
				{
					nums[count] = num;
					count++;
					num = 0;
					ok = false;
				}
			}
		}
		if(str[len - 1] != ‘5‘)
		{
			nums[count] = num;
			count++;
		}
		
		Order(nums, count);
		for(int i = 0; i < count; i++)
		{
			if(i > 0)cout<<" ";
			cout<<nums[i];
		}
		cout<<endl;
	}
    return 0;
}

  

HD-ACM算法专攻系列(7)——排序

标签:nbsp   div   bre   alt   ++   技术分享   int   string   image   

原文地址:http://www.cnblogs.com/OneForCheng/p/7026307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!