码迷,mamicode.com
首页 >  
搜索关键字:count    ( 18169个结果
SQL----函数
在看script的时候,经常会发现一些看不懂的地方。搜索了一下,发现sql还有很多的函数,这是以前不了解的。在这里做一个练习跟总结--------|length()返回字符串的长度selectlength(alliance_id)fromapplication;--------|substr(string,start,count)取子字符串,从start开始,取..
分类:数据库   时间:2015-12-02 12:43:43    阅读次数:203
250. Count Univalue Subtrees
题目:Given a binary tree, count the number of uni-value subtrees.A Uni-value subtree means all nodes of the subtree have the same value.For example:Give...
分类:其他好文   时间:2015-12-02 06:38:54    阅读次数:340
100-200之间的素数输出
#include<stdio.h>intmain(){inti=0;intcount=0;for(i=100;i<=200;i++){intj=0;for(j=2;j<=i-1;j++){if(i%j==0){break;}}if(i==j){printf("%d\n",i);count++;}}printf("\ncount=%d\n",count);system("pause");return;}首先我想说这个小程序忙了我俩小时,找bug找了..
分类:其他好文   时间:2015-12-02 01:07:27    阅读次数:119
AngularJS 事件
点我{{count}}
分类:Web程序   时间:2015-12-02 00:34:06    阅读次数:148
用结构体实现一个电话本
结构体是c语言又一个存储数据的类型,那么用结构体怎么实现一个简单的可以存储1000个人信息的电话本呢?一.首先需要定义一个结构体,包含一个人的信息(比如姓名,性别,年龄,电话,住址等等)。我们先来定义一个结构体。typedefstructPdhb-info { charname[5]; charsex[3]; i..
分类:其他好文   时间:2015-12-01 19:42:52    阅读次数:255
用三种方法实现strlen函数
实现strlen函数有三种方法:一、计数器的方法二、递归的方法三、指针减指针的方法下面是三种方法的实现:计数器的方法:intmy_strlen(constchar*str){assert(str);//对指向字符串指针的断言intcount=0;while(*str){count++;str++;}returncount;}递归的方法:intmy_strlen(const..
分类:其他好文   时间:2015-12-01 16:34:28    阅读次数:132
[LeetCode]Count and Say
public class Solution { public String countAndSay(int n) { if (n == 1) { return "1"; } String str = "1"; for...
分类:其他好文   时间:2015-12-01 16:32:13    阅读次数:149
248. Strobogrammatic Number III
题目:A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).Write a function to count the total strob...
分类:其他好文   时间:2015-12-01 07:11:41    阅读次数:634
快速排序
function quick_sort(&$a_data){ if (count($a_data) > 1) { $k = $a_data[0]; $x = array(); $y = array(); $len = count($a_d...
分类:编程语言   时间:2015-12-01 00:09:52    阅读次数:137
C提高_day03_两个辅助指针变量挖字符串(强化4)
#define _CRT_SECURE_NO_WARNINGS #include #include #include //两个辅助指针变量挖字符串, 的第三种内存模型 //指针做函数参数 void FreeMem(char **myp,int count) //释放内存函数 { int i=0; i...
分类:其他好文   时间:2015-11-30 22:16:05    阅读次数:162
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!