摘要:
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文
摘要:
http://blog.csdn.net/u012841209/article/details/71077598 阅读全文
摘要:
#include #define MaxSize 50 typedef struct{ char data[MaxSize]; int top; }SqStack; void InitStack(SqStack &S){ S.top = -1; } int StackEmpty(SqStack &S){ if(S.top == -1) ... 阅读全文
摘要:
近日在复习数据结构,看到栈的时候,发现1个元素进栈,有1种出栈顺序;2个元素进栈,有2种出栈顺序;3个元素进栈,有5种出栈顺序,那么一个很自然地问题就是n个元素进栈,共有多少种出栈顺序? 说来惭愧,以前学数据结构的时候竟然没有考虑过这个问题。最近在看动态规划,所以“子问题”这3个字一直在我脑中徘徊, 阅读全文
摘要:
1. 用c语言写20万条数据 2. mysql语句 load data infile "C:/ProgramData/MySQL/MySQL Server 5.7/Uploads/data.txt" into table products fields terminated by ',' enclo 阅读全文
摘要:
方法实现接口 接口实现类 xml文件配置 通知切面 @Pointcut("execution(** ArithmeticCalculator.*(..))") public void declareJointPointExpression(){ } //声明该方法是一个前置通知:在目标方法开始之前执 阅读全文
摘要:
1.静态代理 UserDao(接口) UserDaoImpl(实现类) LogProxy(代理类) main方法 2.动态代理 阅读全文
摘要:
1.多对一 客户和订单之间的关系(一个可与有多个订单) 使用 <many-to-one> 标签,进行关联。 阅读全文
摘要:
有Product , Book ,Clothes三张表 Product:id,name Book: id ,name,pageCount Clothes: id ,name ,size 创建三张表 Product.hlm.xml <mapping resource="com/amaker/exten 阅读全文