Problem Description
Given n integers.
You have two operations:
U A B: replace the Ath number by B. (index counting from 0)
Q A B: output the length of the longest consecutive increasing subseque...
分类:
其他好文 时间:
2015-03-17 23:39:04
阅读次数:
161
题目:输出1~N所有数字中,0~9出现的总次数。
分析:简单题。打表计算,查询输出即可。
说明:最近事情好多啊╮(╯▽╰)╭。
#include
#include
#include
#include
#include
#include
using namespace std;
int f[10000][10];
int main()
{
memset(f, 0, size...
分类:
其他好文 时间:
2015-03-17 20:14:49
阅读次数:
119
这里大概就只能生成两种类型的图:
序列图
流程图
序列图```sequence
A->B: 一句话证明你很寂寞。 神回复:
Note right of B: thinking
B->B: counting
B-->A: 这句话有一共六十九笔
```
Created with Raphaël 2.1.2AABB一句话证明你很寂寞。 神回复:thinkingcounting这句话有一共六十九笔序列图很简...
分类:
其他好文 时间:
2015-03-16 23:15:22
阅读次数:
208
本文来源于我个人的ARC学习笔记,旨在通过简明扼要的方式总结出iOS开发中ARC(Automatic Reference Counting,自动引用计数)内存管理技术的要点,所以不会涉及全部细节。这篇文章不是一篇标准的ARC使用教程,并假定读者已经对ARC有了一定了解和使用经验。详细的关于ARC的信...
分类:
移动开发 时间:
2015-03-12 11:21:46
阅读次数:
195
Counting number of enabled bits in uint32_t.. Here is a O(lg32) solution. Very smart, like bottom-up parallel tree post-order traversal.Solution from ...
分类:
其他好文 时间:
2015-03-12 06:22:18
阅读次数:
118
启动自动引用计数选项. 选择项目的属性文件 --》 搜索 automatic Reference --》 Objective-C Automatic Reference Counting --》 Yes ARC 和手动管理内存的区别。 ARC 并不是GC在运行中判断引用计数是否为0,从而清除内存。而...
分类:
其他好文 时间:
2015-03-11 23:24:52
阅读次数:
172
#include#includeconst int MAX=510;using namespace std;int n,m,le=0; //节点数,非叶子节点数,最深层叶层数vector child[MAX]; //存储孩子情况int number[MAX]; //...
分类:
其他好文 时间:
2015-03-10 16:49:01
阅读次数:
149
题目:一个01构成的图,求1的最大联通个数(相邻八个方向)。
分析:图论、搜索、floodfill。求解所有区域取最大即可。
说明:注意输出格式╮(╯▽╰)╭。
#include
#include
#include
using namespace std;
char maps[30][30],buf[30];
int dxy[8][2] = {1,-1,1,0,1,1,0,-1,...
分类:
其他好文 时间:
2015-03-10 00:11:24
阅读次数:
237
A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child.InputEach input file contains ...
分类:
其他好文 时间:
2015-03-08 01:25:46
阅读次数:
163
第二章
Big O notation 进阶课程
在这一章中,我们将会了解到算法的基础----Counting primitive operation,什么是primitive operation:
The following are all primitive operations:
1. Assigning a value to a variable
2. Calling ano...
分类:
其他好文 时间:
2015-03-07 15:48:27
阅读次数:
154