码迷,mamicode.com
首页 >  
搜索关键字:note    ( 7358个结果
一个简易的便签工具:探索窗体之间传值和传引用的方法
简单的便签工具:实现了基于文本的便签信息的浏览,删除,添加。可以查看时间,实时更新数据。这个便签工具完全基于面向对象的编程方式,首先定义Note类,然后使用NoteManager类进行便签的管理。其中的关键就是在NoteManager类中定义list泛型集合。原理上和ArrayList基本是一致的。...
分类:Windows程序   时间:2014-05-12 17:09:08    阅读次数:1093
[LeetCode] 在一堆字符串中找出包含相同字符的 group的较快方法,题 Anagrams
题目:Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.class Solution {public: vector ...
分类:其他好文   时间:2014-05-04 20:48:08    阅读次数:608
PHP 布尔类型
这是最简单的类型。boolean表达了真值,可以为TRUE或FALSE。Note:布尔类型是 PHP 4 引进的。语法要指定一个布尔值,使用关键字TRUE或FALSE。两个都不区分大小写。通常你用某些运算符返回boolean值,并将其传递给控制流程。 ";}//...因为可以使用下面这种简单的方式:...
分类:Web程序   时间:2014-05-04 11:52:36    阅读次数:468
python 内置数据类型
一、Dictionary 的介绍 dictionary 是python 的内置类型之一,它定义键和值之间一对一的关系 1.定义dictionary 2.修改dictionary NOTE: Dictionary 是无序的。当使用 dictionary 时,您需要知道:dictionary 的 key...
分类:编程语言   时间:2014-05-04 11:39:32    阅读次数:477
Leetcode:Subsets 求数组的所有子集
Given a set of distinct integers, S, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets. For exa...
分类:其他好文   时间:2014-05-03 15:47:53    阅读次数:289
leetcode: Subsets & Subsets II
SubsetsGiven a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must...
分类:其他好文   时间:2014-05-02 16:39:15    阅读次数:315
print函数用法
stdio:包含标准输入输出的信息。printf这个函数的具体使用可以man一下得到printf:formted output conversion 函数原型: note:这是一个不定参函数。 函数功能: stdin stdout s...
分类:其他好文   时间:2014-05-01 19:33:29    阅读次数:315
Subsets
Problem 1:Given a set of distinct integers, S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set ...
分类:其他好文   时间:2014-05-01 09:43:43    阅读次数:414
Leetcode:Minimum Path Sum 最小路径和
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. Note: You can only move either down or right at...
分类:其他好文   时间:2014-04-28 10:46:41    阅读次数:311
7358条   上一页 1 ... 733 734 735 736 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!