2017/3/23 22:23:57 Given an integer (signed 32 bits), write a function to check whether it is a power of 4. Example:Given num = 16, return true. Given ...
分类:
其他好文 时间:
2017-03-27 00:25:51
阅读次数:
139
Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: The given inte ...
分类:
其他好文 时间:
2017-03-25 13:03:55
阅读次数:
130
首先分析一段代码: #include <bits/c++config.h> #include <ostream> #include <iostream> #include <cstdio> using namespace std; class Node{ int x; public: Node(in ...
分类:
编程语言 时间:
2017-03-23 20:53:25
阅读次数:
226
题目链接:hdu 1402 A * B Problem Plus 题意: 让你求两个大数的乘法。 题解: FFT裸题。 FFT学习推荐:FFT学习笔记 1 #include<bits/stdc++.h> 2 #define F(i,a,b) for(int i=a;i<=b;++i) 3 using ...
分类:
其他好文 时间:
2017-03-22 20:41:40
阅读次数:
202
1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int main(){ 5 int* p=NULL; 6 int& r=*p; 7 cout<<r<<endl; 8 } ...
分类:
其他好文 时间:
2017-03-21 15:30:51
阅读次数:
160
题目: The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, ca ...
分类:
其他好文 时间:
2017-03-16 21:43:41
阅读次数:
498
题意:给n(n为奇数)个数,接下来给出n个数,并且其中一个数出现大于等于(n+1)/2次,请输出那个数 分析:数不多,可以map记录每个数的个数,然后迭代器寻找就可以了 也可以充分利用数大于一半的条件 #include<bits/stdc++.h> using namespace std; cons ...
分类:
其他好文 时间:
2017-03-15 14:39:21
阅读次数:
154
比赛链接 A题是KMP,先把A拼接到B的后面,然后利用next数组的意义(包括其具体含义,以及失配时的应用),得到ans 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 char T[200005],S[200005]; 5 int tlen ...
分类:
其他好文 时间:
2017-03-12 17:47:01
阅读次数:
186
在听学长讲课时看到了#include<bits/stdc++.h>这个头文件,瞬间懵逼辣,百度后了解了 #include<bits/stdc++.h>,包含了C++的所有头文件,C++版本升级,方便程序。 #include<bits/stdc++.h>这个头文件包含以下等等C++中包含的所有头文件: ...
分类:
编程语言 时间:
2017-03-11 00:50:05
阅读次数:
499
#include<iostream> #include<math.h> #include<vector> #include<bits/stdc++.h> using namespace std; typedef vector<double> vec; typedef vector<vec> mat; ...
分类:
其他好文 时间:
2017-03-10 00:11:04
阅读次数:
175