我如何计算"_"
像这样的字符串中的数量"bla_bla_blabla_bla"
?
我如何计算"_"
像这样的字符串中的数量"bla_bla_blabla_bla"
?
Answers:
#include <algorithm>
std::string s = "a_b_c";
size_t n = std::count(s.begin(), s.end(), '_');
std::count
返回类型不是。iterator_traits<InputIt>::difference_type
std::ptrdiff_t
std::size_t
伪代码:
count = 0
For each character c in string s
Check if c equals '_'
If yes, increase count
编辑:C ++示例代码:
int count_underscores(string s) {
int count = 0;
for (int i = 0; i < s.size(); i++)
if (s[i] == '_') count++;
return count;
}
请注意,这是与一起使用的代码std::string
(如果要使用char*
,则替换s.size()
为)strlen(s)
。
另请注意:我可以理解您想要“尽可能小”的东西,但是我建议您使用此解决方案。如您所见,您可以使用一个函数为您封装代码,这样您就不必for
每次都写出循环,而只需count_underscores("my_string_")
在其余代码中使用即可。在这里当然可以使用高级C ++算法,但是我认为这太过分了。
具有适当命名变量的老式解决方案。这给了代码一些精神。
#include <cstdio>
int _(char*__){int ___=0;while(*__)___='_'==*__++?___+1:___;return ___;}int main(){char*__="_la_blba_bla__bla___";printf("The string \"%s\" contains %d _ characters\n",__,_(__));}
编辑:大约8年后,看着这个答案我很I愧我做到了(即使我为自己省下了一个省力的问题,也以此为理由)。这是有毒的,不好。我不会删除该职位;我要为此道歉,以帮助改变StackOverflow上的气氛。因此,OP:很抱歉,尽管您拖延了时间,但我希望您能做好功课,而像我这样的回答并不会阻止您参加该网站。
你叫它Lambda版本... :)
using namespace boost::lambda;
std::string s = "a_b_c";
std::cout << std::count_if (s.begin(), s.end(), _1 == '_') << std::endl;
您需要几个附件...我留给您作为练习...
使用lambda函数检查字符是否为“ _”,然后仅计数将递增,否则不是有效字符
std::string s = "a_b_c";
size_t count = std::count_if( s.begin(), s.end(), []( char c ){if(c =='_') return true; });
std::cout << "The count of numbers: " << count << std::endl;
[]( char c ){if(c =='_') return true; }
调用未定义的行为,因为您未在所有代码路径中都返回值
std :: string有几种搜索方法,但find可能正是您要查找的内容。如果您指的是C风格的字符串,则等效为strchr。但是,无论哪种情况,您都可以使用for循环并检查每个字符-循环本质上是这两个循环所组成的循环。
一旦知道如何找到给定起始位置的下一个字符,就可以继续进行搜索(即使用循环),并不断进行搜索。
计算字符串中的字符出现很容易:
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s="Sakib Hossain";
int cou=count(s.begin(),s.end(),'a');
cout<<cou;
}
您可以使用字符串函数找出源字符串中“ _”的出现。find()函数有2个参数,第一个是我们要查找其出现的字符串,第二个参数处于开始位置。而循环用于查找直到源字符串末尾的出现。
例:
string str2 = "_";
string strData = "bla_bla_blabla_bla_";
size_t pos = 0,pos2;
while ((pos = strData.find(str2, pos)) < strData.length())
{
printf("\n%d", pos);
pos += str2.length();
}
我本可以这样做:
#include <iostream>
#include <string>
using namespace std;
int main()
{
int count = 0;
string s("Hello_world");
for (int i = 0; i < s.size(); i++)
{
if (s.at(i) == '_')
count++;
}
cout << endl << count;
cin.ignore();
return 0;
}
尝试
#include <iostream>
#include <string>
using namespace std;
int WordOccurrenceCount( std::string const & str, std::string const & word )
{
int count(0);
std::string::size_type word_pos( 0 );
while ( word_pos!=std::string::npos )
{
word_pos = str.find(word, word_pos );
if ( word_pos != std::string::npos )
{
++count;
// start next search after this word
word_pos += word.length();
}
}
return count;
}
int main()
{
string sting1="theeee peeeearl is in theeee riveeeer";
string word1="e";
cout<<word1<<" occurs "<<WordOccurrenceCount(sting1,word1)<<" times in ["<<sting1 <<"] \n\n";
return 0;
}
public static void main(String[] args) {
char[] array = "aabsbdcbdgratsbdbcfdgs".toCharArray();
char[][] countArr = new char[array.length][2];
int lastIndex = 0;
for (char c : array) {
int foundIndex = -1;
for (int i = 0; i < lastIndex; i++) {
if (countArr[i][0] == c) {
foundIndex = i;
break;
}
}
if (foundIndex >= 0) {
int a = countArr[foundIndex][1];
countArr[foundIndex][1] = (char) ++a;
} else {
countArr[lastIndex][0] = c;
countArr[lastIndex][1] = '1';
lastIndex++;
}
}
for (int i = 0; i < lastIndex; i++) {
System.out.println(countArr[i][0] + " " + countArr[i][1]);
}
}