Beginning Mac OS X Tiger bashboard widget development
第1章,老虎 Dashboard 和 widget
第2章,widget 基础
第3章,widget 开发环境
第4章,创建 widget
第5章,调试和测试
第6章,从widget平台取得之
第7章,widget 事件
第8章,添加widget 接口
第9章,为你的 wi...
分类:
其他好文 时间:
2014-10-20 13:35:32
阅读次数:
123
Longest Ordered SubsequenceTime Limit: 2000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:253364-bit integer IO format:%lld Jav...
分类:
其他好文 时间:
2014-10-20 11:28:21
阅读次数:
174
Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ...
分类:
其他好文 时间:
2014-10-20 07:33:59
阅读次数:
234
AC自动机的题,需要注意的,建立失配边的时候,如果结点1失配边连到的那个结点2,那个结点2是一个单词的结尾,那么这个结点1也需要标记成1(因为可以看成,这个结点包含了这个单词),之后在Trie树上进行行走,每次走到下一个可以走的结点。
14378527
11468
Substring
Accepted
C++
0.585
2014-...
分类:
其他好文 时间:
2014-10-19 20:02:42
阅读次数:
207
Language:
Default
Longest Ordered Subsequence
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 33986
Accepted: 14892
Description
A numeric sequence of a...
分类:
其他好文 时间:
2014-10-19 11:38:30
阅读次数:
249
1、当strs为空,直接输出“”2、当strs中含有“”,直接输出“”3、strs[0]的最长长度由最短公共长度l决定(code line:15) 1 class Solution: 2 # @return a string 3 def longestCommonPrefix(sel...
分类:
编程语言 时间:
2014-10-18 23:47:06
阅读次数:
270
Write a function to find the longest common prefix string amongst an array of strings. 分析: 对一组字符串找到最长公共前缀。 因为只是找前缀所以可以以第一个字符串为基础,按个字符与其它字符串比较,直到有字符串已经...
分类:
其他好文 时间:
2014-10-18 22:17:24
阅读次数:
186
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:
其他好文 时间:
2014-10-18 20:57:37
阅读次数:
229
字符串:.Length 字符串长度.TrimStart() 截去开头空格.TrimEnd() 截去结尾空格.Trim() 截去开头跟结尾的空格.ToUpper() 全部大写.ToLower() 全部小写.Substring(m,n) 从左边第m(m从0开始)个开始截取字符串,截取n个.Replace...
分类:
其他好文 时间:
2014-10-18 14:01:50
阅读次数:
202
http://dotnetawesome.blogspot.com/2014/06/how-to-create-treeview-with-database-data-mvc4-aspnet.htmlhttp://www.guyellisrocks.com/2009/08/aspnet-mvc-wi...
分类:
Web程序 时间:
2014-10-18 11:04:46
阅读次数:
168