看了一个暑假的linux,感觉很辛苦啊,想要用好linux真心不容易。。。
今天装了一下鸟哥课后给的xpenguins软件,就是桌面特性软件,会有很多企鹅下落,本以为可以很轻松的搞定,没想到问题多多啊。
我的环境:ubuntu 12.04 LTS
1. 首先下载个企鹅 download: http://xpenguins.seul.org/xpenguins-2.2.tar.gz
...
分类:
其他好文 时间:
2014-08-11 00:24:51
阅读次数:
161
Problem Description
TIANKENG manages a restaurant after graduating from ZCMU, and tens of thousands of customers come to have meal because of its delicious dishes. Today n groups of customers come to...
分类:
其他好文 时间:
2014-08-11 00:24:41
阅读次数:
248
有个excle表格需要做一些过滤然后写入数据库中,但是日期类型的cell取出来是个数字,于是查询了下解决的办法。
基本的代码结构
data = xlrd.open_workbook(EXCEL_PATH)
table = data.sheet_by_index(0)
lines = table.nrows
cols = table.ncols
print u'The total lin...
分类:
编程语言 时间:
2014-08-11 00:24:31
阅读次数:
204
1078. Hashing (25)
时间限制
100 ms
内存限制
32000 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue
The task of this problem is simple: insert a seq...
分类:
其他好文 时间:
2014-08-11 00:24:21
阅读次数:
206
A RemoteViews object (and, consequently, an App Widget) can support the following layout classes:
FrameLayoutLinearLayoutRelativeLayout
And the following widget classes:
AnalogClockButtonChro...
分类:
移动开发 时间:
2014-08-11 00:24:11
阅读次数:
494
vdceye onvif manager 软件架构图...
分类:
其他好文 时间:
2014-08-11 00:24:01
阅读次数:
242
Miaomiao's Geometry
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 191 Accepted Submission(s): 38
Problem Description
There are...
分类:
其他好文 时间:
2014-08-11 00:23:51
阅读次数:
217
题目链接:hdu 4932 Miaomiao's Geometry
题目大意:在x坐标上又若干个点,现在要用若干条相等长度的线段覆盖这些点,若一个点被一条线段覆盖,则必须在这条线的左端点或者是右端点,并且各个线段放的位置不能又重叠,求最大长度。
解题思路:这题有坑点,比赛的时候o(n)的算法去寻找两点之间最短距离。但起始这样是不行的,比如-1 0 10 12 18 20,这样维护过去的...
分类:
其他好文 时间:
2014-08-11 00:23:31
阅读次数:
248
#include
using namespace std;
int main()
{
int a=5,b=10,d=20;
int * const c=&a;
*c=a;
cout<<c<<"-------"<<*c<<endl;
*c=b;
cout<<c<<"-------"<<*c<<endl;
return 0;
}
输出:(在...
分类:
其他好文 时间:
2014-08-11 00:23:21
阅读次数:
214
1082. Read Number in Chinese (25)
时间限制
400 ms
内存限制
32000 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue
Given an integer with no more than ...
分类:
其他好文 时间:
2014-08-11 00:23:11
阅读次数:
256
虚拟机linux与widows主机的进行文件共享
方法一:使用虚拟机的共享文件夹功能
使用vmware(vmware workstation 5)下shared folders功能实现vmware中host与ghost间文件传输,无需任何网络相关设置,不使用任何网络协议,host和ghost可以是linux和windows操作系统,这里只介绍host是windows,ghost是linux下的设置,如果ghost是windows,请参考vmware帮助中setting up shared folder...
http://acm.hdu.edu.cn/showproblem.php?pid=3221
一晚上搞出来这么一道题。。Mark。
给出这么一个程序,问funny函数调用了多少次。
我们定义数组为所求:f[1] = a,f[2] = b, f[3] = f[2]*f[3]......f[n] = f[n-1]*f[n-2]。对应的值表示也可为a^1*b^0%p,a^0*b^1...
分类:
其他好文 时间:
2014-08-11 00:22:51
阅读次数:
268
一、前言
老规矩,别的不说,这demo是找了很相关知识集合而成的,可以说对我这种小白来说是绞尽脑汁!程序员讲的是无图无真相!现在大家一睹为快!
二、比较关键的还是scroller这个类的
package com.icq.slideview.view;
import android.content.Context;
import android.util.AttributeSet;...
分类:
移动开发 时间:
2014-08-11 00:22:41
阅读次数:
303
HDU 4931 Happy Three Friends
题目链接
题意:6个数字,一个取两个,妹子取三个,问最后谁会赢
思路:排个序,判断前两个和3 - 5个的和谁更大即可
代码:
#include
#include
#include
#include
using namespace std;
int t, a[6];
int main() {
...
分类:
移动开发 时间:
2014-08-11 00:22:31
阅读次数:
351
一、需求分析
使用Spring Batch对CSV文件进行读写操作: 读取一个含有四个字段的CSV文件(id, name, age, score),
对文件做简单的处理, 然后输出到另一个csv文件中.
二、代码实现
1. 代码结构图:
JobLaunch: 启动Job
CsvItemProcessor: 对Reader数据进行...
分类:
编程语言 时间:
2014-08-11 00:22:21
阅读次数:
242
HDU 4932 Miaomiao's Geometry
题目链接
题意:给定x轴上一些点(不重复),现在要选一个线段,使得能放进这些区间中,保证线段不跨过点(即线段上只能是最左边或最右边是点),并且没有线段相交,求能放进去的最大线段
思路:推理一下,只有两点之间的线段,还有线段的一半可能符合题意,然后对于每种线段,去判断一下能不能成功放进去,这步用贪心,优先放左边,不行再放右边...
分类:
其他好文 时间:
2014-08-11 00:22:11
阅读次数:
247
解题报告
题意:
求逆序数。
思路:
线段树离散化处理。
#include
#include
#include
#include
#define LL long long
using namespace std;
LL sum[2001000],num[501000],_hash[501000];
void push_up(int rt)
{
sum[rt]=sum[rt...
分类:
其他好文 时间:
2014-08-11 00:22:01
阅读次数:
255