演示从ViewController到TextViewController的顺序 单个viewcontroller的顺序如下: 2015-08-08 11:32:01.601 text[2593:63988] TextViewController loadView 2015-08-08 11:32:01.602 text[2593:63988] TextView...
分类:
移动开发 时间:
2015-08-08 12:12:24
阅读次数:
290
注释:Ctrl + K,然后左下角会提示“Ctrl + K已按下,等待第二个组合键”,然后再按Ctrl + C就可以整段的注释代码了 取消注释:Ctrl + K,然后左下角会出现相同的提示,然后按Ctrl + U Reference:?http://blog.c...
线性布局
线性布局是将放入其中的组件按照垂直(vertical)或者水平(horizontal)方向来布局,
也就是控制其中组件横向排列或者纵向排列。在线性布局中
每一行【针对垂直排列】或每一列【针对水平排列】只能放一个组件
。
注意:Android线性布局不会换行,当组件一个挨着一个排列到窗体边缘后
剩下的组件将不会显示出来
排列方式由android:orientation...
分类:
移动开发 时间:
2015-08-08 12:13:11
阅读次数:
488
题目链接 :http://acm.hdu.edu.cn/showproblem.php?pid=1394
暴力(Time:453ms)
#include
#define MAXN 5005
int a[MAXN];
int main()
{
int n,i,j;
while(~scanf("%d",&n))
{
int ans=0x3...
分类:
其他好文 时间:
2015-08-08 12:13:07
阅读次数:
155
Light Bulb
Time Limit: 1 Second
Memory Limit: 32768 KB
Compared to wildleopard's wealthiness, his brother mildleopard is rather poor. His house is narrow and he has only one light bulb i...
分类:
其他好文 时间:
2015-08-08 12:13:18
阅读次数:
166
题目:在一个字符串(1。
思路:简单的哈希问题,char占一个字节,8位,最多表示256种字符。时间复杂度O(n),空间复杂度O(1),因为hash数组大小为常数256。只需要遍历一次字符串,然后遍历一次hash数组即可。
我的代码如下:
class Solution {
public:
int FirstNotRepeatingChar(string str...
分类:
其他好文 时间:
2015-08-08 12:12:35
阅读次数:
158
hdu 1394 的传送门Problem Description
The inversion number of a given number sequence a1, a2, …, an is the number of pairs (ai, aj) that satisfy i aj.For a given sequence of numbers a1, a2, …,...
分类:
其他好文 时间:
2015-08-08 12:10:17
阅读次数:
130
C++编程思想:对象+消息
C编程思想:数据结构+算法
一、封装(类)
1、访问控制
2、成员函数
3、运算符重载
二、继承
1、基类、派生类
2、继承种类:单继承、多继承
3、派生类的访问控制
(1)公有继承
赋值兼容
a、派生类的对象可以赋值给基类
b、派生类的对象可以赋值给基类的...
分类:
编程语言 时间:
2015-08-08 12:10:35
阅读次数:
128
Trie树简介:又称字典树、前缀树、单词查找树或键树,是一种用于快速检索的树形结构,是一种哈希树的变种
用途:
1、字符串检索:实现将一些字符串的有关信息保存到trie树中,查找另外一些字符串是否出现过或者出现的频率
2、前缀匹配:匹配前缀
3、排序:tire树是一颗多叉树,只需先序遍历整棵树,输出相应的字符串便是按字典序排序的结果
4、作为其他数据结构和算法的辅助结构:ac自动机、后缀...
分类:
其他好文 时间:
2015-08-08 12:10:46
阅读次数:
273
Problem Description
There are n soda
conveniently labeled by 1,2,…,n.
beta, their best friends, wants to invite some soda to go hiking. The i-th
soda will go hiking if the total number of sod...
分类:
其他好文 时间:
2015-08-08 12:10:46
阅读次数:
127
Given an array of n positive integers and a positive integer s, find the minimal length of a subarray of which the sum ≥ s. If there isn't one, return
0 instead.
For example, given the array [2,3...
分类:
其他好文 时间:
2015-08-08 12:11:52
阅读次数:
168
使用sql server 导入平面文件源数据时,报错:错误 0xc02020a1: 错误 0xc020902a: 错误 0xc02020c5;错误 0xc0047022: 返回状态值 4 和状态文本“文本被截断,或者一个或多个字符在目标代码页中没有匹配项。...
分类:
数据库 时间:
2015-08-08 12:11:59
阅读次数:
21962
豆瓣Redis解决方案Codis源码剖析:Dashboard1.不只是Dashboard虽然名字叫Dashboard,但它在Codis中的作用却不可小觑。它不仅仅是Dashboard管理页面,更重要的是,它负责监控和指挥各个Proxy的负载均衡(数据分布和迁移)。并且,所有API都以RESTFul接口的形式对外提供,供Proxy和codis-config(Codis的命令行工具)调用。下面就来看一下...
分类:
其他好文 时间:
2015-08-08 12:11:59
阅读次数:
250
美素数
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)
Total Submission(s): 4482 Accepted Submission(s): 1524
Problem Description
小明对数的研究比较热爱,一谈到数,脑子里...
分类:
其他好文 时间:
2015-08-08 12:11:49
阅读次数:
157
iptables常用命令
常用命令列表:
命令 -A, --append
范例 iptables -A INPUT ...
说明 新增规则到某个规则炼中,该规则将会成为规则炼中的最后一条规则。
命令 -D, --delete
范例 iptables -D INPUT --dport 80 -j DROP
iptables -D INPUT 1
说明 从某个规则炼中删除一条...
分类:
移动开发 时间:
2015-08-08 12:09:10
阅读次数:
225
高效率的文件复制的Java代码
源代码下载地址:http://www.zuidaima.com/share/1593989887085568.htm...
分类:
编程语言 时间:
2015-08-08 12:08:10
阅读次数:
149
(http://img.blog.csdn.net/20150808103801391)//
// MainViewController.m
// UI08_UITableView
//
// Created by dllo on 15/8/7.
// Copyright (c) 2015年 zhozhicheng. All rights reserved.
//#import "MainV...
分类:
移动开发 时间:
2015-08-08 12:10:49
阅读次数:
187