//杨鑫
#include
#include
#include
using namespace std;
int getMaxOrMin(int *arr, int count, bool isMax)
{
int temp = arr[0];
for(int i = 1; i < count; i++)
{
if(isMax)
{
if(temp < arr[i])
...
分类:
编程语言 时间:
2015-06-13 18:37:16
阅读次数:
196
https://leetcode.com/problems/count-complete-tree-nodes/Given acompletebinary tree, count the number of nodes.Definition of a complete binary tree fro...
分类:
其他好文 时间:
2015-06-13 18:19:54
阅读次数:
89
近期,个人官网实现了PDF下载功能,出于统计的考虑。添加了“下载次数”download_count这个字段。 可是。我今天突然发现。每次下载download_count都直接+2了。假设server发生这样的事,另一定的可能,本地就我一个人下载,怎么可能下载2次。于是,打开了log4j的debug....
分类:
其他好文 时间:
2015-06-13 15:27:35
阅读次数:
104
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
分类:
其他好文 时间:
2015-06-12 22:13:46
阅读次数:
123
SRM 1472600PeopleCircleProblem StatementThere arenumMalesmales andnumFemalesfemales arranged in a circle. Starting from a given point, you count clock...
分类:
其他好文 时间:
2015-06-12 20:54:59
阅读次数:
186
在区间上贪心
#include
#include
#include
using namespace std;
struct point
{
double x1,x2;
}p[1005];
bool cmp(point a,point b)
{
return a.x1<b.x1;
}
int main()
{
int n,r,i,t,end_flag,count;
doub...
分类:
其他好文 时间:
2015-06-12 19:26:34
阅读次数:
151
1、sql主表CREATE TABLE `account_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL COMMENT '公众号分组', `count` int(11) DEFAUL...
分类:
其他好文 时间:
2015-06-12 19:17:11
阅读次数:
132
对冒泡排序进行了小小的改进,当某次扫描没有元素进行交换时,说明已经排序已经完成,此时结束循环。定义了一个count用来检测是否有元素进行交换。#includevoid Bubble_sort(int a[],int n);int main(void){ int n,a[10],i; sc...
分类:
编程语言 时间:
2015-06-12 19:10:13
阅读次数:
192
命令格式
jstat命令命令格式:
jstat [Options] vmid [interval] [count]
参数说明:
Options,选项,我们一般使用 -gcutil 查看gc情况
vmid,VM的进程号,即当前运行的java进程号
interval,间隔时间,单位为秒或者毫秒
count,打印次数,如果缺省则打印无数次
示例说明
示例
通常运行命令如下:
...
分类:
Web程序 时间:
2015-06-12 17:25:20
阅读次数:
118
以后把关于二进制运算编程相关的记录到这里好了。 前段时间小米笔试第一道题:二进制数中一的个数。 解法一: 1 int getnumof1(int n) 2 { 3 int count = 0; 4 whlie (n) { 5 if (n & 1) { 6 ...
分类:
其他好文 时间:
2015-06-12 17:08:59
阅读次数:
94