Servlet 一. servlet概述 servlet是sun公司提供的用于开发动态web资源的技术,按照servlet的规范开发的servlet可以放在servlet容器中运行。 开发servlet步骤: 写一个类实现servlet接口,实现其中的方法。 在web.xml中为servlet配置对 ...
分类:
其他好文 时间:
2020-06-30 22:57:00
阅读次数:
91
###js运动函数封装 ####html代码 <body> <div id="box"></div> </body> ####js代码如下 var obox = document.getElementById("box"); document.onclick = function(){ move(o ...
分类:
移动开发 时间:
2020-06-29 20:14:56
阅读次数:
65
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p ...
分类:
其他好文 时间:
2020-06-29 20:01:24
阅读次数:
82
Students are asked to stand in non-decreasing order of heights for an annual photo. Return the minimum number of students that must move in order for ...
分类:
其他好文 时间:
2020-06-29 15:25:43
阅读次数:
59
倒数平方根速算法 平方根倒数速算法(Fast inverse square root),经常和一个十六进制的常量 0x5f3759df联系起来。该算法大概由上个世纪90年代的硅图公司开发出来,后来出现在John Carmark的Quake III Arena的源码中。 源码: float Q_rsq ...
分类:
编程语言 时间:
2020-06-29 13:14:45
阅读次数:
56
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
分类:
其他好文 时间:
2020-06-29 00:18:05
阅读次数:
56
组合模式以及HashMap的设计分析(不包括具体实现,只讲述了HashMap应用到组合模式的场景,之后会单独再写一个JAVA集合类的具体实现专题) ...
分类:
其他好文 时间:
2020-06-28 15:26:46
阅读次数:
62
#-*- codeing = utf-8 -*- #@Time : 2020/6/7 17:51 #@Author : zhangfudong #@FILE :file.py #@Software : PyCharm file 文件操作 文件就是把一些数据存放起来,可以让程序下一次执行的时候直接使用 ...
分类:
其他好文 时间:
2020-06-27 20:31:00
阅读次数:
87
短波红外(SWIR)相机camera AVs Can’t Drive Everywhere. Can TriEye’s SWIR Camera Help? TriEye的短波红外(SWIR)摄像机能否突破目前自动车辆(AVs)的地理围栏操作? 汽车可以去任何地方,在所有天气或道路条件下,是AV行业的 ...
分类:
其他好文 时间:
2020-06-27 09:38:30
阅读次数:
250
要求:给定1个字符串,比如ababc,要求找出“第1个最长的不重复子串”,即:"abc" 思路:遍历每个字符,寻找以它开头的不重复子串,遍历过程中,可以用一个Set作为缓冲区,存放曾经处理过的起始字符串。 过程: (a)babc -> 子串为a (ab)abc -> 子串为ab (ab)abc -> ...
分类:
编程语言 时间:
2020-06-26 18:34:45
阅读次数:
55