摘要: Servlet复习 1.Servlet执行原理 1.tomcat接受客户端的请求,去web.xml解析URL路径,访问Servlet的资源路径 2.根据资源路径,和servlet name,找到servlet class 3.tomcat将全类名对应字节码加载进内存 Class.forName() 阅读全文
posted @ 2020-01-23 18:52 SteveYu 阅读(164) 评论(0) 推荐(0) 编辑
摘要: There is a classical process named partition in the famous quick sort algorithm. In this process we typically choose one element as the pivot. Then th 阅读全文
posted @ 2020-01-23 12:34 SteveYu 阅读(146) 评论(0) 推荐(0) 编辑
摘要: A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only nodes 阅读全文
posted @ 2020-01-23 00:23 SteveYu 阅读(199) 评论(0) 推荐(0) 编辑