二十六画生的博客
码龄9年
  • 4,869,097
    被访问
  • 1,049
    原创
  • 225
    排名
  • 888
    粉丝
关注
提问 私信
  • 目前就职: 北京字节跳动信息技术有限公司
  • 加入CSDN时间: 2013-03-23
博客简介:

JobShow裁员加班实况-微信小程序

博客描述:
大厂加班回报、年终奖、福利等信息,求职避坑指南,欢迎新增,欢迎转发
查看详细资料
  • 9
    领奖
    总分 7,373 当月 103
个人成就
  • 获得1,275次点赞
  • 内容获得397次评论
  • 获得3,988次收藏
创作历程
  • 27篇
    2022年
  • 139篇
    2021年
  • 101篇
    2020年
  • 254篇
    2019年
  • 250篇
    2018年
  • 258篇
    2017年
  • 159篇
    2016年
  • 69篇
    2015年
  • 25篇
    2014年
成就勋章
TA的专栏
  • Java
    519篇
  • 小程序
    6篇
  • 开发的产品
    1篇
  • Hive
    127篇
  • Flink
    63篇
  • Hadoop
    21篇
  • Mapreduce
    14篇
  • Spark
    24篇
  • Mysql
    77篇
  • Spring
    52篇
  • SpringBoot
    40篇
  • SpringMVC
    23篇
  • Mybatis
    22篇
  • Kafka
    16篇
  • Android
    103篇
  • LeetCode-解题思路及代码
    108篇
  • 剑指offer-解题思路及代码
    6篇
  • C/C++
    47篇
  • 算法
    98篇
  • Machine Learning
    5篇
  • JavaScript
    21篇
  • SQL
    18篇
  • Oracle
    2篇
  • Servlet
    11篇
  • CSS
    10篇
  • Linux
    18篇
  • Bootstrap
    4篇
  • HTML
    20篇
  • Quartz
    5篇
  • 面试
    154篇
  • Struts2
    3篇
  • Java8新特性
    5篇
  • Python
    10篇
  • Sqlite
    4篇
  • 分布式
    10篇
  • Zookeeper
    2篇
  • 考研系列
    19篇
  • 随笔
    13篇
  • 开发工具
    18篇
  • React
    17篇
  • thymeleaf
    1篇
  • AntDesign
    8篇
  • MQ
    1篇
  • git
    1篇
  • Hibernate
    1篇
  • Redis
    4篇
  • Power Designer
    1篇
  • 关于项目
    1篇
兴趣领域 设置
  • 大数据
    hadoophivestormsparketl
  • 数据库管理
    数据仓库
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

Clickhouse groupArray/groupUniqArray/arrayJoin/splitByChar

行列转置一般由由行转为列,或者由列转为行。CREATE TABLE datasets.t_city( `province` String, `city` String, `createtime` DateTime, `city_level` Int8)ENGINE = MergeTree()ORDER BY provinceSETTINGS index_granularity = 8192; insert into t_city values.
原创
发布博客 前天 15:06 ·
5 阅读 ·
0 点赞 ·
0 评论

Leetcode_40_CombinationSumII--数组元素组合,和为目标值,一个元素只可用一次,输出每种组合,每种组合唯一

Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations incandidateswhere the candidate numbers sum totarget.Each number incandidatesmay only be usedoncein the combination.Note:The solutio...
原创
发布博客 2022.05.02 ·
68 阅读 ·
0 点赞 ·
0 评论

Leetcode 35. Search Insert Position--在有序数组中,查找目标值的插入位置。如果tar存在,则返回tar的下标;如果tar不存在,则返回插入tar的正确的下标

Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.You mustwrite an algorithm withO(log n)runtime complexity.Example 1:I...
原创
发布博客 2022.05.01 ·
10 阅读 ·
0 点赞 ·
0 评论

Flink AggregateFunction窗口函数,merge何时执行(三)

前言在我们使用Flink DataStream API编写业务代码时,aggregate()算子和AggregateFunction无疑是非常常用的。编写一个AggregateFunction需要实现4个方法:public interface AggregateFunction<IN, ACC, OUT> extends Function, Serializable { ACC createAccumulator(); ACC add(IN value, ACC ac...
原创
发布博客 2022.04.15 ·
1552 阅读 ·
0 点赞 ·
0 评论

Flink AggregateFunction窗口函数,执行步骤、流程与实例(二)

先keyby分组,使用计数窗口计算,实例:
原创
发布博客 2022.04.15 ·
36 阅读 ·
0 点赞 ·
0 评论

Flink AggregateFunction窗口函数,自定义UDAF,UDF(一)

AggregateFunction 比 ReduceFunction 更加的通用,它有三个参数:输入类型(IN)、累加器类型(ACC)和输出类型(OUT)。
原创
发布博客 2022.04.15 ·
27 阅读 ·
0 点赞 ·
0 评论

Java,重写Comparable比较方法,重写equals方法, Long 与 Long equals,Long 与 Long == ,Long 与 long ==

jdk1.8,1 重写Comparable比较方法2 重写equals方法3 Long 与 Long equals,Long 与 Long == ,Long 与 long ==
原创
发布博客 2022.04.13 ·
454 阅读 ·
0 点赞 ·
0 评论

Leetcode 22. Generate Parentheses - 生成指定数量的有效圆括号,比如输入2,输出()()、(())

Leetcode 22. Generate Parentheses - 生成指定数量的有效圆括号,比如输入2,输出()()、(())
原创
发布博客 2022.04.11 ·
352 阅读 ·
0 点赞 ·
0 评论

Java list1=list2;list2=null ? list1=list2;list2.clear()?

Java list1=list2;list2=null ? list1=list2;list2.clear()?
原创
发布博客 2022.04.10 ·
40 阅读 ·
0 点赞 ·
0 评论

Leetcode 412. Fizz Buzz-蜂鸣器

Leetcode 412. Fizz Buzz-蜂鸣器;Given an integern, returna string arrayanswer(1-indexed) where:answer[i] == "FizzBuzz"ifiis divisible by3and5.answer[i] == "Fizz"ifiis divisible by3.answer[i] == "Buzz"ifiis divisible by5.answer[i] == i(a
原创
发布博客 2022.04.09 ·
218 阅读 ·
0 点赞 ·
0 评论

Java char int 转换/char[]char数组 字符串 转换 String.valueOf/Arrays.sort/int[]数组初始0/Integer[]数组初始null

public static void main(String[] args) { int[] crr = new int[200]; char a = 'a'; System.out.println(crr[a]);//0 System.out.println(crr[a]--);//0 System.out.println(crr[a] + 2);//1 /////////////////////...
原创
发布博客 2022.04.08 ·
175 阅读 ·
0 点赞 ·
0 评论

Leetcode 242. Valid Anagram-判断是否是 相同字母异序词

Leetcode 242. Valid Anagram
原创
发布博客 2022.04.08 ·
235 阅读 ·
0 点赞 ·
0 评论

Leetcode 171. Excel Sheet Column Number-Excel的列名转换为具体的数字AB->28,ZY->701

Leetcode 171. Excel Sheet Column Number-Excel的列名转换为具体的数字AB->28,ZY->701
原创
发布博客 2022.04.08 ·
59 阅读 ·
0 点赞 ·
0 评论

Leetcode 328. Odd Even Linked List-奇数位节点放前面,偶数位节点放后面,按照原来的顺序

Given theheadof a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and returnthe reordered list.Thefirstnode is consideredodd, and thesecondnode iseven, and so on.Note that the relative...
原创
发布博客 2022.04.05 ·
124 阅读 ·
0 点赞 ·
0 评论

Leetcode 116. Populating Next Right Pointers in Each Node--完全二叉树层次遍历后放入队列链表--Queue,LinkedList

You are given aperfect binary treewhere all leaves are on the same level, and every parent has two children. The binary tree has the following definition:struct Node { int val; Node *left; Node *right; Node *next;}Populate each next pointe..
原创
发布博客 2022.04.05 ·
427 阅读 ·
0 点赞 ·
0 评论

Leetcode 237. Delete Node in a Linked List-删除链表的指定节点,不给链表的头节点

Write a function todelete a nodein a singly-linked list. You willnotbe given access to theheadof the list, instead you will be given access tothe node to be deleteddirectly.It isguaranteedthat the node to be deleted isnot a tail nodein the li...
原创
发布博客 2022.04.05 ·
574 阅读 ·
0 点赞 ·
0 评论

Leetcode 234. Palindrome Linked List--判断是否是回文链表,返回中间节点,反转链表

Given theheadof a singly linked list, returntrueif it is a palindrome.Example 1:Input: head = [1,2,2,1]Output: trueExample 2:Input: head = [1,2]Output: falseConstraints:The number of nodes in the list is in the range[1, 105]....
原创
发布博客 2022.04.04 ·
113 阅读 ·
0 点赞 ·
0 评论

Leetcode 82. Remove Duplicates from Sorted List II--删除链表中的重复节点,重复的节点均删除掉

Given theheadof a sorted linked list,delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Returnthe linked listsortedas well.Example 1:Input: head = [1,2,3,3,4,4,5]Output: [1,2,5]Example 2:...
原创
发布博客 2022.04.03 ·
295 阅读 ·
0 点赞 ·
0 评论

Leetcode 83. Remove Duplicates from Sorted List-从有序链表中删除重复节点,重复的节点只保留一个

* 每次:head与head.next值相等时,pre.next = head.next * head与head.next值不相等时,pre=最后一个重复值,head=下一个值
原创
发布博客 2022.04.03 ·
324 阅读 ·
0 点赞 ·
0 评论

flinksql的 / 的结果只会保留整数部分,flinksql 不支持 div运算符。hive、 mysql : / 结果是小数, div 结果只会保留整数部分

flinksql的 / 的结果只会保留整数部分,flinksql 不支持 div运算符。hive、 mysql : / 结果是小数, div 结果只会保留整数部分mysql> select 3/2 ;+--------+| 3/2 |+--------+| 1.5000 |+--------+1 row in set (0.00 sec)mysql> mysql> mysql> select 3 div 2 ;+---------+| 3 ..
原创
发布博客 2022.03.29 ·
2395 阅读 ·
0 点赞 ·
0 评论
加载更多