1.速率速率是指计算机网络中的主机在数字信道上,单位时间内从一端传送到另一端的数据量,即数据传输率,也称数据率或比特率。比特(bit)是数据量的最小单位,s(秒)是时间的最小单位。所以速率单位为bit/s或bps(bit per second),类似的有kb/s(k=10^3)、Mb/s(M=10^...
分类:
其他好文 时间:
2015-04-20 12:56:12
阅读次数:
112
How to guide for getting a classic asp application working under IIS 7.0, resolved error number=3704
Operation is not allowed when the object is closed...
分类:
移动开发 时间:
2015-04-20 11:12:38
阅读次数:
220
/**
数位dp
求所有比n(1~10^6)小的书中二进制表示法“1”的个数是m的数的个数,dp[i][j]表示以i位数1的个数为j
*/
#include
#include
#include
#include
using namespace std;
const int maxn=50;
int dp[maxn][maxn],bit[maxn];
int n,m;
int dfs(in...
分类:
其他好文 时间:
2015-04-20 09:22:55
阅读次数:
162
/*请编写实现以下功能函数:实现对一个8bit数据(unsigned char)的指定位(例如第8位)的置0或置1操作,并保持其他位不变。
函数原型:void bit_set(unsigned char *p_date,unsigned char position,int flag)。
函数参数说明:p_date是指定数据源,position是指定位(1~8),flag是置0或置1。
*/...
分类:
编程语言 时间:
2015-04-20 00:37:35
阅读次数:
187
Cycling Roads
Time Limit: 1000ms
Memory Limit: 65536KB
This problem will be judged on Ural. Original ID: 1966
64-bit integer IO format: %lld Java class name: (Any)
Prev Submit Stat...
分类:
其他好文 时间:
2015-04-19 22:53:32
阅读次数:
169
Glass Pyramid
Time Limit: 1000ms
Memory Limit: 65536KB
This problem will be judged on Ural. Original ID: 1968
64-bit integer IO format: %lld Java class name: (Any)
Prev Submit St...
分类:
其他好文 时间:
2015-04-19 22:51:49
阅读次数:
263
String Manipulation 1.0Time Limit: 3000msMemory Limit: 262144KBThis problem will be judged onCodeForces. Original ID:159C64-bit integer IO format:%I64...
分类:
其他好文 时间:
2015-04-19 22:39:33
阅读次数:
235
In-circles Again
Time Limit: 1000ms
Memory Limit: 65536KB
64-bit integer IO format: %lld Java class name:
Main
Submit
Status
PID: 4272
In the figure below you can see triangl...
分类:
其他好文 时间:
2015-04-19 21:27:54
阅读次数:
167
centos6.6下安装MongoDB3.0.1 从MongoDB3.0版起,其安装包比以前更细化,有的朋友可能不太了解区别,简单说明一下:Linux 64-bit legacy 这个版本即mongodb-linux-x86_64-3.0.1.tgz 不推荐在正式环境使用,这个版本特点是没有连接ss...
分类:
数据库 时间:
2015-04-19 17:28:39
阅读次数:
374
位运算
位运算:用于对整数类型(int,char, long 等)变量中的某一位(bit),或者若干位进行操作。比如:
1) 判断某一位是否为1
2) 只改变其中某一位,而保持其他位都不变。
C/C++语言提供了六种位运算符来进行位运算操作:
& 按位与(双目)
| 按位或(双目)
^ 按位异或(双目)
~ 按位非(取反)(单目)
>>...
分类:
其他好文 时间:
2015-04-19 16:13:11
阅读次数:
144