杨鑫newlfe
码龄8年
  • 5,730,141
    被访问
  • 2,211
    原创
  • 55
    排名
  • 5,508
    粉丝
关注
提问 私信

个人简介:算法是我的灵魂

  • 目前就职: 阿里巴巴集团
  • 加入CSDN时间: 2013-11-26
博客简介:

杨鑫newlife的专栏

博客描述:
算法就是我的灵魂
查看详细资料
  • 8
    领奖
    总分 6,042 当月 122
个人成就
  • 阿里巴巴数据技术专家
  • 获得1,287次点赞
  • 内容获得736次评论
  • 获得2,849次收藏
创作历程
  • 29篇
    2022年
  • 66篇
    2021年
  • 228篇
    2020年
  • 343篇
    2019年
  • 184篇
    2018年
  • 239篇
    2017年
  • 345篇
    2016年
  • 311篇
    2015年
  • 495篇
    2014年
  • 1篇
    2013年
成就勋章
TA的专栏
  • 数据仓库
    付费
    87篇
  • 源码分析
    付费
    10篇
  • C && C++
    付费
    400篇
  • Python
    付费
    505篇
  • 大数据挖掘与大数据应用案例
    付费
    538篇
  • 数据结构
    付费
    132篇
  • 算法
    付费
    642篇
  • ACM
    付费
    107篇
  • Machine Learning
    付费
    64篇
  • 思维脑暴一分钟
    5篇
  • 系统架构
    1篇
  • 设计模式
    28篇
  • Java
    427篇
  • Scala
    108篇
  • Haskell
    16篇
  • Go
    1篇
  • C#
    15篇
  • Html
    7篇
  • 搜索引擎
    131篇
  • 数据库
    231篇
  • Linux
    132篇
  • 爬虫
    34篇
  • LeetCode
    234篇
  • 短码编程
    25篇
  • 编码知识
    55篇
  • 递归
    11篇
  • 网络
    12篇
  • 软考
    7篇
  • Android
    1篇
  • XML
    19篇
  • Javascript
    9篇
  • JSON
    6篇
  • HAWQ
    15篇
  • RESTful API
    5篇
  • Math
    1篇
  • GitHub
    12篇
  • ETL
    14篇
  • Code Architecture
    6篇
  • Compile IDE
    1篇
  • Web Server
    14篇
  • POJ
    101篇
  • HDU
    100篇
  • NoSQL
    10篇
  • Cassandra
    2篇
  • Object-Oriented Programming
    114篇
  • Procedure-Oriented Programming
    101篇
  • Project Management
    5篇
  • Office
    1篇
  • Google Papers
    1篇
  • Functional Programming
    17篇
  • Self_Summary
    2篇
  • php
    2篇
  • 产品
    1篇
  • Shell
    8篇
  • 数据分析
    2篇
  • 正则表达式
    1篇
兴趣领域 设置
  • 大数据
    flink
  • 人工智能
    机器学习深度学习神经网络自然语言处理tensorflownlp数据分析
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

深入浅出理解什么是HTAP

关于HTAPHTAP(Hybrid Transactional/Analytical Processing)混合事务 / 分析处理。这里的HTAP就是常见的比较经典的OLAP和OLTP的处理场景的结合体。即可解决OLTP在线事务处理场景,还可以解决OLAP在线分析场景。Gartner也认为HTAP数据库将成为数据库领域的一个重要的发展趋势,一个集成的数据平台将会加速数字化转型。HTAP的概念最早在2014年Gartner的报告中提出这一概念,《混合事务/分析处理促进重大商业创新》。对于这个HTA
原创
发布博客 2022.05.12 ·
321 阅读 ·
1 点赞 ·
0 评论

LeetCode --- 1207. Unique Number of Occurrences 解题报告

Given an array of integersarr, returntrueif the number of occurrences of each value in the array isunique, orfalseotherwise.Example 1:Input: arr = [1,2,2,1,1,3]Output: trueExplanation:The value 1 has 3 occurrences, 2 has 2 and 3 has 1. No t...
原创
发布博客 2022.05.08 ·
282 阅读 ·
1 点赞 ·
1 评论

LeetCode --- 1200. Minimum Absolute Difference 解题报告

Given an array ofdistinctintegersarr, find all pairs of elements with the minimum absolute difference of any two elements.Return a list of pairs in ascending order(with respect to pairs), each pair[a, b]followsa, bare fromarr a < b b - aeq...
原创
发布博客 2022.05.03 ·
80 阅读 ·
0 点赞 ·
0 评论

An Introduction to HTAP

发布资源 2022.04.26 ·
pdf

LeetCode --- 1189. Maximum Number of Balloons 解题报告

Given a stringtext, you want to use the characters oftextto form as many instances of the word"balloon"as possible.You can use each character intextat most once. Return the maximum number of instances that can be formed.Example 1:Input: t...
原创
发布博客 2022.04.25 ·
274 阅读 ·
1 点赞 ·
2 评论

LeetCode --- 1185. Day of the Week 解题报告

Given a date, return the corresponding day of the week for that date.The input is given as three integers representing theday,monthandyearrespectively.Return the answer as one of the following values{"Sunday", "Monday", "Tuesday", "Wednesday", "T...
原创
发布博客 2022.04.23 ·
222 阅读 ·
0 点赞 ·
0 评论

LeetCode --- 1184. Distance Between Bus Stops 解题报告

A bushasnstops numbered from0ton - 1that forma circle. We know the distance between all pairs of neighboring stops wheredistance[i]is the distance between the stops numberiand(i + 1) % n.The bus goes along both directionsi.e. clockwise and ...
原创
发布博客 2022.04.23 ·
228 阅读 ·
0 点赞 ·
0 评论

LeetCode --- 1175. Prime Arrangements 解题报告

Return the number of permutations of 1 tonso that prime numbers are at prime indices (1-indexed.)(Recall that an integeris prime if and only if it is greater than 1, and cannot be written as a product of two positive integersboth smaller than it.)S...
原创
发布博客 2022.04.18 ·
154 阅读 ·
1 点赞 ·
1 评论

新一代流式数据湖平台 Apache Hudi学习笔记 - 基础知识&定义

什么是Hudi?使用Hudi管理数据和基本概念理解,不处理和使用。仅是管理数据。发稿时,当前最新版本是V0.10.0为什么学习Apache HudiHudi是一个数据湖的框架。通过目录和表(分区,列式存储)进行管理。诞生于Uber并开源。数据仓库Data Warehouse 简称数仓、DW,是一个用于存储、分析、报告的数据系统。数据仓库的目的是构建面向分析的集成化数据环境,分析结果是为企业提供决策支持(Decision Support)。数据仓库的特点是.
原创
发布博客 2022.04.18 ·
91 阅读 ·
0 点赞 ·
0 评论

LeetCode --- 1160. Find Words That Can Be Formed by Characters 解题报告

You are given an array of stringswordsand a stringchars.A string isgoodif it can be formed by characters from chars (each character can only be used once).Returnthe sum of lengths of all good strings in words.Example 1:Input: words = ["cat...
原创
发布博客 2022.04.18 ·
153 阅读 ·
1 点赞 ·
1 评论

LeetCode --- 1154. Day of the Year 解题报告

Given a stringdaterepresenting aGregorian calendardate formatted asYYYY-MM-DD, returnthe day number of the year.Example 1:Input: date = "2019-01-09"Output: 9Explanation: Given date is the 9th day of the year in 2019.Example 2:Input: da...
原创
发布博客 2022.04.09 ·
360 阅读 ·
1 点赞 ·
1 评论

LeetCode --- 1137. N-th Tribonacci Number 解题报告

The Tribonacci sequence Tnis defined as follows:T0= 0, T1= 1, T2= 1, and Tn+3= Tn+ Tn+1+ Tn+2for n >= 0.Givenn, return the value of Tn.Example 1:Input: n = 4Output: 4Explanation:T_3 = 0 + 1 + 1 = 2T_4 = 1 + 1 + 2 = 4Example 2...
原创
发布博客 2022.04.07 ·
266 阅读 ·
0 点赞 ·
0 评论

LeetCode --- 1128. Number of Equivalent Domino Pairs 解题报告

Given a list ofdominoes,dominoes[i] = [a, b]isequivalent todominoes[j] = [c, d]if and only if either (a == candb == d), or (a == dandb == c) - that is, one domino can be rotated to be equal to another domino.Returnthe number of pairs(i, j)fo...
原创
发布博客 2022.03.30 ·
522 阅读 ·
1 点赞 ·
1 评论

Java判断空逻辑的几种方式

String a = "";// 方法一:可以判断是否为空,但不能判断是否包含空字符等if (a != null) {}// 方法二:可以判断是否为空,但不能判断是否包含空字符等if (a != "") { }// 方法三:可以判断是否为空,仅一个空格位,但不能判断是否包含多个空字符等if (a != " ") { }// 方法四:即可以判断是否为空,还可以判断多个空格位if (StringUtils.isBlank(a)) {...
原创
发布博客 2022.03.24 ·
131 阅读 ·
1 点赞 ·
1 评论

LeetCode --- 1122. Relative Sort Array 解题报告

Given two arraysarr1andarr2, the elements ofarr2are distinct, and all elements inarr2are also inarr1.Sort the elements ofarr1such that the relative ordering of items inarr1are the same as inarr2. Elements that do not appear inarr2should be...
原创
发布博客 2022.03.21 ·
134 阅读 ·
0 点赞 ·
0 评论

LeetCode --- 1108. Defanging an IP Address 解题报告

Given a valid (IPv4) IP address, return a defanged version of that IP address.A defanged IP address replaces every period "." with "[.]".Example 1:Input: address = "1.1.1.1"Output: "1[.]1[.]1[.]1"Example 2:Input: address = "255.100.50.0"Ou
原创
发布博客 2022.03.18 ·
258 阅读 ·
0 点赞 ·
0 评论

LeetCode --- 1103. Distribute Candies to People 解题思路

We distribute somenumber ofcandies, to a row ofn =num_peoplepeople in the following way:We then give 1 candy to the first person, 2 candies to the second person, and so on until we givencandies to the last person.Then, we go back to the start of...
原创
发布博客 2022.03.15 ·
359 阅读 ·
0 点赞 ·
0 评论

Poseidon日志搜索平台调研笔记

简介Poseidon 波塞冬,是希腊神话中的海神,在这里寓意着海量数据的主宰者。Poseidon系统是一个日志搜索平台,可以在数百万亿条、数百万PB大小的日志数据中快速分析和检索特定字符串。360公司是一个安全公司,在追踪APT(Advanced Persistent Threat,高级持续威胁)事件时,经常需要在海量的历史日志数据中检索这些信息,例如某个恶意样本在某个时间段内的活动情况。在Poseidon系统出现之前,都是写Map/Reduce计算任务在Hadoop集群中中计算,一次任
原创
发布博客 2022.03.12 ·
2256 阅读 ·
0 点赞 ·
0 评论

如何打造一个百万亿级 的日志搜索引擎:Poseidon

发布资源 2022.03.12 ·
pdf

LeetCode --- 1089. Duplicate Zeros 解题报告

Given a fixed-length integer array arr, duplicate each occurrence of zero, shifting the remaining elements to the right.Note that elements beyond the length of the original array are not written. Do the above modifications to the input array in place and
原创
发布博客 2022.03.12 ·
195 阅读 ·
0 点赞 ·
0 评论
加载更多