C++ 数组和 strstrok
C++ arrays and strstrok
我正在使用 C++ 中的数组。所以我在数组中的输入是 O3B4F2,我想输出 OOOBBBBFF?..我正在阅读有关函数 strtrok 的内容,但我不明白它真的很好,因为它在标记上分割句子。
#include <iostream>
#include <string.h>
#include<stdlib.h>
using namespace std;
int main ()
{
char a[100+1];
cin>>a;
char * pch;
char dioba[]="0 1 2 3 4 5 6 7 8 9 ";
pch = strtok (a,dioba);
int c;
for(int i=0;i<strlen(a);i++)
{
if(isdigit(a[i])==1)
{
}
}
while (pch != NULL)
{
cout<<pch<<endl;
pch = strtok (NULL,dioba);
}
return 0;
}
此外,我尝试解决一个类似的任务,我需要将数组分成字母组。我有输出需要 togo,我希望我的输出看起来像 ne e d to go。所以在字母 e 和 o 之后,我想使用白色 space 或新行。
#include <iostream>
#include <iostream>
#include <string.h>
#include<stdlib.h>
using namespace std;
int main ()
{
char a[100+1];
cin>>a;
char b[100+1];
int i=0,j=0;
for(i;i<strlen(a);i++)
{
if(a[i]=='a'||a[i]=='e'|| a[i]=='i')
for(j;j<strlen(a);j++)
{
b[j]=' ';
}
b[j]= a[i];
cout<<b<<endl;
}
return 0;
}
对于您的第一种情况,如评论中所述,无需使用 strtok。这是一个代码示例(尽管有很多方法可以执行请求的任务):
#include <iostream>
#include <string>
#include <sstream>
int main ()
{
std::string s;
std::cin >> s;
std::istringstream stream(s);
char pch;
// fetch stream for the character to repeat until the end of the string
while( stream >> pch )
{
char nbChars;
// fetch length for repetition
stream >> nbChars;
// convert character to its integer value
nbChars -= '0';
// repeat character as many times as needed
for(int i=0; i < nbChars;i++)
{
std::cout << pch;
}
}
return 0;
}
对于你的第二个任务,我建议这个示例代码,你可以根据需要修改字母。
#include <iostream>
#include <string>
int main ()
{
std::string s;
std::string needSpaceChars{"aeo"};
// read content on standard input
std::getline(std::cin, s);
// for each char, check its value and add space after the letters defined in needSpaceChars variable
for(char pch: s)
{
// display character first
std::cout << pch;
// add space if character is in the list of characters to handle
if( needSpaceChars.find(pch) != std::string::npos )
{
std::cout << ' ';
}
}
return 0;
}
根据您描述问题的方式,输入将始终采用 char
后跟 int
的形式。因此,您必须成对选择 (char
, int
) 并按规则打印。
for(size_t i = 0; i < arr.size() - 1;) {
int val = (int)arr[i+1] - 48;
for(auto j = 0; i < val; j++) {
cout << arr[i];
}
i += 2;
}
- 首先
for()
用于遍历整个arr
。
- 第二个
for()
用于打印特定 char
的出现次数。
注意:由于给定的 arr
是 char
类型,您必须将 pair 的第二个元素从 char
转换为 int
。
我正在使用 C++ 中的数组。所以我在数组中的输入是 O3B4F2,我想输出 OOOBBBBFF?..我正在阅读有关函数 strtrok 的内容,但我不明白它真的很好,因为它在标记上分割句子。
#include <iostream>
#include <string.h>
#include<stdlib.h>
using namespace std;
int main ()
{
char a[100+1];
cin>>a;
char * pch;
char dioba[]="0 1 2 3 4 5 6 7 8 9 ";
pch = strtok (a,dioba);
int c;
for(int i=0;i<strlen(a);i++)
{
if(isdigit(a[i])==1)
{
}
}
while (pch != NULL)
{
cout<<pch<<endl;
pch = strtok (NULL,dioba);
}
return 0;
}
此外,我尝试解决一个类似的任务,我需要将数组分成字母组。我有输出需要 togo,我希望我的输出看起来像 ne e d to go。所以在字母 e 和 o 之后,我想使用白色 space 或新行。
#include <iostream>
#include <iostream>
#include <string.h>
#include<stdlib.h>
using namespace std;
int main ()
{
char a[100+1];
cin>>a;
char b[100+1];
int i=0,j=0;
for(i;i<strlen(a);i++)
{
if(a[i]=='a'||a[i]=='e'|| a[i]=='i')
for(j;j<strlen(a);j++)
{
b[j]=' ';
}
b[j]= a[i];
cout<<b<<endl;
}
return 0;
}
对于您的第一种情况,如评论中所述,无需使用 strtok。这是一个代码示例(尽管有很多方法可以执行请求的任务):
#include <iostream>
#include <string>
#include <sstream>
int main ()
{
std::string s;
std::cin >> s;
std::istringstream stream(s);
char pch;
// fetch stream for the character to repeat until the end of the string
while( stream >> pch )
{
char nbChars;
// fetch length for repetition
stream >> nbChars;
// convert character to its integer value
nbChars -= '0';
// repeat character as many times as needed
for(int i=0; i < nbChars;i++)
{
std::cout << pch;
}
}
return 0;
}
对于你的第二个任务,我建议这个示例代码,你可以根据需要修改字母。
#include <iostream>
#include <string>
int main ()
{
std::string s;
std::string needSpaceChars{"aeo"};
// read content on standard input
std::getline(std::cin, s);
// for each char, check its value and add space after the letters defined in needSpaceChars variable
for(char pch: s)
{
// display character first
std::cout << pch;
// add space if character is in the list of characters to handle
if( needSpaceChars.find(pch) != std::string::npos )
{
std::cout << ' ';
}
}
return 0;
}
根据您描述问题的方式,输入将始终采用 char
后跟 int
的形式。因此,您必须成对选择 (char
, int
) 并按规则打印。
for(size_t i = 0; i < arr.size() - 1;) {
int val = (int)arr[i+1] - 48;
for(auto j = 0; i < val; j++) {
cout << arr[i];
}
i += 2;
}
- 首先
for()
用于遍历整个arr
。 - 第二个
for()
用于打印特定char
的出现次数。
注意:由于给定的 arr
是 char
类型,您必须将 pair 的第二个元素从 char
转换为 int
。