#include #include #include void test(){//汉字输出 printf("THIS IS TEST\n"); printf("My age is %d\n",26); printf("My age is %4d 发现没?26前面多了两个空格\n",26); ...
分类:
编程语言 时间:
2015-08-02 15:04:14
阅读次数:
135
一、二叉树的定义 树的每个结点至多只有二棵子树(不存在度大于2的结点),树的子树有左右之分,次序不能颠倒。二、二叉树的性质(1) 在非空二叉树中,第i层的结点总数不超过, i>=1;(2) 深度为h的二叉树最多有个结点(h>=1),最少有h个结点;(3) 对于任意一棵二叉树,如果其叶结点数为N0,....
分类:
其他好文 时间:
2015-08-02 15:02:42
阅读次数:
112
作用域永远都是任何一门编程语言中的重中之重,因为它控制着变量与参数的可见性与生命周期。讲到这里,首先理解两个概念:块级作用域与函数作用域。什么是块级作用域呢?任何一对花括号({和})中的语句集都属于一个块,在这之中定义的所有变量在代码块外都是不可见的,我们称之为块级作用域。函数作用域就好理解了(*^...
分类:
Web程序 时间:
2015-08-02 15:04:54
阅读次数:
143
Just a HookTime Limit:2000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeHDU 1698DescriptionIn the game of DotA, Pudge’s meat ...
分类:
其他好文 时间:
2015-08-02 15:04:00
阅读次数:
134
原文地址:http://blog.csdn.net/silyvin/article/details/7275037原文: 在计算机还没有出现之前,有一种叫做电传打字机(TeletypeModel33)的玩意,每秒钟可以打10个字符。但是它有一个问题,就是打完一行换行的时候,要用去0.2秒,正好可以....
分类:
其他好文 时间:
2015-08-02 15:03:32
阅读次数:
124
题意:给一段序列,求连续的子序列中最长的等差数列或者等比数列的长度。解法:O(n)的扫两遍一次判等差一次判等比就好了。代码:#include#include#include#include#include#include#include#include#include#include#include...
分类:
其他好文 时间:
2015-08-02 15:01:21
阅读次数:
125
首先创建一张表(要求ID自动编号):create table redheadedfile ( id int identity(1,1), filenames nvarchar(50), senduser nvarchar(50), primary key(id) ) 然后我们写入50万条记录:dec...
一、集合:Collection一些方法(更多方法请参考帮助文档):增add(Object obj)、删remove()/removeAll()/clear()、改set(index,Object)、查get(index),迭代iterator()—>遍历1:List接口 特点:有序可重复的,可以用下...
分类:
其他好文 时间:
2015-08-02 15:02:38
阅读次数:
117
Implement the following operations of a queue using stacks.push(x) -- Push element x to the back of queue.pop() -- Removes the element from in front o...
分类:
其他好文 时间:
2015-08-02 15:02:17
阅读次数:
82
UIProgressView顾名思义用来显示进度的,如音乐,视频的播放进度,和文件的上传下载进度等。下面以一个简单的实例来介绍UIprogressView的使用。@interfaceActivityViewController :UIViewController{ UIProgressView*pr...
分类:
其他好文 时间:
2015-08-02 15:01:17
阅读次数:
117
题目传送门 1 /* 2 DFS:因为一行或一列都只放一个,可以枚举从哪一行开始放,DFS放棋子,同一列只能有一个 3 */ 4 #include 5 #include 6 #include 7 using namespace std; 8 9 char maze[10][10];1...
分类:
其他好文 时间:
2015-08-02 15:02:06
阅读次数:
106
图片画廊 今天分享一个自己实现的jQuery 图片画廊插件。 看一下效果图: 点击图片时: 在线演示地址:http://www.jr93.top/photoGallery/photoGallery.html 使用 使用也是很简单,代码如下: ...
分类:
Web程序 时间:
2015-08-02 15:01:56
阅读次数:
136
#import @interface AppDelegate : UIResponder {@public NSInteger timeValue;}@property (strong, nonatomic) UIWindow *window;@end#import "AppDelegate.h"....
分类:
其他好文 时间:
2015-08-02 15:02:07
阅读次数:
137
Easy billiardsTime Limit: 2 Seconds Memory Limit: 65536 KB Special JudgeEdward think a game of billiards is too long and boring. So he invented a ...
分类:
其他好文 时间:
2015-08-02 15:02:56
阅读次数:
100
有朋友下载了PHP5.3,PHP5.4版本想加载mysql支持的时候发现没有libmysql.dll文件,无法完成mysql配置,其实PHP5.3版本开始,使用mysqlnd库,不再使用libmysql.dll用来访问MySQL数据库,大大提升了PHP的数据库访问性能。且默认支持mysql,无需像l...
分类:
数据库 时间:
2015-08-02 15:01:34
阅读次数:
291
题目传送门 1 /* 2 贪心:每次把一个丢掉,选择最小的。累加求和,重复n-1次 3 */ 4 /************************************************ 5 Author :Running_Time 6 Created Time :...
分类:
移动开发 时间:
2015-08-02 15:00:17
阅读次数:
121
Description:Given two stringssandt, write a function to determine iftis an anagram ofs.For example,s= "anagram",t= "nagaram", return true.s= "rat",t= ...
分类:
其他好文 时间:
2015-08-02 15:00:46
阅读次数:
86