/** * ID: 24 * Name: Swap Nodes in Pairs * Data Structure: Linked List * Time Complexity: * Space Complexity: * Tag: LinkList * Difficult: Medium ...
分类:
其他好文 时间:
2015-04-14 07:10:45
阅读次数:
127
/** * ID: 92 * Name: Reverse Linked List * Data Structure: Linked List * Time Complexity: * Space Complexity: * Tag: LinkList * Difficult: Medium ...
分类:
其他好文 时间:
2015-04-14 07:04:18
阅读次数:
192
由于一篇blog写不完,这里是接着上一篇blog的。
写完了MVC中的View,写着我们需要考虑Control层了,他的任务是在后台利用多线程实现断点下载。
先看源码:
public class FileDownloader
{
/* TAG,便于调试 */
private static final String TAG = "FileDownloader";
/* 上下文 */
p...
分类:
移动开发 时间:
2015-04-13 23:04:44
阅读次数:
207
Andorid定时器封装类public class TimerUtil { private static final String TAG = "TimerUtil"; private static Handler mTimeHandler = null; priva...
分类:
移动开发 时间:
2015-04-13 18:35:26
阅读次数:
146
简单日志封装类:public final class CLog { public static final boolean DEBUG = true; private CLog() { } public static void d(String tag, String des...
分类:
移动开发 时间:
2015-04-13 18:30:57
阅读次数:
227
Android HTTP请求封装代码/** * This class is the Utils of other classes. */public class HttpUtil { /** 变量/常量说明 */ private static final String TAG ...
分类:
移动开发 时间:
2015-04-13 18:02:51
阅读次数:
243
STL 源码分析 # stl_iterator_base && stl_iterator #
这里能很清楚的看到各个基础类型的继承关系
template struct input_iterator {
typedef input_iterator_tag iterator_category;
typedef _Tp...
分类:
其他好文 时间:
2015-04-13 14:40:01
阅读次数:
138
ActionBarUtil用来给继承ActionBarActivity的Activity快速添加标题的工具类
工具类:
public class ActionBarUtil {
private static final String TAG = "ActionBarUtil";
/**
* 初始化ActionBar
*
* @par...
分类:
其他好文 时间:
2015-04-13 10:58:21
阅读次数:
131
/** * ID: 2 * Name: Add Two Numbers * Data Structure: Linked List * Time Complexity: * Space Complexity: * Tag: LinkList * Difficult: Medium * Pro...
分类:
其他好文 时间:
2015-04-13 06:54:00
阅读次数:
169
Linux压缩解压命令详细介绍(gizp、tag、zip、bzip2)...
分类:
系统相关 时间:
2015-04-12 19:24:05
阅读次数:
165