Given a strings1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible representation...
分类:
其他好文 时间:
2015-02-09 15:31:37
阅读次数:
149
查看某个信息的时候一般会在url上加上该信息在数据库中对应的主键id(而且一般是自增的)url是这样子的 xxxDetail/1 , 虽然对于我们开发人员来说可以这种显式的数据库主键会方便调试过程,但是这种url的安全性比较低所以想将这类id给加密了, 当然也不想在需要此处理的地方 添加上加密或.....
分类:
Web程序 时间:
2015-02-09 15:32:29
阅读次数:
177
Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along its path.Note:Yo...
分类:
其他好文 时间:
2015-02-09 15:33:25
阅读次数:
165
ZeroMQ 官方地址 :http://api.zeromq.org/4-1:zmq-tcpzmq_tcp(7) ØMQ Manual - ØMQ/4.1.0Namezmq_tcp – 使用TCP协议的ØMQ网络单播协议SynopsisTCP是一个应用广泛、可靠、单播的传输协议。当在一个网络中使用Z...
分类:
其他好文 时间:
2015-02-09 15:33:48
阅读次数:
597
js01_hello
分类:
编程语言 时间:
2015-02-09 15:32:50
阅读次数:
123
本篇主要记录关卡解析器、小地图图标和对碰撞的原理的探索,需要耐心分析。在一个关卡里,敌方坦克应该是一波一波地出现,每波敌人出现多少个,每个敌人是什么类型的坦克、出现在什么位置都应该是可配置的。小地图上显示的坦克很不清晰,如果能显示出一个鲜艳的三角形就好了。我用精心设计的试验分析出了碰撞的产生条件。
分类:
编程语言 时间:
2015-02-09 15:32:36
阅读次数:
262
Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100".class Solution {public:string addBinary(string ...
分类:
其他好文 时间:
2015-02-09 15:32:50
阅读次数:
127
用JS获取地址栏参数的方法(超级简单)方法一:采用正则表达式获取地址栏参数:(强烈推荐,既实用又方便!)functionGetQueryString(name){varreg = newRegExp("(^|&)"+ name +"=([^&]*)(&|$)");varr = window.loca...
分类:
Web程序 时间:
2015-02-09 15:29:50
阅读次数:
106
一:题目大意输入数据m,n,其中m是代表关键字的个数(每个关键字是一个字符串(但无空格)),n表示接口的数目,每一个借口由可有空格的字符串组成。现在需要对所有的接口进行扫描,找出含有关键字最多的借口并输出(若有多个都输出且不需要注意顺序)。二:题目分析本题算法难度并不大,但关键是处理字符串的技巧。详...
分类:
其他好文 时间:
2015-02-09 15:31:42
阅读次数:
100
注:此书出版于2009年,所以有些知识...你懂得。有些我熟悉的知识点,就没有记录下来了,所以想了解更多的细节,还是去看下此书吧。暗灰色标记部分,是我自己的理解,有不对或要补充的地方,还请大家多多指教。代码演示我统一放到了jsfiddle上,国内访问速度稍慢些,大家耐心点。或是大家知道国内有类似的在...
分类:
Web程序 时间:
2015-02-09 15:31:11
阅读次数:
116
An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the...
分类:
其他好文 时间:
2015-02-09 15:30:01
阅读次数:
124
如果想要修改一个plist文件新打包成plist,而此刻原来的小图都找不到了,那只能把plist分解了,代码如下:void UiManage::DecodePlist(string imgPath,string plistPath){ FileUtils *pFileUtil=FileUtil...
分类:
其他好文 时间:
2015-02-09 15:31:35
阅读次数:
404
Given a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should preserve the origi...
分类:
其他好文 时间:
2015-02-09 15:31:55
阅读次数:
161
Given a set ofnon-overlappingintervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially...
分类:
其他好文 时间:
2015-02-09 15:29:45
阅读次数:
161
Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:
其他好文 时间:
2015-02-09 15:30:36
阅读次数:
112
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.class Solution {public:int larges...
分类:
其他好文 时间:
2015-02-09 15:29:48
阅读次数:
125
1.简述private、protected、public、internal修饰符的访问权限。答. private :私有成员,在类的内部才可以访问。protected :保护成员,该类内部和继承类中可以访问。public :公共成员,完全公开,没有访问限制。internal:在同一命名空间内可以访问...
分类:
Web程序 时间:
2015-02-09 15:30:45
阅读次数:
159