摘要: A:Add Two Numbers Medium You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and e 阅读全文
posted @ 2019-05-05 22:46 wujunjie007 阅读(192) 评论(0) 推荐(0) 编辑
摘要: A:Rotate Image Medium You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Note: You have to rotate the 阅读全文
posted @ 2019-05-05 22:45 wujunjie007 阅读(124) 评论(0) 推荐(0) 编辑
摘要: A: Unique Paths II Medium 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 eit 阅读全文
posted @ 2019-05-05 22:44 wujunjie007 阅读(104) 评论(0) 推荐(0) 编辑
摘要: A:Merge Intervals Medium Given a collection of intervals, merge all overlapping intervals. 解析:对给定的一个对象集合进行处理,将对象集合中存在交集的对象进行合并,行成一个新的集合 思路:优先将对象集合进行处理 阅读全文
posted @ 2019-05-05 22:44 wujunjie007 阅读(106) 评论(0) 推荐(0) 编辑
摘要: A: Subsets 题目:Given a set of distinct integers, nums, return all possible subsets (the power set). Note: The solution set must not contain duplicate s 阅读全文
posted @ 2019-05-05 22:43 wujunjie007 阅读(160) 评论(0) 推荐(0) 编辑
摘要: A: Best Time to Buy and Sell Stock 题目:Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitt 阅读全文
posted @ 2019-05-05 22:41 wujunjie007 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1:java.util.Timer类是一种工具,线程用其安排以后在后台线程中执行的任务。可安排任务执行一次,或者定期重复执行。 2:TimerTask类是由 Timer 安排为一次执行或重复执行的任务,因为有TimerTask类是一个抽象类,必须有其子类对其实现来完成定时任务的功能。 Timer t 阅读全文
posted @ 2017-11-07 11:49 wujunjie007 阅读(140) 评论(0) 推荐(0) 编辑
摘要: linux下自动生成的表名为大写,windows下导入的sql文件生成的表名为小写,真是被搞死(调试到半夜一点的血与泪)。 导致自动生成的表中没有对应的数据,正确顺序为: 1.先启动项目,自动生成数据库表 2.对应导入数据 3.开始使用项目 记录时间:2017年9月11日 阅读全文
posted @ 2017-09-11 11:31 wujunjie007 阅读(179) 评论(0) 推荐(0) 编辑