码迷,mamicode.com
首页 >  
搜索关键字:note    ( 7358个结果
Anagrams
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.思路:对每个string进行排序,并使用map记录排序之后值相同的stri...
分类:其他好文   时间:2014-08-27 14:39:37    阅读次数:147
【note】stm32 keilMDK出现warning: function XX declared implicitly
warning: #223-D: function "CLR_TX_DATA" declared implicitly   解决方法。   以上面错误提示为例:    1  找到定义函数 CLR_TX_DATA() 的源文件 ,这里假设在 a.c  中;     2  在 a.h 中最后声明一下 CLR_TX_DATA(),即添加(假设此函数无返回值无参数)        ...
分类:其他好文   时间:2014-08-26 15:32:46    阅读次数:2067
ansible note
[root@localhost ansible]# tree -hp.├── [-rw-r--r-- 7.0K] ansible.cfg├── [-rw-r--r-- 1.2K] hosts├── [drwxr-xr-x 4.0K] playbook│ └── [-rw-r--r-- 424...
分类:其他好文   时间:2014-08-26 15:05:16    阅读次数:169
JAVA编程思想(4) - 多态(一)
多态 在面向对象的程序设计语言中,多态是继数据抽象和继承之后的第三种基本类型。多态通过分离做什么和怎么做,从另一个角度将接口和实现分离开来。多态不但能够改善代码的组织结构和可读性,还能够创建可扩展程序。 再论向上转型 代码 //: polymorphism/music/Note.java // Notes to play on musical instruments. pack...
分类:编程语言   时间:2014-08-26 00:35:15    阅读次数:389
projecteuler---->problem=34----Digit factorials
Problem 34 145 is a curious number, as 1! + 4! + 5! = 1 + 24 + 120 = 145. Find the sum of all numbers which are equal to the sum of the factorial of their digits. Note: as 1! = 1 and 2! = 2 are...
分类:其他好文   时间:2014-08-25 11:59:14    阅读次数:243
Pro ASP.NET MVC 4, 4th edition Reading note---Part(1) DI
What I learned from Pro ASP.NET MVC 4 bookOpen source of Asp.net MVChttp://www.opensource.org/licenses/ms-pl.html1. Introduce new trends of web develo...
分类:Web程序   时间:2014-08-25 11:47:44    阅读次数:214
C# GMap.Net 计算多边形面积
Cédric Bignon :Let's note Points the points of the polygon (where Points[0] == Points[Points.Count - 1] to close the polygon).The idea behind the next...
分类:Web程序   时间:2014-08-25 11:29:04    阅读次数:1396
php preg正则表达式
Note:反斜线在单引号字符串和双引号字符串中都有特殊含义,因此要匹配一个反斜线, 模式中必须写为 ”\\\\”。 译注: “/\\/”, 首先它作为字符串,反斜线会进行转义, 那么转义后的结果是/\/,这个才是正则表达式引擎拿到的模式, 而正则表达式引擎也认为 \ 是转义标记,它会将分隔符 / 进...
分类:Web程序   时间:2014-08-24 00:14:51    阅读次数:228
LeetCode——4Sum
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target. Note: Element...
分类:其他好文   时间:2014-08-23 16:49:21    阅读次数:166
LeetCode——3Sum
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: Elements in a triplet (a,b,c...
分类:其他好文   时间:2014-08-23 15:24:41    阅读次数:153
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!