小编Nee*_*lex的帖子

选择排序的意义

选择排序的意义是什么?即使在最好的情况下,它的时间复杂度也是 O(n^2)。那么为什么它仍然盛行?

sorting algorithm selection-sort

1
推荐指数
1
解决办法
86
查看次数

why is cin/cout slower than scanf/ printf

#include <iostream>
using namespace std;

int main(){
    int t;
    long long int n,res,x;
    scanf("%d",&t);
    while(t--){
            scanf("%lld",&n);
            res=0;


    for(int i=0;i<n;i++){
            scanf("%lld",&x);
            res^=x;
    }
    if(res==0)
        printf("-1\n");
    else 
        printf("%lld\n",res);

}
return 0;
}
Run Code Online (Sandbox Code Playgroud)

this same program when i used cin and cout was timed out in hackerearth. But passed with scanf and printf.

c++ c++11 c++14

-3
推荐指数
1
解决办法
734
查看次数

标签 统计

algorithm ×1

c++ ×1

c++11 ×1

c++14 ×1

selection-sort ×1

sorting ×1