- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我做了一个测试来比较几种语言的字符串操作,以便为服务器端应用程序选择一种语言。结果似乎很正常,直到我终于尝试了 C++,这让我很惊讶。所以我想知道我是否错过了任何优化并来这里寻求帮助。
测试主要是密集的字符串操作,包括连接和搜索。测试在 Ubuntu 11.10 amd64 上执行,GCC 版本为 4.6.1。该机器是戴尔 Optiplex 960,具有 4G RAM 和四核 CPU。
def test():
x = ""
limit = 102 * 1024
while len(x) < limit:
x += "X"
if x.find("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 0) > 0:
print("Oh my god, this is impossible!")
print("x's length is : %d" % len(x))
test()
给出结果:
x's length is : 104448
real 0m8.799s
user 0m8.769s
sys 0m0.008s
public class test {
public static void main(String[] args) {
int x = 0;
int limit = 102 * 1024;
String s="";
for (; s.length() < limit;) {
s += "X";
if (s.indexOf("ABCDEFGHIJKLMNOPQRSTUVWXYZ") > 0)
System.out.printf("Find!\n");
}
System.out.printf("x's length = %d\n", s.length());
}
}
给出结果:
x's length = 104448
real 0m50.436s
user 0m50.431s
sys 0m0.488s
function test()
{
var x = "";
var limit = 102 * 1024;
while (x.length < limit) {
x += "X";
if (x.indexOf("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 0) > 0)
console.log("OK");
}
console.log("x's length = " + x.length);
}();
给出结果:
x's length = 104448
real 0m3.115s
user 0m3.084s
sys 0m0.048s
Nodejs 的性能优于 Python 或 Java 并不奇怪。但我预计 libstdc++ 会比 Nodejs 提供更好的性能,结果让我很惊讶。
#include <iostream>
#include <string>
using namespace std;
void test()
{
int x = 0;
int limit = 102 * 1024;
string s("");
for (; s.size() < limit;) {
s += "X";
if (s.find("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 0) != string::npos)
cout << "Find!" << endl;
}
cout << "x's length = " << s.size() << endl;
}
int main()
{
test();
}
给出结果:
x length = 104448
real 0m5.905s
user 0m5.900s
sys 0m0.000s
好的,现在让我们看看摘要:
令人惊讶!我在 C++ 中尝试了“-O2,-O3”,但注意到有帮助。在 V8 中,C++ 的性能似乎只有 javascript 的 50%,甚至比 CPython 还要差。如果我错过了 GCC 中的一些优化,谁能向我解释一下,或者只是这种情况?非常感谢。
最佳答案
并不是 std::string
表现不佳(尽管我不喜欢 C++),而是字符串处理针对那些其他语言进行了高度优化。
您对字符串性能的比较具有误导性,并且如果它们旨在代表的不仅仅是这些,也是自以为是的。
我知道 Python string objects are completely implemented in C ,实际上在 Python 2.7 上,numerous optimizations由于 unicode 字符串和字节之间缺乏分离而存在。如果您在 Python 3.x 上运行此测试,您会发现它的速度要慢得多。
Javascript 有许多经过高度优化的实现。可以预料,这里的字符串处理非常出色。
您的 Java 结果可能是由于不正确的字符串处理或其他一些不良情况。我希望 Java 专家可以介入并通过一些更改来修复此测试。
至于您的 C++ 示例,我预计性能会稍微超过 Python 版本。它执行相同的操作,但解释器开销更少。这反射(reflect)在您的结果中。在测试之前使用 s.reserve(limit);
将消除重新分配开销。
我再说一遍,您只是在测试语言实现的一个方面。此测试的结果不反射(reflect)整体语言速度。
我提供了一个 C 版本来展示这种小便比赛是多么愚蠢:
#define _GNU_SOURCE
#include <string.h>
#include <stdio.h>
void test()
{
int limit = 102 * 1024;
char s[limit];
size_t size = 0;
while (size < limit) {
s[size++] = 'X';
if (memmem(s, size, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 26)) {
fprintf(stderr, "zomg\n");
return;
}
}
printf("x's length = %zu\n", size);
}
int main()
{
test();
return 0;
}
时间:
matt@stanley:~/Desktop$ time ./smash
x's length = 104448
real 0m0.681s
user 0m0.680s
sys 0m0.000s
关于c++ - 为什么 std::string 操作表现不佳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8310039/
如果您想使用 String.Concat() 连接 5 个或更多字符串,则它会使用 Concat(String[])。 为什么不一直使用 Concat(String[]) 而不再需要 Concat(S
今天在使用 String 时,我遇到了一种我以前不知道的行为。我无法理解内部发生的事情。 public String returnVal(){ return "5";
似乎在我所看到的任何地方,都有一些过时的版本,这些版本不再起作用。 我的问题似乎很简单。我有一个Java类,它映射到derby数据库。我正在使用注释,并且已经成功地在数据库中创建了所有其他表,但是在这
一、string::size_type() 在C++标准库类型 string ,在调用size函数求解string 对象时,返回值为size_type类型,一种类似于unsigned类型的int 数据
我正在尝试将数据保存到我的 plist 文件中,其中包含字符串数组的定义。我的plist - enter image description here 我将数据写入 plist 的代码是 -- let
我有一个带有键/值对的 JavaScript 对象,其中值是字符串数组: var errors = { "Message": ["Error #1", "Error #2"], "Em
例如,为了使用相同的函数迭代 List 和 List> ,我可以编写如下内容: import java.util.*; public class Test{ public static voi
第一个Dictionary就像 Dictionary ParentDict = new Dictionary(); ParentDict.Add("A_1", "1")
这是我的 jsp 文件: 我遇到了错误 The method replace(String, String, String) in the type Functions is not appl
我需要一些帮助。我有一个方法应该输出一个包含列表内容的 txt 文件(每行中的每个项目)。列表项是字符串数组。问题是,当我调用 string.Join 时,它返回文字字符串 "System.Strin
一位同事告诉我,使用以下方法: string url = "SomeURL"; string ext = "SomeExt"; string sub = "SomeSub"; string s
给定类: public class CategoryValuePair { String category; String value; } 还有一个方法: public
我正在尝试合并 Stream>>对象与所有 Streams 中的键一起映射到单个映射中. 例如, final Map someObject; final List>> list = someObjec
在这里使用 IDictionary 的值(value)是什么? 最佳答案 使用接口(interface)的值(value)始终相同:切换到另一个后端实现时,您不必更改客户端代码。 请考虑稍后分析您的代
我可以知道这两个字典声明之间的区别吗? var places = [String: String]() var places = [Dictionary()] 为什么当我尝试以这种方式附加声明时,只有
在 .NET 4.0 及更高版本中存在 string.IsNullOrWhiteSpace(string) 时,在检查字符串时使用 string.IsNullOrEmpty(string) 是否被视为
这个名字背后的原因是什么? SS64在 PowerShell 中解释此处的字符串如下: A here string is a single-quoted or double-quoted string
我打算离开 this 文章,尝试编写一个接受字符串和 &str 的函数,但我遇到了问题。我有以下功能: pub fn new(t_num: S) -> BigNum where S: Into {
我有一个结构为 [String: [String: String]] 的多维数组。我可以使用 for 循环到达 [String: String] 位,但我不知道如何访问主键(这个位 [String:
我正在尝试使用 sarama(管理员模式)创建主题。没有 ConfigEntries 工作正常。但我需要定义一些配置。 我设置了主题配置(这里发生了错误): tConfigs := map[s
我是一名优秀的程序员,十分优秀!