码迷,mamicode.com
首页 >  
搜索关键字:strings    ( 3278个结果
js的prototype扩展的一个例子,模仿C#的StringBuilder功能,数组组合字符串,效率大于+拼凑
function StringBuilder() { this._strings_ = new Array;}StringBuilder.prototype.append = function (str) { this._strings_.push(str);};StringBuilde...
分类:Web程序   时间:2014-07-07 00:46:42    阅读次数:248
Leetcode Anagrams
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.题目的意思是:给出一组字符串,按组返回拥有相同变位词的字符串解题思路是: ...
分类:其他好文   时间:2014-07-06 17:47:10    阅读次数:210
poj 2406 Power Strings(KMP&思维)
Power Strings Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 31093   Accepted: 12974 Description Given two strings a and b we define a*b to be their concate...
分类:其他好文   时间:2014-07-06 00:33:22    阅读次数:253
UITextView的一些技巧
1.在指定位置插入字符串:NSMutableString *TextViewStr=[[NSMutableString alloc] initWithString:TextView.text];[TextViewStr insertString:@"your strings" atIndex:Tex...
分类:其他好文   时间:2014-07-05 21:55:24    阅读次数:178
CTCI 1.3
Description: Given two strings, write a method to decide if one is a permutation of the other.We could use the same idea from CTCI 1.1. The only diffe...
分类:其他好文   时间:2014-07-05 21:43:01    阅读次数:231
Leetcode Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.class Solution {public: string longestCommonPrefix(vector &st...
分类:其他好文   时间:2014-07-05 18:36:22    阅读次数:209
PowerManager使用实例1(下)
文件2layout\main.xml: 文件3values\strings.xml: Hello World, MainActivity! PowerMangerSample acquire PARTIAL_WAKE_LOCK release PARTIAL_WAKE_LOCK ...
分类:其他好文   时间:2014-07-03 10:52:43    阅读次数:135
Effective Item 3 - 避免不必要的对象
通常,我们更喜欢重用一个对象而不是重新创建一个。如果对象是不可变的,它就始终可以被重用。下面是一个反面例子,JoshuaBloch明确指出[DON‘TTOTHIS]:Strings=newString("stringette");该语句每次执行时都创建一个新的实例。String构造器中的参数"stringette"本身是一个实例..
分类:其他好文   时间:2014-07-02 15:33:43    阅读次数:231
每日算法之三十八:Anagrams
Given an array of strings, return all groups of strings that are anagrams. Note: All inputs will be in lower-case. 回文字符串是指: 两个字符串的字符个数完全相同,这两个字符串是Anagrams。因此Anagrams至少指俩字符串。找出字符集合中的Anagrams组。...
分类:其他好文   时间:2014-07-01 08:42:11    阅读次数:250
Longest Palindromic Substring
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:其他好文   时间:2014-06-30 22:43:45    阅读次数:294
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!