我正在处理一个行列表,我需要计算开始时出现的哈希值。
# item 1
## item 1, 1
## item 1, 2
# item 2
等等。
如果每一行都是一个 QString,我如何返回字符串开头出现的哈希数?
QString s("### foo # bar ");
int numberOfHashes = s.count("#"); // Answer should be 3, not 4
我正在处理一个行列表,我需要计算开始时出现的哈希值。
# item 1
## item 1, 1
## item 1, 2
# item 2
等等。
如果每一行都是一个 QString,我如何返回字符串开头出现的哈希数?
QString s("### foo # bar ");
int numberOfHashes = s.count("#"); // Answer should be 3, not 4
在这里,我使用标准算法find_if_not
来获取第一个不是哈希的字符的迭代器。然后我返回从字符串开头到该迭代器的距离。
int number_of_hashes(QString const& s)
{
auto it = std::find_if_not(std::begin(s), std::end(s), [](QChar c){return c == '#';});
return std::distance(std::begin(s), it);
}
编辑:该find_if_not
函数只接受一个一元谓词,而不是一个值,所以你必须传递一个 lambda 谓词。
琐碎:
int number_of_hashes(const QString &s) {
int i, l = s.size();
for(i = 0; i < l && s[i] == '#'; ++i);
return i;
}
在其他语言(主要是解释性语言)中,您不得不担心字符迭代很慢,并将所有内容委托给库函数(通常用 C 编写)。在 C++ 中,迭代在性能方面非常好,所以一个脚踏实地的for
循环就可以了。
只是为了好玩,我做了一个小基准测试,将这个简单的方法与QRegularExpression
OP 中的方法进行比较,可能缓存了 RE 对象。
#include <QCoreApplication>
#include <QString>
#include <vector>
#include <QElapsedTimer>
#include <stdlib.h>
#include <iostream>
#include <QRegularExpression>
int number_of_hashes(const QString &s) {
int i, l = s.size();
for(i = 0; i < l && s[i] == '#'; ++i);
return i;
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
const int count = 100000;
std::vector<QString> ss;
for(int i = 0; i < 100; ++i) ss.push_back(QString(rand() % 10, '#') + " foo ## bar ###");
QElapsedTimer t;
t.start();
unsigned tot = 0;
for(int i = 0; i < count; ++i) {
for(const QString &s: ss) tot += number_of_hashes(s);
}
std::cerr<<"plain loop: "<<t.elapsed()*1000./count<<" ns\n";
t.restart();
for(int i = 0; i < count; ++i) {
for(const QString &s: ss) tot += QRegularExpression("^[#]*").match(s).capturedLength();
}
std::cerr<<"QRegularExpression, rebuilt every time: "<<t.elapsed()*1000./count<<" ns\n";
QRegularExpression re("^[#]*");
t.restart();
for(int i = 0; i < count; ++i) {
for(const QString &s: ss) tot += re.match(s).capturedLength();
}
std::cerr<<"QRegularExpression, cached: "<<t.elapsed()*1000./count<<" ns\n";
return tot;
}
正如预期的那样,QRegularExpression
基于- 的速度慢了两个数量级:
plain loop: 0.7 ns
QRegularExpression, rebuilt every time: 75.66 ns
QRegularExpression, cached: 24.5 ns
int numberOfHashes = 0;
int size = s.size();
QChar ch('#');
for(int i = 0; (i < size) && (s[i] == ch); ++i) {
++numberOfHashes;
}
没有for循环的解决方案:
QString s("### foo # bar ");
int numberOfHashes = QRegularExpression("^[#]*").match(s).capturedLength();
还有一种方式:
int beginsWithCount(const QString &s, const QChar c) {
int n = 0;
for (auto ch : s)
if (c == ch) n++; else break;
return n;
}
一种 Qt 方法,利用QString::indexOf(..)
:
QString s("### foo # bar ");
int numHashes = 0;
while ((numHashes = s.indexOf("#", numHashes)) == numHashes) {
++numHashes;
} // numHashes == 3
int QString::indexOf(const QString &str, int from = 0, Qt::CaseSensitivity cs = Qt::CaseSensitive) const
返回此字符串中第一次出现的字符串的
str
索引位置,从索引位置向前搜索from
。-1
如果str
没有找到则返回。
从 index 开始0
,在字符串s
中搜索第一次出现的#
,然后使用谓词来测试这个出现是否在 index 处0
。如果没有终止,则继续 index 1
,依此类推。
但是,这不会使最终的可能完整的字符串搜索短路。如果未在其预期位置找到散列,则在最终失败的谓词检查之前,将一次完整地搜索字符串(或直到第一个散列位于错误位置)。