aixh
aixh
全部文章
分类
Java(117)
LeetCode(33)
Linux(1)
MongoDB(1)
MySQL(2)
计算机安全与网络编程(1)
归档
标签
去牛客网
登录
/
注册
aixh的博客
全部文章
(共155篇)
131. Palindrome Partitioning
Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. Example:...
LeetCode
2019-04-24
0
546
126. Word Ladder II
Given two words (beginWord and endWord), and a dictionary's word list, find all shortest transformation sequence(s) from beginWord to endWord, such th...
LeetCode
2019-04-24
0
484
76. Minimum Window Substring
Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). Example: Input: S = &qu...
LeetCode
2019-04-23
0
539
45. Jump Game II
Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maxi...
LeetCode
2019-04-22
0
450
Thymeleaf模板取java后台Model里面的值
首先,要在HTML里面使用Thymeleaf模板,要在html引入一下头文件: <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml"> 然后,再script脚本里面直接如下引用;当然也...
2019-04-22
0
533
设置服务器上MySQL允许外网访问
1.修改配置文件sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf把bind-address参数的值改成你的内/外网IP或0.0.0.0,或者直接注释掉这行. 2.登录数据库mysql -u root -p 输入密码mysql> use mysql; 3.查...
2018-06-09
0
484
Java并发编程实战(学习笔记 第十二至十六章)
十二至十六章笔记
Java并发编程实战
2018-06-09
0
326
Java ArrayList类
先看看该类的部分方法(主要是public修饰的): public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, jav...
2018-06-05
0
339
Java 8 默认方法(Default Methods)
(转自:http://ebnbin.com/2015/12/20/java-8-default-methods/ 侵删) Java 8 引入了新的语言特性——默认方法(Default Methods)。 Default methods enable new functionality to b...
Java 8 新特性
2018-06-05
0
586
Java List接口
如下为List接口中部分函数: public interface List<E> extends Collection<E> { int size(); boolean isEmpty(); boolean contains(Object o); ...
2018-06-05
0
335
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页