Home Backend Development PHP Tutorial Detailed analysis of sample codes for performance comparison of golang, python, php, c++, c, java, and Nodejs

Detailed analysis of sample codes for performance comparison of golang, python, php, c++, c, java, and Nodejs

Mar 13, 2017 pm 04:40 PM

This article mainly introduces the relevant information on the performance comparison of golang, python, php, c++, c, java, and Nodejs. Friends in need can refer to it

When I was working in PHP/C++/Go/Py, I suddenly had the idea to make a simple comparison of the performance of the recent mainstream programming languages ​​. As for how to compare, I still have to use the magical Fibonacci algorithm. Maybe it’s more commonly used or fun.

Okay, talk is cheap, show me your code! Open your Mac, click on Clion and start coding!

1. Why is Go the first one? Because I am using it personally recently and I feel very good.


package main
import "fmt"
func main(){
  fmt.Println(fibonacci(34))
}
func fibonacci(i int) int{
  if(i<2){
    return i;
  }
  return fibonacci(i-2) + fibonacci(i-1);
}
Copy after login

Let’s take a look with Go1.7 first:

The code is as follows:

qiangjian@localhost:/works/learnCPP$ go version && time go build  fib.go  && time ./fibgo version go1.7.5 darwin/amd64
real    0m0.206suser    0m0.165ssys     0m0.059s
real    0m0.052suser    0m0.045ssys     0m0.004s
Copy after login

Then, take a look at 1.8:

The code is as follows:

qiangjian@localhost:/works/learnCPP$ go18 version && time go18 build  fib.go  && time ./fibgo version go1.8 darwin/amd64
real    0m0.204suser    0m0.153ssys     0m0.062s
real    0m0.051suser    0m0.045ssys     0m0.003s
Copy after login

It feels like There is no difference, but the official 1.8 has been optimized and improved by 20% in aspects such as GC and Compile. Maybe this demo is too simple.

2. Python has been very popular recently, so let’s compare it


def fibonacci(i):
  if i<2:
    return i
  return fibonacci(i-2) + fibonacci(i-1)
 
print(fibonacci(34))
Copy after login

Let’s take a look at python2.7 first


qiangjian@localhost:/works/learnCPP$ python2 -V && time python2 ./fib.py 
Python 2.7.13
5702887

real 0m2.651s
user 0m2.594s
sys 0m0.027s
Copy after login

Then comes Py 3.5


qiangjian@localhost:/works/learnCPP$ python3 -V && time python3 ./fib.py 
Python 3.5.1

real  0m3.110s
user  0m2.982s
sys   0m0.026s
Copy after login

The biggest problem of Py can be seen at a glance: the more you upgrade, the slower it becomes, and the terrible thing is a lot of syntax It is not compatible, but it is good for writing algorithms and small programs. For other times, forget it and use Go.

3. PHP, I use it a lot for my work, so I have to compare it.


<?php
function fibonacci($i){
  if($i<2) return $i;
  return fibonacci($i-2) + fibonacci($i-1);
}
echo fibonacci(34);
Copy after login

Since I mainly use php5.4 for my work, so The first wave:


qiangjian@localhost:/works/learnCPP$ php54 -v && time php54 fib.php 
PHP 5.4.43 (cli) (built: Dec 21 2016 12:01:59) 
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies
real  0m2.288s
user  0m2.248s
sys   0m0.021s
Copy after login

The test environment is 5.6, so the next wave is:


qiangjian@localhost:/works/learnCPP$ php -v && time php fib.php 
PHP 5.6.28 (cli) (built: Dec 6 2016 12:38:54) 
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
real  0m2.307s
user  0m2.278s
sys   0m0.017s
Copy after login

New projects, myself Everything you play is php7, please see:


qiangjian@localhost:/works/learnCPP$ php -v && time php fib.php
PHP 7.1.2 (cli) (built: Feb 17 2017 10:52:17) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
5702887
real  0m0.815s
user  0m0.780s
sys   0m0.015s
Copy after login

I feel that php7 and 5 are completely different, not the same thing at all, and the progress has been too great, so I rely on this Thumbs up Brother Bird! I suggest you use php7 more.

4.C++ is my favorite theoretical basis. Of course, I am talking about C++11/14, not the old antique c99 etc.


#include <iostream>
 
constexpr int fibonacci(const int i){
  if(i<2) return i;
  return fibonacci(i-2) + fibonacci(i-1);
}
 
int main() {
  fibonacci(34);
  return 0;
}
Copy after login

First use g++ 6.2 without optimization to see:


qiangjian@localhost:/works/learnCPP$ time g++-6 -o a.bin main.cpp && time ./a.bin 

real  0m0.378s
user  0m0.254s
sys   0m0.104s

real  0m0.050s
user  0m0.043s
sys   0m0.002s
Copy after login

After adding optimization -O2,


qiangjian@localhost:/works/learnCPP$ time g++-6 -O2 -o a.bin main.cpp && time ./a.bin 

real  0m0.874s
user  0m0.344s
sys   0m0.180s

real  0m0.034s
user  0m0.019s
sys   0m0.004s
Copy after login

The effect is still very obvious, and the running time is only half of the former.

5. C also wrote


#include <stdio.h>
 
int fibonacci(int i){
  if(i<2) return i;
  return fibonacci(i-2) + fibonacci(i-1);
}
int main(){
  printf("%d",fibonacci(34));
}
Copy after login

without optimization:


qiangjian@localhost:/works/learnCPP$ time gcc-6 -o c.bin fib.c && time ./c.bin 

real  0m0.341s
user  0m0.063s
sys   0m0.101s
real  0m0.049s
user  0m0.044s
sys   0m0.002s
Copy after login

added -O2 optimization:


qiangjian@localhost:/works/learnCPP$ time gcc-6 -O2 -o c.bin fib.c && time ./c.bin 

real  0m0.143s
user  0m0.065s
sys   0m0.034s
real  0m0.034s
user  0m0.028s
sys   0m0.002s
Copy after login

is the same as C++14. After optimization, the speed is significantly improved, twice as fast.

6.Java is what I least want to write. Although it is very popular, it feels too bloated


class Fib{
  public  static void main(String[] args){
    System.out.println(fibonacci(34));
 
  }
 
  static int fibonacci( int i){
    if(i<2) return i;
    return fibonacci(i-2) + fibonacci(i-1);
  }
}
Copy after login

The result of compiling and running is:


qiangjian@localhost:/works/learnCPP$ java -version && time javac Fib.java && time java Fib 
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b17)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)

real  0m0.952s
user  0m1.302s
sys   0m0.144s

real  0m0.150s
user  0m0.123s
sys   0m0.025s
Copy after login

The performance is okay, but the Compile time is too low compared to c++/go.

7. Of course, the last one to appear is javascript, which has always been popular. No, to be precise, it is Nodejs (this thing has nothing to do with java)


function fibonacci(i){
  if(i<2) return i;
  return fibonacci(i-2) + fibonacci(i-1);
}
console.log(fibonacci(34))
Copy after login

Result:


qiangjian@localhost:/works/learnCPP$ node -v && time node fib.js 
v6.10.0

real  0m0.332s
user  0m0.161s
sys   0m0.062s
Copy after login

The result is still shocking. It only takes TMD 0.3s, and the total is less than 0.5s, almost It's close to Java, but the advantages of code volume and maintainability are really thanks to Google, Chromium's V8 son, and the open source community.

If Nodejs really runs stably, it may not really be able to unify the "program world". Of course, I'm just talking, don't take it too seriously.

Let’s take a picture:

Detailed analysis of sample codes for performance comparison of golang, python, php, c++, c, java, and Nodejs

##Summary:

I feel that each language has different uses, and performance is just a single indicator. I What I value more is: readability, maintainability, portability, robustness, scalability, and then performance. Moreover, modern hardware is becoming more and more powerful. Mobile phones often have 8G, CPUs have caught up with the CPUs of PCs 5 years ago, and SSDs are becoming more popular... I am more optimistic about Golang/php/python, and also pay attention to modern C++, such as 14 and 17. As for rust,

swift, java, scala, forget it, this mainly depends on personal needs, Related to the company’s technology stack. Ha ha! Let’s write this much first!

The above is the detailed content of Detailed analysis of sample codes for performance comparison of golang, python, php, c++, c, java, and Nodejs. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1253
24
PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP vs. Other Languages: A Comparison PHP vs. Other Languages: A Comparison Apr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

See all articles