#include<iostream>
#include<string.h>
using namespace std;
void calculate(char *a,int k)
{
int len=strlen(a);
for(int count=0;count<k;count++){
for(int i=0;i<len;i++){
if(a[i]>a[i+1]){
for(int j=i;j<len;j++){
a[j]=a[j+1];
}
break;
}
}
}
cout<<“删除之后生成的最小数为:”<<a;
}
int main()
{
char s[50];
int k;
cout<<“请输入整数”<<endl;
cin.get(s,50);
cout<<“请输入要删除的位数”<<endl;
cin>>k;
calculate(s,k);
return 0;
}
整数删除数字求最小值-贪心算法 c++实现
原文作者:贪心算法
原文地址: https://blog.csdn.net/qq_40394168/article/details/84574360
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/qq_40394168/article/details/84574360
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。