#include<iostream> #include<cstring> using namespace std; int strlen(const char *str) { int i = 0; while (str[i] != '\0') { i++; } return i; } int main() { char s[] = "Hello world"; cout << strlen(s) << endl; system("pause"); return 0; }这段代码的问题
时间: 2024-01-24 21:02:51 浏览: 60
这段代码没有明显的语法错误,但是有一些可以优化的地方。
首先,自定义的 `strlen` 函数与标准库中的 `strlen` 函数重名,这可能会引起一些混淆和问题,因此最好将函数名改为不同的名称。
其次,程序中使用了 `system("pause")` 函数来暂停程序的执行,这种做法并不好,因为它会调用操作系统的命令行窗口来实现暂停,而且在某些平台上可能会出现问题。更好的做法是使用 `cin.get()` 函数来等待用户输入任意字符,以达到暂停程序的目的。
最后,由于程序中只是输出了字符串的长度,因此可以将 `char s[] = "Hello world";` 改为 `const char *s = "Hello world";`,这样可以避免不必要的内存分配和拷贝操作。
改进后的代码如下所示:
```cpp
#include <iostream>
#include <cstring>
using namespace std;
int my_strlen(const char* str)
{
int i = 0;
while (str[i] != '\0')
{
i++;
}
return i;
}
int main()
{
const char* s = "Hello world";
cout << my_strlen(s) << endl;
cin.get();
return 0;
}
```
这样修改后,代码更加简洁和可读,也更加安全和稳定。
相关问题
#include<iostream> #include<cstring> using namespace std; int strlen(const char *str) { int i = 0; while (str[i] != '\0') { i++; } return i; } int main() { char s[] = "Hello world"; cout << strlen(s) << endl; system("pause"); return 0; }
这段代码实现了一个自定义的字符串长度函数 `strlen`,其功能与标准库中的 `strlen` 函数相同。具体来说,它接受一个指向字符数组的指针 `const char *str`,然后遍历该字符数组直到遇到了字符串的结束符 `\0`,最后返回字符串的长度。
在 `main` 函数中,我们定义了一个字符数组 `s` 并初始化为 `"Hello world"`。然后调用了自定义的 `strlen` 函数来计算字符串的长度,并将结果输出到屏幕上。
最后,通过调用系统函数 `system("pause")` 来暂停程序的执行,以便我们能够在控制台中看到程序的输出结果。
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; int main(int argc, const char * argv[]) { char s[1001]; int a[1001]; int k; int n; // 请在这里补充代码,完成本关任务 /********* Begin *********/ /********* End *********/ return 0; }
这段代码的功能是从一个字符串中删除k个数字,使得剩下的数字组成的数最大。现在需要你在代码的注释中实现删除k个数字的功能。下面是你需要添加的代码注释:
```c++
// 请在这里补充代码,完成本关任务
// 将s中的前n-k个数字删除,使得剩下的数字组成的数最大
// a数组记录每个数字的位置,方便后面删除数字
// 每次删除比后面数字小的数字
/********* Begin *********/
n = strlen(s);
for (int i = 0; i < n; i++) {
a[i] = i;
}
for (int i = 0; i < n - k; i++) {
int pos = i;
for (int j = i + 1; j < n; j++) {
if (s[j] > s[pos]) {
pos = j;
}
}
for (int j = pos; j > i; j--) {
swap(s[j], s[j - 1]);
swap(a[j], a[j - 1]);
}
}
s[n - k] = '\0';
sort(a + n - k, a + n);
for (int i = n - k + 1; i < n; i++) {
s[a[i]] = '\0';
}
/********* End *********/
```
阅读全文