贪心算法实例

     最近看到了一个好的程序

    题目是这样的:输入几个数字,然后连接起来组成一个最大数!

   比如你输入 540 ,21, 7, 8,然后就输出了8754021这个数!

   附上代码

#include
using namespace std;
#include
#define MAX 50
int main()
{
	int n;
   while(cin>>n)
   {
	string str[MAX];
	string  s1,s2;
	string temp;
	for(int i=0;i>str[i];
	
	for(int j=1;j
点滴的积累,才能成就自我!

你可能感兴趣的:(ACM)