摘要:
Servlet复习 1.Servlet执行原理 1.tomcat接受客户端的请求,去web.xml解析URL路径,访问Servlet的资源路径 2.根据资源路径,和servlet name,找到servlet class 3.tomcat将全类名对应字节码加载进内存 Class.forName() 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文