摘要:
Question: Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.Analysis: 该问题是将输入的罗马数字的字符串转化为整数。 方... 阅读全文
摘要:
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping yo... 阅读全文
摘要:
Matlab取整函数有:fix, floor, ceil, round,具体应用方法如下:1. fix朝零方向取整,如fix(-1.3) = -1; fix(1.3) = 1;2. floor顾名思义,地板,就是朝负无穷的方向取整,如floor(-1.3) = -2; floor(1.3) = 1;... 阅读全文
摘要:
Question: 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 list... 阅读全文
摘要:
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... 阅读全文
摘要:
HQL(Hibernate Query Language)查询语言是完全面向对象的查询语言,它提供了更加面向对象的封装,可以理解如多态、继承和关联。 HQL的基本语法如下:select "对象.属性名"from "对象"where "过滤条件"group by "对象.属性名" having ... 阅读全文
摘要:
数据模型与领域模型的关系领域模型是一个分析模型,它帮助需求分析人员、用户认识现实业务的工具,描述的是业务中设计的试题及其相互之间的关系,它是需求分析的产物。领域模型是需求分析人员与用户交流的有力工具,是需求分析人员与用户共同理解的概念,是彼此间交流的语言。而数据模型是系统设计、实现的一部分,描述的是... 阅读全文
摘要:
ORM原理ORM(Object Relational Mapping)是对象到关系的映射,它的作用是在关系数据库和对象之间做一个自动映射,将数据库中的数据表映射成对象(持久化类),对关系型数据库以对象的形式进行操作。Hibernate中有3个重要的类:配置类(Configuration),会话工厂类... 阅读全文
摘要:
http://www.laomaotao.net/help/2011/1209/317.html 阅读全文
摘要:
http://blog.csdn.net/xiancaifu/article/details/7412736 阅读全文