http://poj.org/problem?id=2763
Description
After their royal wedding, Jiajia and Wind hid away in XX Village, to enjoy their ordinary happy life. People in XX Village lived in beautiful huts. Th...
分类:
其他好文 时间:
2015-05-28 21:35:48
阅读次数:
182
头文件:
#pragma once
#include
#include
using namespace std;
template
class List;
// 结点类
template
class NodeList
{
friend class List;
public:
NodeList();
NodeList(Type d, NodeList *n = NU...
分类:
编程语言 时间:
2015-05-28 21:33:20
阅读次数:
194
Perl提供了另外一个“若A则B”的表示方法。可以在一般的if语句中加上修饰语,即把条件表达式放在后面,比如:some_statements if condition;以这个语句为例,若condition为真,则执行some_statements部分。这样的写法与下面的写法相同:if(condition){
some_statements;
}下面是一些类似的用法:expression unl...
分类:
其他好文 时间:
2015-05-28 21:35:55
阅读次数:
134
使用import和exec运行模块文件的异同实例代码#script1.py
import sysprint(sys.platform)
x = 'span'
print(x*8)在cmd中>>> import script1
win32
spanspanspanspanspanspanspanspan>>> exec(open('script1.py').read())
win32
spanspan...
分类:
其他好文 时间:
2015-05-28 21:33:06
阅读次数:
170
Description
The little cat is majoring in physics in the capital of Byterland. A piece of sad news comes to him these days: his mother is getting ill. Being worried about spending so much on railwa...
分类:
编程语言 时间:
2015-05-28 21:34:27
阅读次数:
141
Problem Description
Famous Harry Potter,who seemd to be a normal and poor boy,is actually a wizard.Everything changed when he had his birthday of ten years old.A huge man called 'Hagrid' found Harr...
分类:
其他好文 时间:
2015-05-28 21:33:59
阅读次数:
193
提要 重心座标插值在图形学领域有着很重要的应用,比如Ray Tracing算法的ray - triangle intersection 检测,比如有限元模拟中的模型简化等。一维情况 从最简单的开始,一个线段:如何表示p点的值?可以这样想,p总是在x1和x2之间徘徊,不知道如何选择,蓝色线段的长度t表示p对x2的喜爱程度,红色线段(1-t)表示对x1的喜爱程度。那么P点的值就可...
分类:
其他好文 时间:
2015-05-28 21:33:05
阅读次数:
270
Codeforces Round #305 (Div. 2), problem: (A) Mike and Fax...
分类:
其他好文 时间:
2015-05-28 21:33:17
阅读次数:
183
servlet可以算是JAVA Web项目的入门了,许多项目的运行原理基本上都可以由此做参照。如果servlet的项目开发能够达到熟能生巧的程度,相信这会对以后的SSH(Struts2、Spring、Hibernate),SpringMVC等项目框架的着手大有好处。...
分类:
其他好文 时间:
2015-05-28 21:34:45
阅读次数:
273
我们可以使用Matrix 来放缩我们得到的Bitmap 从而使我们的BItmap适应我们的手机屏幕
首先我们得先获取我们的手机屏幕的大小
WindowManager wm = (WindowManager) getContext().getSystemService(
Context.WINDOW_SERVICE);
int width = wm.getDefault...
分类:
移动开发 时间:
2015-05-28 21:33:23
阅读次数:
544
Cookie小案例:
1记住用户最后一次的访问时间
2记住用户登录时的用户名
// 1利用Cookie技术,记住用户上次访问的时间
public class ShowLastAccessTimeServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request,
HttpS...
分类:
其他好文 时间:
2015-05-28 21:33:02
阅读次数:
153
头文件:
#pragma once
#include
#include
using namespace std;
template
class List;
// 结点类
template
class NodeList
{
friend class List;
public:
NodeList();
NodeList(Type d, NodeList *n = NULL, ...
分类:
编程语言 时间:
2015-05-28 21:32:23
阅读次数:
186
流的大家族
流(stream)的概念:
源于UNIX中管道(pipe)的概念。在UNIX中,管道是一条不间断的字节流,用来实现程序或进程间的通信,或读写外围设备、外部文件等。
一个流,必有源端和目的端,它们可以是计算机内存的某些区域,也可以是磁盘文件,甚至可以是Internet上的某个URL。
流的方向是重要的,根据流的方向,流可分为两类:输入流...
分类:
编程语言 时间:
2015-05-28 21:31:23
阅读次数:
208
除了硬件,需要花钱的东西,我们不谈。今天来谈谈免费的,服务器端软件的优化,我们需要借助一些分析工具。
其中最好用的,要属Firefox自带的网站开发工具inspector,直接上图
优化前
我们注意Time是321秒的页面加载速度
优化后
Time在网页缓存的情况下仅用了2秒,而全新刷新也只用了16秒
演示网站
Simflie中国模拟飞行网...
分类:
Web程序 时间:
2015-05-28 21:33:20
阅读次数:
174
今年的软考刚刚进行完,趁着刚考完还有热乎劲,想把这些有关于软考的只是来总结一下。今天咱们来讨论下午题的做法。
软考分为上午题和下午题,上午题也就是75个选择题,属于基础只是这一块内容,而下午题则是5个答题,属于应用知识部分。上午题的做法,就是做题,然后分析,对于做过的题,要保证每一个选项都知道是什么情况,因为这次考试这个,下次就考试那个。而下午题呢,则需要一定的技巧。
...
分类:
其他好文 时间:
2015-05-28 21:32:58
阅读次数:
158
Regular Expression Matching
题目:
Implement regular expression matching with support for ‘.’ and ‘*’.
‘.’ Matches any single character.
‘*’ Matches zero or more of the preceding element.
Th...
分类:
其他好文 时间:
2015-05-28 21:31:52
阅读次数:
197
头文件:
#pragma once
#include
#include
using namespace std;
template
class SeqStack
{
public:
SeqStack(size_t sz = INIT_SZ);
~SeqStack();
public:
bool empty()const;
bool full()const;
...
分类:
编程语言 时间:
2015-05-28 21:30:58
阅读次数:
261