自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

杨鑫newlife的专栏

算法就是我的灵魂

  • 博客(2422)
  • 资源 (192)
  • 收藏
  • 关注

原创 数据仓库Build The Data Warehouse(William H.Inmon)学习笔记目录

Inmon是经典的范式建模大师,该笔记目录是数据仓库Build The Data Warehouse(William H.Inmon)的学习笔记,内容包含书内的经典干货、随手结合实际经验的笔记心得;有相关的数据仓库建模问题可以私聊我讨论,互相学习!--- 文章持续更新中!---第一章数据仓库Build The Data Warehouse(William H.Inmon)学习笔记 --- 第一章、决策支持系统的发展第二章数据仓库Build The Data W...

2020-07-16 15:44:41 1659

原创 设计模式学习笔记汇总目录

这里的的学习笔记包含JavaSE和J2EE两部分,持续更新中!其中关于学习的参考资料如下:1.菜鸟设计模式2.Head First Design Patterns(书、强烈推荐);3.大话设计模式(书、适合入门);相关的代码下载:GitHub源码设计模式学习笔记 --- 1.简单工厂模式 设计模式学习笔记 --- 2.抽象工厂模式 设计模式学习笔记 --- 3.单...

2020-04-28 21:08:53 1097

原创 大数据之路、阿里巴巴大数据实践读书笔记目录

该系列持续更新中:第一章:大数据之路、阿里巴巴大数据实践读书笔记 --- 第一章、总述第二章:大数据之路、阿里巴巴大数据实践读书笔记 --- 第二章、日志采集第三章:大数据之路、阿里巴巴大数据实践读书笔记 --- 第三章、数据同步...

2020-01-12 02:09:19 1957

原创 送给订阅我专栏同学们一封信

非常感谢大家来订阅我的专栏,最早开始写博客是由于为了记笔记,大学时期打ACM,玩C/C++,毕业之后从事大数据 + 机器学习。后来逐渐变成了把自己做过的每一次项目实战的问题,技术调研、开发技能等都记录下来,到现在形成了简单的部分规模专栏。因此大家在看的时候有些文章可能不太具体,但是我会为订阅同学提供好服务。订阅的同学如果对我的文章或者某些技术问题感兴趣或者不懂得,可以私信问...

2020-01-05 19:55:40 2116 2

原创 LeetCode --- 2148. Count Elements With Strictly Smaller and Greater Elements 解题报告

Given an integer array , return the number of elements that have both a strictly smaller and a strictly greater element appear in .Example 1:Input: nums = [11,7,2,15]Output: 2Explanation: The element 7 has the element 2 strictly smaller than it and the

2024-07-18 01:58:39 3635

原创 LeetCode --- 2144. Minimum Cost of Buying Candies With Discount 解题报告

A shop is selling candies at a discount. For every two candies sold, the shop gives a third candy for free.The customer can choose any candy to take away for free as long as the cost of the chosen candy is less than or equal to the minimum cost of the two

2024-07-18 01:30:58 587

原创 LeetCode --- 2138. Divide a String Into Groups of Size k 解题报告

A string can be partitioned into groups of size using the following procedure:Note that the partition is done so that after removing the character from the last group (if it exists) and concatenating all the groups in order, the resultant string should

2024-07-16 23:15:32 9039

原创 LeetCode --- 2133. Check if Every Row and Column Contains All Numbers 解题报告

An matrix is valid if every row and every column contains all the integers from to (inclusive).Given an integer matrix , return if the matrix is valid. Otherwise, return .Example 1:Input: matrix = [[1,2,3],[3,1,2],[2,3,1]]Output: trueExplanation: I

2024-07-16 01:33:55 69

原创 LeetCode --- 2129. Capitalize the Title 解题报告

You are given a string consisting of one or more words separated by a single space, where each word consists of English letters. Capitalize the string by changing the capitalization of each word such that:Return the capitalized .Example 1:Input: title =

2024-07-16 01:17:04 1619

原创 LeetCode --- 2124. Check if All A‘s Appears Before All B‘s 解题报告

Given a string consisting of only the characters and , return if every appears before every in the string. Otherwise, return .Example 1:Input: s = "aaabbb"Output: trueExplanation:The 'a's are at indices 0, 1, and 2, while the &#3

2024-07-11 22:47:58 594

原创 LeetCode --- 2119. A Number After a Double Reversal 解题报告

Reversing an integer means to reverse all its digits.Given an integer , reverse to get , then reverse to get . Return if equals . Otherwise return .Example 1:Input: num = 526Output: trueExplanation: Reverse num to get 625, then reverse 625 to get 52

2024-07-10 23:25:32 331

原创 LeetCode --- 2114. Maximum Number of Words Found in Sentences 解题报告

A sentence is a list of words that are separated by a single space with no leading or trailing spaces.You are given an array of strings , where each represents a single sentence.Return the maximum number of words that appear in a single sentence.Example 1

2024-07-10 23:03:37 451

原创 LeetCode --- 2108. Find First Palindromic String in the Array 解题报告

Given an array of strings , return the first palindromic string in the array. If there is no such string, return an empty string .A string is palindromic if it reads the same forward and backward.Example 1:Input: words = ["abc","car",&

2024-07-09 00:23:27 2862

原创 LeetCode --- 2103. Rings and Rods 解题报告

There are rings and each ring is either red, green, or blue. The rings are distributed across ten rods labeled from to .You are given a string of length that describes the rings that are placed onto the rods. Every two characters in forms a color-pos

2024-07-08 00:03:11 207

原创 LeetCode --- 2099. Find Subsequence of Length K With the Largest Sum 解题报告

You are given an integer array and an integer . You want to find a subsequence of of length that has the largest sum.Return any such subsequence as an integer array of length .A subsequence is an array that can be derived from another array by deleting

2024-07-06 02:10:34 156

原创 LeeCode --- 2094. Finding 3-Digit Even Numbers 解题报告

You are given an integer array , where each element is a digit. The array may contain duplicates.You need to find all the unique integers that follow the given requirements:For example, if the given were , integers and follow the requirements.Return a s

2024-07-05 00:19:59 256

原创 Leetcode --- 2089. Find Target Indices After Sorting Array 解题报告

You are given a 0-indexed integer array and a target element .A target index is an index such that .Return a list of the target indices of after sorting in non-decreasing order. If there are no target indices, return an empty list. The returned list mu

2024-07-04 23:51:55 29

原创 LeetCode --- 2085. Count Common Words With One Occurrence 解题报告

Given two string arrays and , return the number of strings that appear exactly once in each of the two arrays.Example 1:Input: words1 = ["leetcode","is","amazing","as","is"], words2 = ["amazing"

2024-07-04 00:23:22 407

原创 LeetCode --- 2078. Two Furthest Houses With Different Colors 解题报告

There are houses evenly lined up on the street, and each house is beautifully painted. You are given a 0-indexed integer array of length , where represents the color of the house.Return the maximum distance between two houses with different colors.The

2024-07-04 00:06:27 202

原创 LeetCode --- 2073. Time Needed to Buy Tickets 解题报告

There are people in a line queuing to buy tickets, where the person is at the front of the line and the person is at the back of the line.You are given a 0-indexed integer array of length where the number of tickets that the person would like to buy

2024-06-16 23:56:32 125

原创 LeetCode --- 2068. Check Whether Two Strings are Almost Equivalent 解题报告

Two strings and are considered almost equivalent if the differences between the frequencies of each letter from to between and is at most .Given two strings and , each of length , return if and are almost equivalent, or otherwise.The frequency o

2024-03-16 14:16:31 148

原创 LeetCode --- 2062. Count Vowel Substrings of a String 解题报告

A substring is a contiguous (non-empty) sequence of characters within a string.A vowel substring is a substring that only consists of vowels (, , , , and ) and has all five vowels present in it.Given a string , return the number of vowel substrings in .Exa

2024-03-14 08:08:23 133

原创 LeetCode --- 2057. Smallest Index With Equal Value 解题报告

Given a 0-indexed integer array , return the smallest index of such that , or if such index does not exist. denotes the remainder when is divided by .Example 1:Input: nums = [0,1,2]Output: 0Explanation: i=0: 0 mod 10 = 0 == nums[0].i=1: 1 mod 10 =

2024-03-14 07:48:04 193

原创 LeetCode --- 2053. Kth Distinct String in an Array 解题报告

A distinct string is a string that is present only once in an array.Given an array of strings , and an integer , return the distinct string present in . If there are fewer than distinct strings, return an empty string .Note that the strings are considere

2024-03-05 07:35:58 951 1

原创 LeetCode --- 2047. Number of Valid Words in a Sentence 解题报告

LeetCode --- 2047. Number of Valid Words in a Sentence 解题报告

2024-02-17 03:18:58 249

原创 LeetCode --- 2042. Check if Numbers Are Ascending in a Sentence 解题报告

A sentence is a list of tokens separated by a single space with no leading or trailing spaces. Every token is either a positive number consisting of digits with no leading zeros, or a word consisting of lowercase English letters.Given a string representi

2024-02-02 00:14:14 115

原创 LeetCode --- 2037. Minimum Number of Moves to Seat Everyone 解题报告

There are seats and students in a room. You are given an array of length , where is the position of the seat. You are also given the array of length , where is the position of the student.You may perform the following move any number of times:Retur

2024-02-01 23:58:54 252

原创 LeetCode --- 2032. Two Out of Three 解题报告

Given three integer arrays , , and , return a distinct array containing all the values that are present in at least two out of the three arrays. You may return the values in any order.Example 1:Input: nums1 = [1,1,3,2], nums2 = [2,3], nums3 = [3]Output:

2024-01-31 22:04:24 167

原创 LeetCode --- 2027. Minimum Moves to Convert String 解题报告

You are given a string consisting of characters which are either or .A move is defined as selecting three consecutive characters of and converting them to . Note that if a move is applied to the character , it will stay the same.Return the minimum numb

2024-01-31 21:45:47 152

原创 LeetCode --- CodeTestcaseTest ResultTest Result2022. Convert 1D Array Into 2D Array 解题报告

模拟操作,给定一个一位数组,利用规律使其变为二维数组。这里就通过盘点给定一位数组的长度是否等于m*n直接判断是否可变换。然后通过两个for遍历赋值即可

2024-01-19 01:58:54 50

原创 LeetCode --- 2016. Maximum Difference Between Increasing Elements 解题报告

LeetCode升序求差值

2024-01-15 01:56:58 121

原创 LeetCode --- 2011. Final Value of Variable After Performing Operations 解题报告

There is a programming language with only four operations and one variable :Initially, the value of is .Given an array of strings containing a list of operations, return the final value of after performing all the operations.Example 1:Input: operations

2023-12-10 23:55:52 159

原创 LeetCode --- 2006. Count Number of Pairs With Absolute Difference K 解题报告

Given an integer array and an integer , return the number of pairs where such that .The value of is defined as:Example 1:Input: nums = [1,2,2,1], k = 1Output: 4Explanation: The pairs with an absolute difference of 1 are:- [1,2,2,1]- [1,2,2,1]- [1

2023-12-10 23:44:34 142

原创 LeetCode --- 2000. Reverse Prefix of Word 解题报告

Given a 0-indexed string and a character , reverse the segment of that starts at index and ends at the index of the first occurrence of (inclusive). If the character does not exist in , do nothing.Return the resulting string.Example 1:Input: word = &

2023-12-03 12:20:01 217

原创 LeetCode --- 1995. Count Special Quadruplets 解题报告

两种解法处理移动下标算法问题

2023-11-11 11:22:36 189

原创 LeetCode --- CodeTestcaseTestcaseTest Result1991. Find the Middle Index in Array 解题报告

Given a 0-indexed integer array , find the leftmost (i.e., the smallest amongst all the possible ones).A is an index where .If , the left side sum is considered to be . Similarly, if , the right side sum is considered to be .Return the leftmost that sat

2023-11-05 23:27:30 107

原创 LeetCode --- 1984. Minimum Difference Between Highest and Lowest of K Scores 解题报告

You are given a 0-indexed integer array , where represents the score of the student. You are also given an integer .Pick the scores of any students from the array so that the difference between the highest and the lowest of the scores is minimized.Retu

2023-11-03 08:48:14 97

原创 LeetCode --- 1979. Find Greatest Common Divisor of Array 解题报告

Given an integer array , return the greatest common divisor of the smallest number and largest number in .The greatest common divisor of two numbers is the largest positive integer that evenly divides both numbers.Example 1:Input: nums = [2,5,6,9,10]Outp

2023-10-23 00:18:16 263

原创 LeetCode --- 1974. Minimum Time to Type Word Using Special Typewriter 解题报告

There is a special typewriter with lowercase English letters to arranged in a circle with a pointer. A character can only be typed if the pointer is pointing to that character. The pointer is initially pointing to the character .Each second, you may perf

2023-10-20 00:12:17 599

原创 LeetCode --- 1971. Find if Path Exists in Graph 解题报告

并查集处理无向图联通问题

2023-10-09 23:19:16 577

斯坦福文本分类朴素贝叶斯实现课程讲义2021

斯坦福文本分类朴素贝叶斯算法实现课程讲义2021

2022-06-19

An Introduction to HTAP

An Introduction to HTAP

2022-04-26

datax.tar.gz

阿里开源ETL工具DataX

2021-08-22

ImpalaJDBC41.jar

ImpalaJDBC

2021-08-22

hive_jdbc_2.6.2.1002.zip

hive_jdbc_2.6.2.1002

2021-08-22

ClouderaHiveODBC.dmg

ClouderaHiveODBC

2021-08-22

开源SuperSet、MetaBD、Redash简单对比

开源SuperSet、MetaBD、Redash简单对比

2020-07-22

JVM内存管理知识思维导图.png

JVM内存管理知识思维导图.png

2020-05-22

深入浅出Otter与Canal.pdf

深入浅出Otter与Canal.pdf深入浅出Otter与Canal.pdf深入浅出Otter与Canal.pdf深入浅出Otter与Canal.pdf

2020-02-29

weworkapi_python-master.zip

企业微信加密解密函数代码示例weworkapi_python-master.zipweworkapi_python-master.zipweworkapi_python-master.zipweworkapi_python-master.zip

2020-01-20

实时指标计算引擎-Spark-Part_1_杨鑫_2019-12-19.pptx

实时指标计算引擎-Spark-Part_1_杨鑫

2019-12-19

Griffin数据质量管理技术调研.pdf

Griffin数据质量管理技术调研.pdf

2019-12-09

Kylin多维分析.pdf

Kylin多维分析.pdf

2019-12-05

CDH5.17版本Hue接入HBase步骤.pdf

CDH5.17版本Hue接入HBase步骤.pdfC

2019-11-28

Apache Kylin竞品分析.pdf

Apache Kylin竞品分析.pdf

2019-11-18

技术调研_数据质量管理&性能量化&多维分析 .pdf

技术调研_数据质量管理&性能量化&多维分析 ,技术调研_数据质量管理&性能量化&多维分析 ,技术调研_数据质量管理&性能量化&多维分析

2019-11-18

_bz2.cpython-36m-x86_64-linux-gnu.so

_bz2.cpython-36m-x86_64-linux-gnu.so,

2019-11-07

presto-cli-0.223-executable.jar

presto-cli-0.223-executable.jar

2019-11-07

数据仓库规范设计.pdf

数据仓库规范设计.pdf

2019-11-04

Cloudera Manager-V5.13 元数据库梳理.pdf

Cloudera Manager-V5.13 元数据库梳理.pdfCloudera Manager-V5.13 元数据库梳理.pdfCloudera Manager-V5.13 元数据库梳理.pdfCloudera Manager-V5.13 元数据库梳理.pdfCloudera Manager-V5.13 元数据库梳理.pdfCloudera Manager-V5.13 元数据库梳理.pdfCloudera Manager-V5.13 元数据库梳理.pdf

2019-10-30

基础算法-LP算法_线性规划问题.pptx

基础算法-LP算法_线性规划问题.pptx,基础算法-LP算法_线性规划问题.pptx,基础算法-LP算法_线性规划问题.pptx,基础算法-LP算法_线性规划问题.pptx

2019-10-17

基础算法-递归-杨鑫20191010.pptx

基础算法-递归-杨鑫20191010.pptx,基础算法-递归-杨鑫20191010.pptx,基础算法-递归-杨鑫20191010.pptx

2019-10-17

基础算法 - 动态规划-2019-08-01.pptx

基础算法 - 动态规划-2019-08-01.pptx,基础算法 - 动态规划-2019-08-01.pptx,基础算法 - 动态规划-2019-08-01.pptx,基础算法 - 动态规划-2019-08-01.pptx

2019-10-17

KNN实现水果分类的数据集

KNN实现水果分类的数据集KNN实现水果分类的数据集,KNN实现水果分类的数据集,KNN实现水果分类的数据集

2019-10-17

机器学习算法-神经网络LSTM

机器学习算法-神经网络.pptx

2019-09-21

ML-朴素贝叶斯-2019-07-01.pdf

ML-朴素贝叶斯-2019-07-01.pdf

2019-07-02

udfs-2.0.4-SNAPSHOT.jar

Presto的UDF函数,基本可以覆盖Hive的大多数情况。

2019-06-26

Python3实现KNN的三个例子(包含数据集),水果分类,识别手写数字,找相似的朋友

Python3实现KNN的三个例子(包含数据集),水果分类,识别手写数字,找相似的朋友

2019-03-06

Presto资源管理Rest API 文档

Presto资源管理Rest API 文档

2018-12-01

ACM学习路线导图

ACM学习路线导图

2018-11-14

Hadoop ResourceManager API

Hadoop ResourceManager API

2018-11-07

Kylin调研报告

Kylin (MOLAP - Multidimensional OnlineAnalytical Processing)调研报告

2018-10-29

ALL in python学习PPT

ALL in python学习PPT

2018-10-28

presto-cli

presto-cli,presto-cli,

2018-10-22

python pep8编码规范

python pep8编码规范

2018-10-17

Confluence-5.6.6-language-pack-zh_CN.jar

Confluence-5.6.6-language-pack-zh_CN.jar,防止confluence乱码的jar包

2018-09-30

AzkabanAPI接口文档汇总

AzkabanAPI接口文档汇总

2018-09-26

MachineLearning-相似度距离公式

MachineLearning-相似度距离公式

2018-09-21

Azkaban元数据库分析

Azkaban元数据库分析,

2018-09-19

Goods: Organizing Google’s Datasets

Goods: Organizing Google’s Datasets,Goods: Organizing Google’s Datasets

2018-09-06

空空如也

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

TA关注的人

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