Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you shouldreturn the list as 2->1->4->3.
Your algorithm should use only constant space. You ma...
分类:
其他好文 时间:
2015-02-10 09:18:43
阅读次数:
143
# -*- coding:utf8 -*-from bs4 import BeautifulSoupimport os, sys, urllib2, urllibfrom multiprocessing.dummy import Pool as ThreadPoolurls = []def down...
分类:
编程语言 时间:
2015-02-09 20:14:15
阅读次数:
231
从这篇开始,这一系列主要分析在开源社区中,Erlang 相关pool 的管理和使用.在开源社区,Emysql 是Erlang 较为受欢迎的一个MySQL 驱动. Emysql 对pool 的管理和使用是非常典型的,pool 的管理角色中,主要有available(记录当前pool 中可供使用的成员)...
分类:
数据库 时间:
2015-02-09 19:57:06
阅读次数:
477
1. X264显式支持的一趟码率控制方法有:
ABR, CQP, CRF. 缺省方法是CRF
这三种方式的优先级是ABR > CQP > CRF.
if(bitrate) rc_method = ABR;
else if(qp || qp_constant) rc_method = CQP;
else rc_method = CRF;...
分类:
其他好文 时间:
2015-02-09 18:34:04
阅读次数:
210
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
push(x) – Push element x onto stack.
pop() – Removes the element on top of the stack.
top() –...
分类:
其他好文 时间:
2015-02-09 14:13:19
阅读次数:
157
Sort a linked list inO(nlogn) time using constant space complexity./** * Definition for singly-linked list. * struct ListNode { * int val; * L...
分类:
其他好文 时间:
2015-02-09 02:01:37
阅读次数:
212
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes...
分类:
其他好文 时间:
2015-02-09 00:43:38
阅读次数:
237
Error: Attribute value must be constant本文地址:http://blog.csdn.net/caroline_wendyAttribute value must be constant. 属性的值必须要是Constant. 如,在Annotation的接口中的值,但是字符串数组不能指定为Constant,Java中static final。只能把纯字符设置为C...
分类:
编程语言 时间:
2015-02-08 00:29:25
阅读次数:
352
第一,找到一个linux镜像地址。 如 http://mirrors.163.com/,这个网页上有如下链接第二,进入ubuntu目录。每一个源目录下都应该至少包含dists和pool两个目录,否则就是无效的源第三,进入dists目录可以看到有许多目录。ubuntu每六个月发行一个新版本。每一个版本...
分类:
系统相关 时间:
2015-02-07 21:39:11
阅读次数:
200
LPSTR LPCSTR LPWSTR LPCWSTR区别
LPSTR 一个32位的指向字符串的指针
LPCSTR 一个32位的指向字符串常量的指针
LPWSTR 一个32位的指向unicode字符串的指针
LPCWSTR 一个32位的指向unicode字符串常量的指针
前面的L代表LONG,P就是指针的意思,C就是constant的意思
W是wide的意思,STR...
分类:
其他好文 时间:
2015-02-06 15:00:28
阅读次数:
116