节目:2013年英国达人秀表演者:来自匈牙利的Attraction舞团背景音乐:Read
All About It
分类:
其他好文 时间:
2014-05-21 23:05:46
阅读次数:
203
// mainViewController.m// 雪花//// Created by pg on
14-5-20.// Copyright (c) 2014年 mqd. All rights reserved.//#import
"mainViewController.h"@interface m...
分类:
其他好文 时间:
2014-05-21 19:40:03
阅读次数:
312
Reverse a linked list from positionmton. Do it
in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m=
2 andn= 4,return1->4->3->2->5->NULL.No...
分类:
其他好文 时间:
2014-05-21 19:08:08
阅读次数:
195
// mainViewController.m// 雪花//// Created by pg on
14-5-20.// Copyright (c) 2014年 mqd. All rights reserved.//#import
"mainViewController.h"//时钟刷新步长stat...
分类:
其他好文 时间:
2014-05-21 18:39:12
阅读次数:
243
Given a sorted linked list, delete all nodes
that have duplicate numbers, leaving onlydistinctnumbers from the original
list.For example,Given1->2->3-...
分类:
其他好文 时间:
2014-05-21 17:51:09
阅读次数:
190
想做一些简单的文件操作,用java太重量级,python是一个不错的选择。有一个需求是将一个文件夹中所有的文件的内容提取出来分别填入excel的一个单元格中,用os就可以对文件进行遍历,读文件信息import
os# Get the all files & directories in the sp...
分类:
编程语言 时间:
2014-05-21 14:23:27
阅读次数:
405
1.安装squid3
sudo apt-get install squid3
2,配置squid3
sudo cd /etc/squid3
sudo vim squid.conf
/http_access
N为向下查找 找到http_access deny all 把deny改成allow
3启动squid3
Sudo service squid3 start
关闭
S...
分类:
其他好文 时间:
2014-05-21 11:02:53
阅读次数:
270
Problem Description
A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the follow...
分类:
其他好文 时间:
2014-05-21 10:55:57
阅读次数:
325
Big Event in HDU
Problem Description
Nowadays, we all know that Computer College is the biggest department in HDU. But, maybe you don't know that Computer College had ever been split into Comp...
分类:
其他好文 时间:
2014-05-21 10:51:55
阅读次数:
300
Reverse a linked list from position m to n. Do it in-place and in one-pass.
For example:
Given 1->2->3->4->5->NULL, m = 2 and n =
4,
return 1->4->3->2->5->NULL.
Note:
Given m, n satisfy the fol...
分类:
其他好文 时间:
2014-05-21 07:18:02
阅读次数:
301