码迷,mamicode.com
首页 > 2015年02月09日 > 全部分享
leetcode[87]Scramble String
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
mvc url路由参数的加密和解密
查看某个信息的时候一般会在url上加上该信息在数据库中对应的主键id(而且一般是自增的)url是这样子的 xxxDetail/1 , 虽然对于我们开发人员来说可以这种显式的数据库主键会方便调试过程,但是这种url的安全性比较低所以想将这类id给加密了, 当然也不想在需要此处理的地方 添加上加密或.....
分类:Web程序   时间:2015-02-09 15:32:29    阅读次数:177
leetcode[64]Minimum Path Sum
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接口函数之 :zmq_tcp – 使用TCP协议的ØMQ网络单播协议
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
javascript——创建对象3
js01_hello
分类:编程语言   时间:2015-02-09 15:32:50    阅读次数:123
自制Unity小游戏TankHero-2D(4)关卡+小地图图标+碰撞条件分析
本篇主要记录关卡解析器、小地图图标和对碰撞的原理的探索,需要耐心分析。在一个关卡里,敌方坦克应该是一波一波地出现,每波敌人出现多少个,每个敌人是什么类型的坦克、出现在什么位置都应该是可配置的。小地图上显示的坦克很不清晰,如果能显示出一个鲜艳的三角形就好了。我用精心设计的试验分析出了碰撞的产生条件。
分类:编程语言   时间:2015-02-09 15:32:36    阅读次数:262
leetcode[67]Add Binary
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获取地址栏参数的方法(超级简单)
用JS获取地址栏参数的方法(超级简单)方法一:采用正则表达式获取地址栏参数:(强烈推荐,既实用又方便!)functionGetQueryString(name){varreg = newRegExp("(^|&)"+ name +"=([^&]*)(&|$)");varr = window.loca...
分类:Web程序   时间:2015-02-09 15:29:50    阅读次数:106
ZOJ 1315【Excuses, Excuses!】------2015年2月9日
一:题目大意输入数据m,n,其中m是代表关键字的个数(每个关键字是一个字符串(但无空格)),n表示接口的数目,每一个借口由可有空格的字符串组成。现在需要对所有的接口进行扫描,找出含有关键字最多的借口并输出(若有多个都输出且不需要注意顺序)。二:题目分析本题算法难度并不大,但关键是处理字符串的技巧。详...
分类:其他好文   时间:2015-02-09 15:31:42    阅读次数:100
《CSS那些事儿》读书笔记
注:此书出版于2009年,所以有些知识...你懂得。有些我熟悉的知识点,就没有记录下来了,所以想了解更多的细节,还是去看下此书吧。暗灰色标记部分,是我自己的理解,有不对或要补充的地方,还请大家多多指教。代码演示我统一放到了jsfiddle上,国内访问速度稍慢些,大家耐心点。或是大家知道国内有类似的在...
分类:Web程序   时间:2015-02-09 15:31:11    阅读次数:116
03-3. Tree Traversals Again (PAT)
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
cocos2dx3.4 分割plist图片
如果想要修改一个plist文件新打包成plist,而此刻原来的小图都找不到了,那只能把plist分解了,代码如下:void UiManage::DecodePlist(string imgPath,string plistPath){ FileUtils *pFileUtil=FileUtil...
分类:其他好文   时间:2015-02-09 15:31:35    阅读次数:404
leetcode[86]Partition List
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
leetcode[57]Insert Interval
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
leetcode[65]Valid Number
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
leetcode[85]Maximal Rectangle
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
.net面试题
1.简述private、protected、public、internal修饰符的访问权限。答. private :私有成员,在类的内部才可以访问。protected :保护成员,该类内部和继承类中可以访问。public :公共成员,完全公开,没有访问限制。internal:在同一命名空间内可以访问...
分类:Web程序   时间:2015-02-09 15:30:45    阅读次数:159
1780条   上一页 1 ... 59 60 61 62 63 64 65 ... 105 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!