C - Lexicography
Time Limit:1000MS Memory Limit:131072KB 64bit IO Format:%lld
& %llu
Submit Status Practice CSU
1563
Description
An anagram of a string is any string that c...
分类:
其他好文 时间:
2015-04-20 01:52:44
阅读次数:
152
情况1:#ifdef _DEBUGvirtual void AssertValid() const; //assert(断言)valid(有效的,正确的)virtual void Dump(CDumpContext& dc) const; //存储上下文#endif 这两个函数是调试用的,第一个函数...
分类:
其他好文 时间:
2015-04-19 17:34:44
阅读次数:
163
思路:前后两个指针。又一次bug free!(但是速度慢。待我想想有什么更好解法么?或者是 判断可以优化?果真!判断isCharEqual(c1,c2)时,可以优化。不需要判断c1到底是大写还是小写)如下面。 bool isCharEqual(char c1, char c2){ ...
分类:
其他好文 时间:
2015-04-19 14:32:58
阅读次数:
111
这个解法告诉我们读题要精确,且例证了多维数组的重要性。# Sudoku [http://en.wikipedia.org/wiki/Sudoku]# A valid sudoku square satisfies these# two properties:# 1. Each column of.....
分类:
其他好文 时间:
2015-04-18 13:03:41
阅读次数:
124
环境:ubuntu14.04程序:docker1.6下载镜像报错:#dockerpullcentos:centos5PullingrepositorycentosFATA[0004]Gethttps://index.docker.io/v1/repositories/library/centos/p_w_picpaths:x509:certificatehasexpiredorisnotyetvalid这种错误,一般都是本地系统时间错误导致报..
分类:
其他好文 时间:
2015-04-17 18:29:07
阅读次数:
168
problem:
Given a binary tree, determine if it is a valid binary search tree (BST).
Assume a BST is defined as follows:
The left subtree of a node contains only nodes with keys less th...
分类:
其他好文 时间:
2015-04-17 18:28:13
阅读次数:
142
题目:Given a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", the long...
分类:
其他好文 时间:
2015-04-17 17:52:17
阅读次数:
118
真机调试时,build settings 里面Provisioning Profile的releases选Distribution证书会提示A valid provisioning profile for this executable was not found。使用发布证书进行编译,运行在真机上时会提示该信息Distribution 的profile是分Adhoc和App store两种,adh...
分类:
其他好文 时间:
2015-04-17 14:00:45
阅读次数:
96
题目:Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the corre...
分类:
其他好文 时间:
2015-04-17 13:33:47
阅读次数:
82
题意:画图案所的问题,给出一个3 × 3拨号盘中的几个数字作为活跃点,问由活跃点能组合多少种解锁方式,并输出它们。一个合法的解锁方式包含以下几点:一个方案中由一些点构成,每个点在按顺序触摸的时候都是第一次被触摸到,称这些点为活跃点。如果在连接A,B两点的时候经过了另外的点,那么这个点必须出现在序列中...
分类:
其他好文 时间:
2015-04-16 21:21:03
阅读次数:
114