简单的便签工具:实现了基于文本的便签信息的浏览,删除,添加。可以查看时间,实时更新数据。这个便签工具完全基于面向对象的编程方式,首先定义Note类,然后使用NoteManager类进行便签的管理。其中的关键就是在NoteManager类中定义list泛型集合。原理上和ArrayList基本是一致的。...
分类:
Windows程序 时间:
2014-05-12 17:09:08
阅读次数:
1093
题目: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
这是最简单的类型。boolean表达了真值,可以为TRUE或FALSE。Note:布尔类型是
PHP 4 引进的。语法要指定一个布尔值,使用关键字TRUE或FALSE。两个都不区分大小写。通常你用某些运算符返回boolean值,并将其传递给控制流程。
";}//...因为可以使用下面这种简单的方式:...
分类:
Web程序 时间:
2014-05-04 11:52:36
阅读次数:
468
一、Dictionary 的介绍 dictionary 是python
的内置类型之一,它定义键和值之间一对一的关系 1.定义dictionary 2.修改dictionary NOTE: Dictionary 是无序的。当使用
dictionary 时,您需要知道:dictionary 的 key...
分类:
编程语言 时间:
2014-05-04 11:39:32
阅读次数:
477
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
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
stdio:包含标准输入输出的信息。printf这个函数的具体使用可以man一下得到printf:formted
output conversion 函数原型: note:这是一个不定参函数。 函数功能: stdin stdout s...
分类:
其他好文 时间:
2014-05-01 19:33:29
阅读次数:
315
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
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