作为应届毕业生,简历中应当包括的重点内容基本出现,层次比较清晰,且对自己从事过的实践工作内容进行了较详尽的描述,同时有意识地给出了通过实践自己得到的收获。但总体篇幅过长,部分内容的逻辑性和展现方式有待改进。撰写简历主要原则:1、在能够突出展现自己的工作履历、技能和优势的前提下,尽可能缩短篇幅(一页最...
分类:
其他 时间:
2014-06-04 19:11:49
收藏:
0 评论:
0 赞:
0 阅读:
422
修改IIS7的上传文件大小限制的方法:1、打开IIS管理器,并定位于想要修改限制的网站2、双击右侧窗口中的asp图标3、展开最下面那个“限制属性”,将最下面的“最大请求实体主体限制”右边属性框内修改成你想要的值(注意:单位为“字节”),如1g则修改为10737418244、点击窗口右上角的应用,关闭...
分类:
其他 时间:
2014-06-04 19:13:48
收藏:
0 评论:
0 赞:
0 阅读:
470
Given a sorted linked list, delete all
duplicates such that each element appear onlyonce.For
example,Given1->1->2, return1->2.Given1->1->2->3->3,
retu...
分类:
其他 时间:
2014-06-04 19:15:07
收藏:
0 评论:
0 赞:
0 阅读:
336
以前见过这题,没做出来,知道是离线处理,这次仔细想了下,首先把出现的高度都map离散化一下,以离散化出来的数目g建树,把每个位置都开俩个vector,一个存以这个位置为L的询问,一个存以这个位置为R的询问。然后从1-g
进行更新,假如当前i是以第j个区间的开始位置,那么这时就可以询问一下 2 #i....
分类:
其他 时间:
2014-06-04 19:17:35
收藏:
0 评论:
0 赞:
0 阅读:
397
Given a non-negative number represented as an
array of digits, plus one to the number.The digits are stored such that the most
significant digit is at...
分类:
其他 时间:
2014-06-04 19:15:39
收藏:
0 评论:
0 赞:
0 阅读:
333
Merge two sorted linked lists and return it as
a new list. The new list should be made by splicing together the nodes of the
first two lists./***Defin...
分类:
其他 时间:
2014-06-04 19:19:36
收藏:
0 评论:
0 赞:
0 阅读:
462
Given two binary strings, return their sum
(also a binary string).For example,a ="11"b
="1"Return"100".classSolution{public:stringaddBinary(stringa,st...
分类:
其他 时间:
2014-06-04 19:18:59
收藏:
0 评论:
0 赞:
0 阅读:
333
TLV是一种可变格式,意思就是:Type类型,
Lenght长度,Value值;Type和Length的长度固定,一般那是2、4个字节(这里统一采用4个字节);Value的长度有Length指定;编码方法:1.
将类型type用htonl转换为网络字节顺序,指针偏移+42. 将长度length用ht...
分类:
其他 时间:
2014-06-04 19:21:36
收藏:
0 评论:
0 赞:
0 阅读:
1079
恭喜,lanmp_wdcp
安装成功!lanmp_wdcp是一个集成nginx,apache,php,mysql等web应用环境
及wdcp管理系统的RPM安装包,比起编译包安装快速,简单,5分钟就可搞店 然后就可以通过wdcp后台管理服务器和网站,FTP,数据库等
使用方便,操作简单,安全,...
分类:
其他 时间:
2014-06-04 19:20:48
收藏:
0 评论:
0 赞:
0 阅读:
396
sql表username password字段User类有 id username
password等字段Service有一函数1 @Override2 3 public User findUser(String username) 4 {5
return userDao.findUser(...
分类:
其他 时间:
2014-06-04 19:23:28
收藏:
0 评论:
0 赞:
0 阅读:
588
Given an integern, generate a square matrix
filled with elements from 1 ton2in spiral order.For example,Givenn=3,You should
return the following matri...
分类:
其他 时间:
2014-06-04 19:24:38
收藏:
0 评论:
0 赞:
0 阅读:
430
闲来无事,把自己关于对dwr消息推送的实现过程描述一番。首先第一步,当然在工程中是加入dwr.jar了,接着在web.xml中配置以下代码
dwr-invoker org.directwebremoting.servlet.DwrServlet ...
分类:
其他 时间:
2014-06-04 19:24:05
收藏:
0 评论:
0 赞:
0 阅读:
462
Given an array of strings, return all groups of
strings that are anagrams.Note: All inputs will be in
lower-case.classSolution{public:vectoranagrams(v...
分类:
其他 时间:
2014-06-04 19:26:02
收藏:
0 评论:
0 赞:
0 阅读:
338
Find the contiguous subarray within an array
(containing at least one number) which has the largest sum.For example, given
the array[?2,1,?3,4,?1,2,1,...
分类:
其他 时间:
2014-06-04 19:26:39
收藏:
0 评论:
0 赞:
0 阅读:
477
Given an absolute path for a file (Unix-style),
simplify it.For example,path="/home/", =>"/home"path="/a/./b/../../c/",
=>"/c"click to show corner cas...
分类:
其他 时间:
2014-06-04 19:28:41
收藏:
0 评论:
0 赞:
0 阅读:
446
表驱动法是一种编程模式,从表里面查找信息而不是使用逻辑语句(if…else…switch),当是很简单的情况时,用逻辑语句很简单,但如果逻辑很复杂,再使用逻辑语句就很麻烦了。比如查找一年中每个月份的天数,如果用表驱动法,完全不需要写一堆if…else…语句,直接把每个月份的天数存到一个数组里就行了,...
分类:
其他 时间:
2014-06-04 19:28:04
收藏:
0 评论:
0 赞:
0 阅读:
573
The set[1,2,3,…,n]contains a total ofn! unique
permutations.By listing and labeling all of the permutations in order,We get the
following sequence (ie...
分类:
其他 时间:
2014-06-04 19:33:14
收藏:
0 评论:
0 赞:
0 阅读:
428
Follow up for "Unique Paths":Now consider if
some obstacles are added to the grids. How many unique paths would there be?An
obstacle and empty space i...
分类:
其他 时间:
2014-06-04 19:31:55
收藏:
0 评论:
0 赞:
0 阅读:
428
Implementint sqrt(int x).Compute and return the
square root
ofx.classSolution{public:intsqrt(intx){inti=0;intstep=1;while(step>0){while((i+step)>1);}r...
分类:
其他 时间:
2014-06-04 19:31:13
收藏:
0 评论:
0 赞:
0 阅读:
461
You are climbing a stair case. It takesnsteps
to reach to the top.Each time you can either climb 1 or 2 steps. In how many
distinct ways can you climb...
分类:
其他 时间:
2014-06-04 19:30:33
收藏:
0 评论:
0 赞:
0 阅读:
421