码迷,mamicode.com
首页 >  
搜索关键字:one    ( 27922个结果
ZOJ-3652-Maze(BFS)
Celica is a brave person and believer of a God in the bright side. He always fights against the monsters that endanger humans. One day, he is asked to go through a maze to do a important task. The ma...
分类:其他好文   时间:2014-10-27 00:36:52    阅读次数:268
A Tour of Go For
Go has only one looping construct, theforloop.The basicforloop looks as it does in C or Java, except that the( )are gone (they are not even optional) ...
分类:其他好文   时间:2014-10-27 00:09:59    阅读次数:240
《BI那点儿事》数据仓库建模:星型模式、雪片模式
数据仓库建模 — 星型模式Example of Star Schema数据仓库建模 — 雪片模式Example of Snowflake Schema节省存储空间一定程度上的范式星形 vs.雪花型Which one is better?长期以来的争论两种观点各有支持者争论在继续……目前看来,大部分更...
分类:其他好文   时间:2014-10-26 21:07:21    阅读次数:263
奥特曼打小怪兽
1 /** 2 * OUTMAN附 3 * 4 * @author 王启文 5 * 6 */ 7 public class One { 8 private String name; 9 private int hp;10 private int mp;11 ...
分类:其他好文   时间:2014-10-26 21:01:40    阅读次数:198
A Tour of Go Variables with initializers
A var declaration can include initializers, one per variable.If an initializer is present, the type can be omitted; the variable will take the type of...
分类:其他好文   时间:2014-10-26 20:59:53    阅读次数:168
(三)underscore.js框架Objects类API学习
keys_.keys(object)  Retrieve all the names of the object's properties. _.keys({one: 1, two: 2, three: 3}); => ["one", "two", "three"] values_.values(object)  Return all of the values of the obje...
分类:Windows程序   时间:2014-10-26 17:00:33    阅读次数:333
[Leetcode] Plus One
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:其他好文   时间:2014-10-26 16:58:18    阅读次数:134
【LeetCode】Longest Palindromic Substring 解题报告
DP、KMP什么的都太高大上了,自己想了个朴素的遍历方法。 【题目】 Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palin...
分类:其他好文   时间:2014-10-26 15:37:32    阅读次数:249
通过js控制html页面不能右键,复制等
//Method one//document.oncontextmenu=new Function('event.returnValue=false;'); document.oncontextmenu = function (e) { e = e || window.event; e.return...
分类:Web程序   时间:2014-10-26 13:05:37    阅读次数:138
LeetCose-Plus One
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:其他好文   时间:2014-10-26 11:35:14    阅读次数:142
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!