自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (1)
  • 收藏
  • 关注

原创 【LeetCode】238. 除去自身后,数组各项的乘积

问题描述 Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i]. Constraint: It's guaranteed tha...

2020-04-16 14:11:42 307

原创 【LeetCode】347. 前K个频繁出现的元素

问题描述 Given a non-empty array of integers, return thekmost frequent elements. Note: You may assumekis always valid, 1 ≤k≤ number of unique elements. Your algorithm's time complexitymust beb...

2020-04-08 14:34:45 275

原创 【LeetCode】647. 回文子串

问题描述 Given a string, your task is to count how many palindromic substrings in this string. The substrings with different start indexes or end indexes are counted as different substrings even they co...

2020-04-08 14:05:50 305

原创 【LeetCode】46. 排列

问题描述 Given a collection ofdistinctintegers, return all possible permutations. 给定一组不同的整数,返回所有可能的排列。 输入: [1,2,3] 输出: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] Python...

2020-04-05 10:49:14 125

原创 【LeetCode】22. 生成括号

问题描述 Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. 给定n对括号,编写一个函数来生成所有形式良好的括号组合。 比如,给定 n = 3,则输出结果应为: [ "((()))", "(()())", "(())()"...

2020-04-05 10:47:00 175

Java模式匹配demo

Java模式匹配demo

2023-09-22

MapStruct Java实例Demo

MapStruct Java实例Demo

2023-09-04

Java代理实战Demo

实现了常用的 cglib 代理以及 jdk 代理方式,涉及到各种常用的场景以及相关方法。

2023-08-09

orika Java实例Demo

orika Java实例Demo

2023-08-09

时间轮算法+延时队列实现任务队列Java Demo

多层时间轮,可根据配置的时间轮大小参数以及插入任务的相对时间,动态地创建不同层次的时间轮实例(这里的多层时间轮采用了相同的size)。引入了延时队列以减少空轮询,将时间轮的推进与任务的提交执行隔离开,提升模型的效率。

2022-10-22

vatic-install.sh

vatic 安装脚本,更新至 2020-01-27。脚本中涉及到相关 python 环境的配置安装,mysql、turkic、pyvision 文件的 clone 以及他们的启动。

2020-03-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除