给定一个由大写字母组成的长度为 n 的字符串,请在字符串中删除 m 个字符,使得剩下的字符串的字典序最小。用C语言写出代码
时间: 2024-06-13 12:05:59 浏览: 93
以下是C语言的代码实现:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str[101];
int m, len, i, j;
scanf("%s %d", str, &m);
len = strlen(str);
for(i = 0; i < m; i++)
{
for(j = 0; j < len - 1; j++)
{
if(str[j] > str[j+1])
{
str[j] = ' ';
break;
}
}
}
for(i = 0; i < len; i++)
{
if(str[i] != ' ')
{
printf("%c", str[i]);
}
}
return 0;
}
```
相关问题
给定一个由大写字母组成长度为n的字符串,请在字符串中删除m个字符,使得剩下的字符串的字典序最小
以下是解决该问题的步骤:
1. 遍历字符串,将每个字符出现的次数存储在一个字典中。
2. 从左到右遍历字符串,如果当前字符比前一个字符小,说明当前字符需要删除,将其从字典中减去1。
3. 如果当前字符比前一个字符大,将前面所有比当前字符大的字符都删除,直到字典中该字符的数量为0或者已经删除了m个字符。
4. 如果已经删除了m个字符,将剩余的字符全部添加到结果字符串中。
5. 如果遍历完整个字符串后还没有删除足够的字符,从结果字符串中删除最后的m-删除次数个字符。
以下是Python代码实现:
```python
def delete_char(s, m):
count = {}
for c in s:
count[c] = count.get(c, 0) + 1
res = []
delete_count = 0
for i in range(len(s)):
while res and delete_count < m and res[-1] > s[i] and count[res[-1]] > 0:
delete_count += 1
count[res[-1]] -= 1
res.pop()
res.append(s[i])
while delete_count < m:
delete_count += 1
res.pop()
return ''.join(res)
# 测试
s = 'BCDAF'
m = 2
print(delete_char(s, m)) # 输出:ABF
```
c++给定一个由大写字母组成长度为n的字符串,请在字符串中删除m个字符,使得剩下的字符串的字典序最小
以下是C++实现给定一个由大写字母组成长度为n的字符串,请在字符串中删除m个字符,使得剩下的字符串的字典序最小的代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
int m;
cin >> s >> m;
string ans = "";
for (char c : s) {
while (m && ans.size() && ans.back() > c) {
ans.pop_back();
m--;
}
ans.push_back(c);
}
while (m--) ans.pop_back();
cout << ans << endl;
return 0;
}
```
阅读全文