码迷,mamicode.com
首页 >  
搜索关键字:count    ( 18169个结果
1002. A+B for Polynomials (25)
注意输入输出的:1,输入小数的语句 scanf("%lf", &a)2,输出一位小数的语句 printf("%.1f", count);时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueThis time, you are suppo...
分类:其他好文   时间:2015-12-06 10:01:59    阅读次数:145
php中的冒泡排序算法
$arr[$j+1](这里换成了从小到大的排序方式)$arr=array();$arr=array(0,41,12,33,4,15,26,7,8,89);$length=count($arr); //得到数组的总长度 for($i=0;$i 89 [1] => 41 [2] => 33 [3] =>...
分类:编程语言   时间:2015-12-05 14:25:06    阅读次数:144
BZOJ1036 树的统计Count(同时求sum max)
#include #include #include #include #include #include #include #include #include using namespace std;const int N=30010;struct Edge{ int to,next;}eg...
分类:其他好文   时间:2015-12-04 22:39:18    阅读次数:160
数据库oracle 11g 连接数管理
1、查看用户当前连接数SQL>selectcount(*)fromsys.v_$session;COUNT(*)----------262、修改连接数(注:需要重启数据库)SQL>altersystemsetprocesses=2000scope=spfile;Systemaltered.SQL>shutdownimmediate;SQL>startup;
分类:数据库   时间:2015-12-04 21:00:21    阅读次数:270
获取mysqli函数的值和字段名
query($sql); $rows=$result->num_rows; $cols=$result->field_count; echo "表中{$rows}行,{$cols}列"; //记录信息 /* $result->fetch_row() ----...
分类:数据库   时间:2015-12-04 16:26:08    阅读次数:236
[LeetCode]Validate Binary Search Tree
两种解法,第一个是利用了前序遍历递增的特点public class Solution { long count = Long.MIN_VALUE; public boolean isValidBST(TreeNode root) { if (root == null) { ...
分类:其他好文   时间:2015-12-04 10:50:02    阅读次数:143
Ugly Number II
TLE解法:public class Solution { public int nthUglyNumber(int n) { int count = 0; int i = 1; while(count l1 = new LinkedList(); ...
分类:其他好文   时间:2015-12-04 00:58:30    阅读次数:170
有穷的自动机构造
#include#include#includeint main(){ char p[30][30];//存放文法 char q[30][30]; int line=0; int n; int i,j; int count=0; int k,t=0; ...
分类:其他好文   时间:2015-12-03 22:59:41    阅读次数:151
1203有穷自动机
#include#include#includeint main(){ char p[30][30];//存放文法 char q[30][30]; int line=0; int n; int i,j; int count=0; int k,t=0; int flag=0; int l,m=0; c...
分类:其他好文   时间:2015-12-03 22:56:55    阅读次数:155
有穷的自动机构造
#include#include#includeint main(){ char p[30][30];//存放文法 char q[30][30]; int line=0; int n; int i,j; int count=0; int k,t=0; ...
分类:其他好文   时间:2015-12-03 21:18:21    阅读次数:156
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!