从N位数字串中删去M个数使剩下的数字串所表示的数值最小

此利用了贪心思想,局部解最优思想
void deletechar(char* q){
	while(*q)
	{
	*q=*(q+1);
	++q;
	}
}
void LeastString(char *s,int n, int m){
	int i=0;
	while(m>0){
		i=0;
	while(i



你可能感兴趣的:(算法)