自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

nizen的专栏

学海无涯备忘录

  • 博客(4)
  • 资源 (5)
  • 收藏
  • 关注

转载 数据库范式小结

      构造数据库必须遵循一定的规则。在关系数据库中,这种规则就是范式。范式是符合某一种级别的关系模式的集合。关系数据库中的关系必须满足一定的要求,即满足不同的范式。目前关系数据库有六种范式:第一范式(1NF)、第二范式(2NF)、第三范式(3NF)、第四范式(4NF)、第五范式(5NF)和第六范式(6NF)。满足最低要求的范式是第一范式(1NF)。在第一范式的基础上进一步满足更多要求的称为第

2010-02-21 16:37:00 843

原创 servlet , filter小结

1.相关API1.1 Servletjavax.servlet.Servlet   接口      init(); service(); destroy();  getServletConfig();  getServletInfo(); javax.servlet.GenericServlet   抽象类      重写接口Servlet方法并完成多数方法     

2010-02-21 16:36:00 929

原创 Java Web 系统 小结

1.Deployment Descriptor 配置1.1Web.xml ServletConfig参数配置:配置地点:web-app->servlet->init-param配置项:param-name ,param-valuejava代码示例:getServletConfg().getInitParameter("adminEmail"); ServletCon

2010-02-14 23:02:00 1472

原创 HTTP Method小结(GET,POST.etc)

GET 从指定的url上获取内容 POST 提交body中的内容给服务器中指定的url中,属于非幂等的(non-idempotent)请求 HEAD 从指定的url上获取header内容(类似Get方式) TRACE Allows a programmer to see how the clients message is modified as it passes th

2010-02-14 21:31:00 27640

JAVA面试题解惑系列集锦

java语言面试题集锦,有书签,分类,十分好的复习资料,面试前必看

2009-08-10

Linux常用命令简明手册

Linux的常用命令的总结,短小精悍,适合平时打命令时速查。

2009-06-18

Ubuntu8.04速成手册

转自嘉骏苑http://luckiss.blogcn.com(文章整理&原创by:嘉骏 内容涉及ubuntu8.04的安装配置,系统管理,初级入门,手把手教你玩转ubuntu

2009-06-18

Data Structures and Algorithm Analysis in C

经典数据结构教材 This book describes data structures, methods of organizing large amounts of data, and algorithm analysis, the estimation of the running time of algorithms. As computers become faster and faster, the need for programs that can handle large amounts of input becomes more acute. Paradoxically, this requires more careful attention to efficiency, since inefficiencies in programs become most obvious when input sizes are large. By analyzing an algorithm before it is actually coded, students can decide if a particular solution will be feasible. For example, in this text students look at specific problems and see how careful implementations can reduce the time constraint for large amounts of data from 16 years to less than a second. Therefore, no algorithm or data structure is presented without an explanation of its running time. In some cases, minute details that affect the running time of the implementation are explored. Once a solution method is determined, a program must still be written. As computers have become more powerful, the problems they solve have become larger and more complex, thus requiring development of more intricate programs to solve the problems. The goal of this text is to teach students good programming and algorithm analysis skills simultaneously so that they can develop such programs with the maximum amount of efficiency. This book is suitable for either an advanced data structures (CS7) course or a first-year graduate course in algorithm analysis. Students should have some knowledge of intermediate programming, including such topics as pointers and recursion, and some background in discrete math.

2009-05-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除