// 将正数变成对应的负数,将负数变成对应的正数
#include
int turn(int a)
{
if (a <= 0)
{
a = ~a + 1;
}
else
{
a = (a ^ 0xffffffff) + 1;
}
return a;
}
int main()
{
printf("%d\n", turn(5));
printf("%d\n", tu...
分类:
编程语言 时间:
2015-06-30 16:20:29
阅读次数:
152
[转]ICE介绍 (RFC 5245) http://blog.csdn.net/dxpqxb/article/details/220400171关于ICE的10个事实1 ICE使用STUN和TURN2 ICE是一种P2P的NAT穿越方式3 ICE只需要网络提供STUN或TURN服务器4 ICE允许...
分类:
其他好文 时间:
2015-06-23 13:27:33
阅读次数:
181
java -Djavax.net.debug=help MyApp Here are the current options: all turn on all debugging ssl turn on ssl debugging ...
分类:
编程语言 时间:
2015-06-17 13:10:34
阅读次数:
145
一般的模拟题。对于出现过的每一个x建立一个set 集合,对于y也如此。然后查找要走到哪个点即可,主要要对状态记录,判断是否无线循环,否者出现无线循环的情况,就tle了。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
con...
分类:
其他好文 时间:
2015-06-15 18:45:08
阅读次数:
150
Alice and Bob are playing a game with marbles; you may have played this game in childhood. The game is playing by alternating turns. In each turn a player can take exactly one or two marbles.Both Alice...
分类:
其他好文 时间:
2015-06-09 22:05:33
阅读次数:
166
代码注释,可以说是比代码本身更重要。这里有一些方法可以确保你写在代码中的注释是友好的:不要重复阅读者已经知道的内容能明确说明代码是做什么的注释对我们是没有帮助的。1234//Ifthecolorisred,turnitgreenif(color.is_red()){color.turn_green(...
分类:
其他好文 时间:
2015-06-08 21:19:49
阅读次数:
136
代码注释,可以说是比代码本身更重要。这里有一些方法可以确保你写在代码中的注释是友好的:
不要重复阅读者已经知道的内容
能明确说明代码是做什么的注释对我们是没有帮助的。
// If the color is red, turn it green
if (color.is_red()) {
color.turn_green();
}
要注释说明推理和历史
如果代码中的业务逻辑以后可能需要...
分类:
编程语言 时间:
2015-06-06 13:34:08
阅读次数:
114
Description:Need to turn page by operating scroll bar and find out the element in the current page.Previous page will not exist in DOM structure when ...
分类:
其他好文 时间:
2015-06-04 19:00:18
阅读次数:
137
[转]webrtc学习: 部署stun和turn服务器http://www.cnblogs.com/lingdhox/p/4209659.htmlwebrtc的P2P穿透部分是由libjingle实现的.步骤顺序大概是这样的:1. 尝试直连.2. 通过stun服务器进行穿透3. 无法穿透则通过tur...
分类:
Web程序 时间:
2015-06-01 20:23:10
阅读次数:
149