//通过TypeReference解决泛型的问题 List<Integer> rst = JSON.parseObject(v,new TypeReference<List<Integer>>>(){}); AAA<Integer> rst = JSON.parseObject(v,new Type Read More
世界太大,我无法安心学习,决定看一个简单的。 nginx-1.11.9的代码是nginx-0.5.38的两倍,决定看前者的。 阅读工具:UnderStand 3.1。 入口在nginx.c的195行。 第一点:ngx_cdecl 使用这个宏是为了跨平台支持,方便调整函数调用方式(__cdecl、__ Read More
12 row 是核心控件 class="form-control" 弹窗口<input data-toggle="modal" data-target=".meta-modal-lg" /> <div id="#metaModel" class="modal fade meta-modal-lg" Read More
Test: Junit4+Hamcrest 不多说了,就靠着两个 其他资料: http://www.tuicool.com/articles/iIF3Ev http://kinglixing.blog.51cto.com/3421535/748879 TestNG: http://www.cnblo Read More
https://leetcode.com/problems/longest-palindromic-substring/ 求最大回文的长度,其实这道题比上一道有意思。 方法1 循环查询 (该方案为O(N*N*N)) 方法2 动态规划 (该方案为O(N*N)) 由于没学过动态规划,特意去学习了一下 方 Read More
https://leetcode.com/problems/median-of-two-sorted-arrays/ There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median o Read More
入门文档:https://github.com/qibaoguang/Spring-Boot-Reference-Guide 安装gradle 官方下载 https://gradle.org/gradle-download/,建议用迅雷。 环境变量配置:http://jingyan.baidu.co Read More
寻找最长的不重复串,略像滑动窗口。 上面这个粗鲁的代码,马马虎虎毕竟打败51 ~61%的code,lastIndexOf有优化的空间。 不过答案真是美妙的活动窗口实现,赞!使用了字符作为坐标,索引作为值。 Read More
两数之和(考察链表操作): 链表长度不一,有进位情况,最后的进位需要新增节点。 码出来的代码不不如答案,哎,超级简洁: Read More
https://leetcode.com/problems/two-sum/ Example: Java: 版本1,暴力搜索(减少了部分搜索),预计打败全世界30%的答案。 版本2,,通过HashMap解决循环匹配问题,预计打败全世界50% 版本3, 写到版本2的时候,肯定会想到把循环合并到一起执行 Read More