摘要:
我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 面试题14- I. 剪绳子
与以下题目相同
前往:LeetCode ... 阅读原文
2020-05-03 21:22:01 阅读(2543) 评论(0)
摘要:
我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 面试题14- II. 剪绳子 II
题目
给你一根长度为 n 的绳子... 阅读原文
2020-05-03 20:45:01 阅读(2300) 评论(0)
摘要:
框架就是复杂的留给自己,简单的留给码农,像写hello world一样简单
早年开发Spring AOP程序时,都是xml文件配置aop(现在不流行xml了,注解@EnableAspectJAutoProxy大行其道),然后框架解析,
例如:
它这种配置是如何解析的,拦截方法怎么拿到,注入到代理,代理对... 阅读原文
2020-05-03 19:56:23 阅读(2366) 评论(0)
摘要:
我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 面试题06. 从尾到头打印链表
题目
输入一个链表的头节点,从尾到头... 阅读原文
2020-05-03 19:00:06 阅读(2724) 评论(0)
摘要:
我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 面试题05. 替换空格
题目
请实现一个函数,把字符串 s 中的每个... 阅读原文
2020-05-03 17:06:02 阅读(2393) 评论(0)
摘要:
1 简介
Nginx是一个非常强大和流行的高性能Web服务器。本文讲解Nginx如何整合https并将http重定向到https。
https相关文章如下:
(1)Springboot整合https原来这么简单
(2)HTTPS之密钥知识与密钥工具Keytool和Keystore-Explorer
(3)Sp... 阅读原文
2020-05-03 15:25:02 阅读(2668) 评论(0)
摘要:
我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 面试题04. 二维数组中的查找
题目
在一个 n * m 的二维数组... 阅读原文
2020-05-03 15:05:01 阅读(2365) 评论(0)
摘要:
我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 面试题03. 数组中重复的数字
题目
找出数组中重复的数字。
在一个... 阅读原文
2020-05-03 13:47:02 阅读(2635) 评论(0)
摘要:
Session
概念:服务器端会话技术,在一次会话的多次请求间共享数据,将数据保存在服务器端对象中。HttpSession
快速入门
获取HttpSession对象
HttpSession session = req.getSession();
HttpSession对象:
object ... 阅读原文
2020-05-03 12:14:02 阅读(2281) 评论(0)
摘要:
我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 3. 无重复字符的最长子串
题目
给定一个字符串,请你找出其中不含有... 阅读原文
2020-05-03 11:02:02 阅读(2363) 评论(0)