题目
Given an array of strings, return all groups of strings that are anagrams.
Note: All inputs will be in lower-case.
方法
题目中是找出所有的字符串由相同的字符组成,只是顺序不同。
public List anagrams(St...
分类:
其他好文 时间:
2014-06-19 10:46:45
阅读次数:
207
Given an array where elements are sorted in
ascending order, convert it to a height balanced BST.递归,二分法。 1 /** 2 *
Definition for binary tree 3 * st.....
分类:
其他好文 时间:
2014-06-16 00:33:31
阅读次数:
252
示例中有详细注释,直接上代码:
#include
#include
using std::cout;
using std::endl;
using std::string;
int main(void){
string str1="hi,test,hello";
string str2="test";
//搜索子串,返回子串第一个字符的索引
cout << st...
分类:
编程语言 时间:
2014-06-15 16:19:55
阅读次数:
233
1 public class DiagramEditor extends
GraphicalEditorWithFlyoutPalette implements2 IPersistableEditor {首先是定义的一些变量: 1
public static final St...
分类:
其他好文 时间:
2014-06-13 19:58:55
阅读次数:
310
key_t ftok(const char *_pathname, int
_proj_id)key值的第31~24位为ftok()第二个参数的低8位;key值的第23~16位为ftok()第一个参数文件属性的st_dev成员的低8位;key值的第15~0位为ftok()第一个参数文件属性的st_i...
分类:
其他好文 时间:
2014-06-13 17:13:45
阅读次数:
324
最近把我的控件(ST_Curve
www.st-curve.cn)升级到了64位,2010编译,本来以为很简单的问题,结果折腾了两天(也有可能我多年没做过界面和vc相关的东西了吧),于是把我遇到的问题罗列一下,希望对需要的人有所帮助(验证的不是很充分,不保证百分之百正确)一:如果一个很老的工程(比如...
分类:
其他好文 时间:
2014-06-13 00:31:33
阅读次数:
193
一:什么是st_asio_wrapper它是一个c/s网络编程框架,基于对boost.asio的包装(最低在boost-1.49.0上调试过),目的是快速的构建一个c/s系统;二:st_asio_wrapper的特点效率高、跨平台、完全异步,当然这是从boost.asio继承而来;自动重连,数据透明...
分类:
移动开发 时间:
2014-06-12 23:43:31
阅读次数:
486
//Callback.h#ifndef __CALLBACK_H__#define
__CALLBACK_H__typedef void (*T_CallBack)(void *);typedef struct { T_CallBack cb;
void *obj;}ST_CallBa...
分类:
编程语言 时间:
2014-06-10 22:12:08
阅读次数:
295
vector split(const string& src, const
string& separator){vectordest;string str = src;string
substring;string::size_type start = 0, index;do{index = st...
分类:
其他好文 时间:
2014-06-10 20:35:36
阅读次数:
238
//Callback.h#ifndef __CALLBACK_H__#define
__CALLBACK_H__typedef void (*T_CallBack)(void *);typedef struct { T_CallBack cb;
void *obj;}ST_CallBa...
分类:
编程语言 时间:
2014-06-10 10:26:44
阅读次数:
298