码迷,mamicode.com
首页 >  
搜索关键字:if while    ( 28479个结果
关于ORA-04021解决办法(timeout occurred while waiting to lock object)
某个应用正在锁定该表或者包表为select b.SID,b.SERIAL#,c.SQL_TEXTfrom v$locked_object a, v$session b, v$sqlarea cwhere a.SESSION_ID = b.SIDand b.SQL_ADDRESS = c.ADDRES...
分类:其他好文   时间:2014-05-09 11:06:57    阅读次数:413
javascript数组赋值操作
最近在司徒正美的《javascript框架设计》,在里面发现了一个段代码1 ......2 3 var _len = arr1.length;4 while (_len) {5 arr2[--_len] = arr1[_...
分类:编程语言   时间:2014-05-08 21:33:08    阅读次数:363
快速排序
void quickSort2(int a[], int l, int r) { if (l < r) { int i = l, j = r; int x = a[l]; while (i < j) { while (i = x) { j--; } if (i < j) { a[i++] = a[j]; } whi...
分类:其他好文   时间:2014-05-07 12:03:15    阅读次数:269
读书笔记-APUE第三版-(6)系统数据文件和信息
常见系统数据文件 下表列出了常见的系统数据文件及其查找函数。 以/etc/passwd文件为例,读取数据的程序框架如下: void get_pw_entry() { struct passwd *ptr; setpwent(); while ((ptr = getpwent()) != 0) { …… } endpwe...
分类:其他好文   时间:2014-05-07 08:46:54    阅读次数:341
libc.so.6 动态库被重命名,命令不能执行
不小心重命名了libc.so.6动态库,运行命令 #mv /lib/libc.so.6 /lib/libc.so.6.back #ls ls: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory 各种命令都不好...
分类:其他好文   时间:2014-05-07 04:49:53    阅读次数:319
hdu1222
思路:m和n如果有公约数,则安全洞存在,无公约数或公约数为1,则无   #include int gcd(int a,int b) { if(b==0)return a; else { int r; while(b!=0) { r=a%b; a=b; ...
分类:其他好文   时间:2014-05-07 02:54:02    阅读次数:283
括号匹配(栈的应用)
#include #include #include using namespace std;int main(){ int n;cin>>n; while(n--){ stack s; string str;cin>>str; for(int ...
分类:其他好文   时间:2014-05-07 00:19:41    阅读次数:356
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the
Sys.Application.add_load(function() { var form = Sys.WebForms.PageRequestManager.getInstance()._form; form._initialAction = form.action = window.location.href; }); if (!documen...
分类:Web程序   时间:2014-05-06 23:36:38    阅读次数:408
算法竞赛_入门经典_刘汝佳__(2)
1,有几位数字 #include int main_2_1_digit(){ int n; while(scanf("%d",&n)){ int count = 0; if(n==0) count = 1; while(n){ count++; n/=10; } printf("%d\n",count); } return 0; } ...
分类:其他好文   时间:2014-05-06 21:20:19    阅读次数:374
杭电1231
1题目:给定K个整数的序列{ N1, N2, ..., NK },其任意连续子序列可表示为{ Ni, Ni+1, ..., Nj },其中 1 int main(){ int n, a[10001], left, beforeleft, right, i, max, sum; while...
分类:其他好文   时间:2014-05-06 13:18:27    阅读次数:366
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!