#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-28 08:03:20 浏览: 33
这段代码实现了一个自定义的字符串长度函数 `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 *********/
```
#include <iostream> #include <cstdio> #include <cstring> using namespace std; class STRING{ char* pstr; public: STRING(const char* s="");//已实现 ~STRING();//已实现 friend istream& operator>>(istream& in, STRING& s); friend ostream& operator<<(ostream& os, const STRING& s); }; int main() { STRING s; cin >> s; cout << s << endl; return 0; } /* 请在这里填写答案,,你只需要实现输入输出运算符(>>、<<)的重载即可 */
可以这样实现输入输出运算符的重载:
```c++
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
class STRING{
char* pstr;
public:
STRING(const char* s="");
~STRING();
friend istream& operator>>(istream& in, STRING& s);
friend ostream& operator<<(ostream& os, const STRING& s);
};
STRING::STRING(const char* s) {
pstr = new char[strlen(s)+1];
strcpy(pstr, s);
}
STRING::~STRING() {
delete []pstr;
}
istream& operator>>(istream& in, STRING& s) {
char buffer[1024];
in.getline(buffer, 1024);
s.pstr = new char[strlen(buffer)+1];
strcpy(s.pstr, buffer);
return in;
}
ostream& operator<<(ostream& os, const STRING& s) {
os << s.pstr;
return os;
}
int main() {
STRING s;
cin >> s;
cout << s << endl;
return 0;
}
```
在输入运算符中,我们使用`getline()`函数来读取输入的字符串,然后动态分配空间并将字符串拷贝到对象的数据成员中。
在输出运算符中,我们直接输出对象的数据成员。
注意,在使用动态分配空间时,需要在析构函数中释放空间。
阅读全文