#include
using namespace std;
class Teacher
{
public:
Teacher(string nam,int ag,string add,string tel,string se,string ti):
name(nam),age(ag),addr(add),telnum(tel),sex(se),title...
分类:
其他好文 时间:
2014-05-15 14:41:33
阅读次数:
222
??
Add servlet-api.jar and jsp-api.jar from Tomcat 6.0 library to ecipse project....
分类:
编程语言 时间:
2014-05-15 11:21:43
阅读次数:
446
??
解决办法:加入相关类的 jar 包到你的 classpath (右键点击某个jar包--build path--config build path...---liberary---Add external jar library),此处加入 servelet-api.jar(此包在eclipse/plugins目录中可以找得到,其他类似的错误也用相同的方法解决) 到 classpath ,...
分类:
编程语言 时间:
2014-05-15 07:08:36
阅读次数:
313
鸡啄米上一节讲了静态文本框,本节要讲的编辑框(Edit Control)同样是一种很常用的控件,我们可以在编辑框中输入并编辑文本。在前面加法计算器的例子中已经演示了编辑框的基本应用。下面具体讲解编辑框的使用。
编辑框的通知消息
编辑框发生某些事件时会向父窗口发送通知消息。在对话框模板中的编辑框上点右键,选择“Add Event Handler”,为编辑框添加...
分类:
其他好文 时间:
2014-05-15 05:14:28
阅读次数:
782
【题目】
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Out...
分类:
其他好文 时间:
2014-05-15 05:13:49
阅读次数:
306
LeetCode-001 Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2...
分类:
其他好文 时间:
2014-05-15 04:34:50
阅读次数:
293
安排任务的问题。
思路:
因为分报告时间和实际执行任务时间,这里要做的就是尽量使得报告时间和实际执行任务的时间重合,并行,那么就可以减小总时间。
原题:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2829
0.012s的算法,达到网站最高纪录。
...
分类:
其他好文 时间:
2014-05-15 04:23:35
阅读次数:
269
JS日期控件http://www.my97.net/dp/demo/index.htmjquery
1.10 版本后,动态绑定事件 .live
无效,改成用.on了http://stackoverflow.com/questions/14354040/jquery-1-9-live-is-not-a...
分类:
编程语言 时间:
2014-05-14 13:39:41
阅读次数:
412
1 sbin/nginx -V 查看上次执行时用了哪些参数2
./configure—add-module=../module_name_dir3 make (别用 make install 否则会重新安装)4 把
./objs/nginx 复制到 ../sbin/nginx
分类:
其他好文 时间:
2014-05-14 13:36:38
阅读次数:
247
这几天测试确认系统的订单大库查询,发现查询很慢,但是都增加了相应的索引,但是依然很慢,查询经常请求超时,涉及的数据库是order-store的order-index表(目前是直接通过和数据库交互的方式去查询的,没有用到搜索引擎)。经过排查,发现是数据迁移,迁移进来了300多万的数据,拖慢了查询的速度...
分类:
数据库 时间:
2014-05-14 10:41:07
阅读次数:
362