码迷,mamicode.com
首页 >  
搜索关键字:while loading shared    ( 36422个结果
[000]求两个数的最大公约数
求出两个数的最大公约数 1 int foo(int v1, int v2) 2 { 3 while(v2) { 4 int temp = v2; 5 v2 = v1 % v2; 6 v1 = temp; 7 } 8 9 re...
分类:其他好文   时间:2014-04-30 04:42:13    阅读次数:404
HDU1720 A+B Coming (16进制加法)
16进制加法1 #include2 int main()3 {4 int a,b;5 while(scanf("%x %x",&a,&b)!=EOF)6 {7 printf("%d\n",a+b); 8 } 9 }
分类:其他好文   时间:2014-04-30 02:19:33    阅读次数:357
代码添加一个按钮及监听方法
有时候无法从控件中拖拽一个按钮到storyboard,必须用编写代码方式添加按钮: 1 - (void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 // Do any additional setup after loading the view...
分类:其他好文   时间:2014-04-28 15:01:42    阅读次数:532
linux 共享内存实现
说起共享内存,一般来说会让人想起下面一些方法:1、多线程。线程之间的内存都是共享的。更确切的说,属于同一进程的线程使用的是同一个地址空间,而不是在不同地址空间之间进行内存共享;2、父子进程间的内存共享。父进程以MAP_SHARED|MAP_ANONYMOUS选项mmap一块匿名内存,fork之后,其...
分类:系统相关   时间:2014-04-28 12:30:07    阅读次数:720
Python循环语句
Python语言中的循环结构包含两种语句,分别是while语句和for语句。1.while语句while(表达式):……else:……执行过程:当循环表达式为True时,依次执行while中的语句。直到循环表达式的值为False时,才执行else语句或退出循环。其中else子句可以省略,表达式两端的...
分类:编程语言   时间:2014-04-28 08:21:42    阅读次数:568
xvfb启动PyQt4程序报Unable to load library icui18n错误
xvfb启动PyQt4程序报如下错误:Unable to load library icui18n "Cannot load library icui18n: (libicui18n.so.48: cannot open shared object file: No such file or dir...
分类:其他好文   时间:2014-04-28 05:54:03    阅读次数:675
nginx: [emerg] the size 10485760 of shared memory zone "cache_one" conflicts with already declared size 0
注意配置段中的区域包含关系.proxy_cache_patch 要在proxy_cache前已经定义.>>>> what seems to be the problem?>>>>>>>> [emerg]: the size 52428800 of shared memory zone "media"...
分类:其他好文   时间:2014-04-28 04:33:03    阅读次数:1157
素数求和
#include using namespace std;int fun(int a){ if(a==1) return 0; for(int i=2;i>M; while(M--) { int i,sum=0; cout>N; ...
分类:其他好文   时间:2014-04-27 22:06:54    阅读次数:578
49 shell中的冒号
?? 1、表示永真,相当于TRUE关键字。 colon.sh脚本利用while循环打印1到10的整数,while循环的条件使用了冒号,此时冒号就表示永真,即while循环永远执行下去,while循环体内使用if/then结构判断跳出while循环的条件。   1 #!/bin/bash   2   3 i=0   4 while :                   ...
分类:其他好文   时间:2014-04-27 20:37:31    阅读次数:468
UVA 10693 10693 - Traffic Volume(数论)
题目链接:10693 - Traffic Volume 根据物理知识, 车经过的时间等于,距离/速度,所以可以列出公式t = (l + d)/v,v/2f + d/v,只有当v / 2f = d/v时,时间最小,v = sqrt(2df),之后时间也能算了。 #include #include #include double l, f; int main() { while (~s...
分类:其他好文   时间:2014-04-27 18:11:33    阅读次数:749
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!