
算法
文章平均质量分 51
bohu83
微信:bohu83
展开
-
练习题1:哲学家吃饭问题
算法常见练习题,哲学家吃饭问题原创 2023-03-28 13:21:29 · 431 阅读 · 1 评论 -
极客时间-算法训练营 3.2
一 序本文属于极客时间-算法训练营 学习笔记。对应章节:极客时间-算法训练营 学习笔记 3递归的实现、特性以及思维要点二 70Climbing StairsYou are climbing a stair case. It takesnsteps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?N...原创 2020-07-04 16:56:05 · 7475 阅读 · 0 评论 -
极客时间-算法训练营 学习笔记 2.2 实战题目解析:二叉树的中序遍历
一 序 本文属于极客时间-算法训练营 学习笔记。上节课学习了树、二叉树、二叉搜索树的实现本节课学习做题二二叉树的中序遍历一 题目:94.Binary Tree Inorder TraversalMedium3067130Add to ListShareGiven a binary tree, return theinordertraversal of its nodes' values.Example:Input: [1,null,2,3] 1...原创 2020-07-04 00:35:25 · 535 阅读 · 0 评论 -
极客时间-算法训练营1.2 实战题目解析:移动零
一 序 本文属于极客时间-算法训练营 学习笔记系列。二 刷题步骤第一遍五分钟:读题 + 思考 直接看解法:多看几种,比较解法优劣 背诵、默写好的解法第二遍马上自己写 ——> Leetcode提交 多种解法比较、体会 ——> 优化!第三遍过了一天后,再重复做题 不同解法的熟练程度——>专项练习第四遍过了一周后:反复回来练习相同的题目第五遍面试前一周恢复性训练三 movezero题目:Given an arraynums, wri...原创 2020-07-03 13:43:01 · 1222 阅读 · 0 评论 -
极客时间-算法训练营 学习笔记 3递归的实现、特性以及思维要点
一 序本文属于极客时间-算法训练营 学习笔记二 递归递归本质就是循环,通过循环体调用自己来进行循环。向下进入不同的递归层,向上又回到原来层。用参数来进行函数不同层之间的传递变量。递归模板:重要递归终结条件处理当前层逻辑下探到下一层清理当前层public void recur(int level,int param){ //递归终结条件 if(level>MAX_LEVEL){ return; .原创 2020-07-02 23:06:28 · 777 阅读 · 0 评论 -
LeetCode 144. Binary Tree Preorder Traversal
一 题目Given a binary tree, return thepreordertraversal of its nodes' values.Example:Input:[1,null,2,3] 1 \ 2 / 3Output:[1,2,3]Follow up:Recursive solution is trivial, could you do it iteratively?二 分析题目都说了,递归是容易的,能否用迭代实...原创 2020-07-02 13:58:37 · 173 阅读 · 0 评论 -
leetcode 589. N-ary Tree Preorder Traversal
一题目Given an n-ary tree, return thepreordertraversal of its nodes' values.Nary-Tree input serializationis represented in their level order traversal, each group of children is separated by the null value (See examples).Follow up:Recursive solu...原创 2020-07-02 13:21:56 · 243 阅读 · 0 评论 -
极客时间-算法训练营 学习笔记 2
一 序 本文属于极客时间-算法训练营 学习笔记。二树作为铺垫,覃超老师先回顾了上节课的链表的特点。访问慢。跳表对他进行加速。如果吧一个指向延伸为多个指向,就有了树的概念。看图可知,有些概念:根节点,子节点,关系:父子,兄弟,层级:level,左右,子树等。不展开。树跟图的区别就是有没有环。关于树的发散引申:1, 斐波那契数列递归:本身扩展开就是状态树。2. 实际生活中:以棋类为代表,从哪个第一颗棋子开始,不断的扩散,直到叶子节点(终态:赢、输、和),从树状...原创 2020-07-02 00:07:02 · 1717 阅读 · 0 评论 -
极客时间-算法训练营 学习笔记 1. 数组、链表、跳表的基本实现和特性
一序 本文属于极客时间-算法训练营 学习笔记。二 数组 Java:new int[100]; 可以直接进行初始化 高级语言,对于数组中的元素类型没有限制--->泛型 计算机底层:内存空间开辟一块连续的地址。 每一个地址直接可以通过内存管理器进行访问 无论访问哪个元素,时间复杂度是一样的,常数O(1)的 特点:可以随机的访问。数组的问题,关键在于要增加、删除数组元素的时候,会进行相应的操作,如下图: 要在index=3的位置...原创 2020-06-30 23:39:19 · 487 阅读 · 0 评论 -
算法入门准备:学习笔记 时间复杂度
一序 不从数学角度来看公式推导,只看程序中。不考虑前面的系数。二 常见的7中时间复杂度Big O notationO(1):Constant Complexity 常数复杂度 O(log n):Logarithmic Complexity 对数复杂度 O(n):Linear Complexity 线性时间复杂度 O(n^2):N Square Complexity 平方 O(n^3):N Square Complexity 立方 O(2^n):Exponential Gro..原创 2020-06-29 15:01:29 · 471 阅读 · 0 评论 -
经纬度X公里内坐标点筛选与geohash
一 背景疫情期间,很多人估计看过这个疫情小区速查。数据来源于卫健委。下面是高德地图的:行政区域这个不说了。很多可以查的。最好的是地图开放API出来,根据API去筛选坐标周边。如果没有怎么处理呢?可以想一下:目标点再数据库存放的是经纬度坐标,数据库索引怎么来查5公里以内的数据呢?思路1: 先粗算下,网上有公式,把半径转换为一定的经纬度范围,赞根据经纬度范围去...原创 2020-02-11 16:10:54 · 2092 阅读 · 0 评论 -
贝叶斯过滤器理解及反黄牛应用
一 理论 概率论:从特殊推论一般、从样本推论全体。很多专业的文章一开始就贴出公式,看了就头大。我就从一个小白的角度,来理解下贝叶斯过滤器的理论及应用。 应该是中学数学内容:条件概率公式:事件A和B同时发生的概率为在A发生的情况下发生B或者在B发生的情况下发生A。所以有:换个写法:贝叶斯定理(Bayes’s Rule):如果有k个相互独立事件 A1,A2···...原创 2020-01-22 15:27:23 · 1166 阅读 · 0 评论 -
基于ANSJ的自定义词典分词与歧义纠正
一 背景 最近做个跟搜索有关的需求,分词工具的有很多,Java实现的ansj就比较好,是孙健大神开源的。功能很强大,这里暂时只用到了分词,也试过关键词统计。它支持自定义词典分词,对于歧义词分词,还支持通过歧义词典纠偏。二 使用 pom.xml引入 <dependency> <groupId>org.ansj</groupId>...原创 2019-12-12 10:08:38 · 2045 阅读 · 0 评论 -
便利蜂算法面试题:字符串是否包含另一个字符串的位置
一 题目整体来说,便利蜂的面试官还是挺nice的。题目还是经典的算法问题,我尝试就是默认的indexof方法,面试官说不行,我又试着用暴力循环来做。 int strIndex(String haystack, String needle) { //conner case if (haystack.length() < needle.l...原创 2019-11-01 00:18:21 · 2187 阅读 · 0 评论 -
面试题:编程之美:长度为n的整形数组,找出其中的任意n-1个数乘积最大的那一组
一 题目: 即给定一个长度为N的整数数组,只允许用乘法,不能用除法,计算任意(N-1)个数的组合中乘积最大的一组,并写出算法的时间复杂度。我们可以把所有可能的(N-1)个数的组合找出来,分别计算它们的乘积,并比较大小。由于总共有N个(N-1)个数的组合,总的时间复杂度为O(N2),显然这不是最好的解法。二 分析 这是一道老题了,网上搜了下06年了就有了。很惭愧自己还不会。...原创 2019-10-27 19:46:28 · 1171 阅读 · 0 评论 -
链表常见问题:有序合并
一 有序合并问题两个有序链表,合并后仍然有序。分析: 容易想到的就是找头,也就是判断下两个链表头结点val小的。然后采用尾部插入(从head插就覆盖了),遍历两个链表,每次取小的,知道有个链表为空退出。在判断有无剩余非空的链表,追加到尾部。/** * * @author bohu83 * */public class MergerList { public stati...原创 2019-10-17 10:12:54 · 563 阅读 · 0 评论 -
Longest string made up of only vowels
You are given with a string . Your task is to remove atmost two substrings of any length from the given string such that the remaining string contains vowels('a','e','i','o','u') only. Your aim is the...原创 2019-08-11 15:49:38 · 659 阅读 · 0 评论 -
LeetCode 6. ZigZag Conversion
一 题目The string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)P A H NA P L...原创 2019-08-24 01:16:53 · 190 阅读 · 0 评论 -
215. Kth Largest Element in an Array
一 题目Find thekth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.Example 1:Input: [3,2,1,5,6,4] and k = 2Output:...原创 2019-08-15 00:11:46 · 242 阅读 · 0 评论 -
leetcode11:container-with-most-water
一 题目Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of lineiis at (i,ai) and (i, 0). Fi...原创 2019-08-14 14:54:27 · 252 阅读 · 0 评论 -
10. Regular Expression Matching
一 题目Given an input string (s) and a pattern (p), implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding ele...原创 2019-08-30 01:07:13 · 165 阅读 · 0 评论 -
767. Reorganize String
Given a stringS, check if the letters can be rearranged so that two characters that are adjacent to each other are not the same.If possible, output any possible result. If not possible, return the...原创 2019-08-10 00:16:55 · 303 阅读 · 0 评论 -
leetcode 5. Longest Palindromic Substring
一 题目Given a strings, find the longest palindromic substring ins. You may assume that the maximum length ofsis 1000.Example 1:Input: "babad"Output: "bab"Note: "aba" is also a valid answer....原创 2019-08-20 20:38:29 · 367 阅读 · 0 评论 -
LeetCode 8. String to Integer (atoi)
一 题目Implementatoiwhichconverts a string to an integer.The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting fr...原创 2019-08-25 10:47:00 · 181 阅读 · 0 评论 -
内部排序算法:直接选择排序
整理几篇基本的排序算法。基本思路:n个记录的文件的直接选择排序可经过n-1趟直接选择排序得到有序结果:初始状态:无序区为R[1..n],有序区为空。第1趟排序:在无序区R[1..n]中选出关键字最小的记录R[k],将它与无序区的第1个记录R[1] 交换,使R[1..1]和R[2..n]分别变为记录个数增加1个的新有序区和记录个数减少1个的新无序区。……第i趟排序:第i趟排序开始时,当前有序区和无序...原创 2018-04-11 13:18:33 · 255 阅读 · 0 评论 -
LeetCode 12. Integer to Roman
一 题目Roman numerals are represented by seven different symbols:I,V,X,L,C,DandM.Symbol ValueI 1V 5X 10L 50C 100D ...原创 2019-08-31 00:46:41 · 142 阅读 · 0 评论 -
leetcode 9. Palindrome Number
一 题目Determine whether an integer is a palindrome. An integerisapalindrome when itreads the same backward as forward.Example 1:Input: 121Output: trueExample 2:Input: -121Output: fals...原创 2019-08-28 00:20:48 · 207 阅读 · 0 评论 -
7. Reverse Integer
一 题目Given a 32-bit signed integer, reverse digits of an integer.Example 1:Input: 123Output: 321Example 2:Input: -123Output: -321Example 3:Input: 120Output: 21Note:Assume we a...原创 2019-08-27 23:06:13 · 136 阅读 · 0 评论 -
leetcode 4. Median of Two Sorted Arrays
一 题目There are two sorted arraysnums1andnums2of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).You may assumenums1...原创 2019-08-27 13:59:00 · 155 阅读 · 0 评论 -
leetcode3:longest-substring-without-repeating-characters
3.Longest Substring Without Repeating CharactersGiven a string, find the length of thelongest substringwithout repeating characters.Example 1:Input: "abcabcbb"Output: 3 Explanation: The an...原创 2019-08-13 00:34:30 · 260 阅读 · 0 评论 -
LeetCode76. Minimum Window Substring
一 题目Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).Example:Input: S = "ADOBECODEBANC", T = "ABC"Output: "BANC"No...原创 2019-08-16 00:42:02 · 155 阅读 · 0 评论 -
LeetCode209. Minimum Size Subarray Sum
一 题目Given an array ofnpositive integers and a positive integers, find the minimal length of acontiguoussubarray of which the sum ≥s. If there isn't one, return 0 instead.Example:Input: s...原创 2019-08-15 20:15:48 · 219 阅读 · 0 评论 -
763. Partition Labels
一 题目Medium 难度A stringSof lowercase letters is given. We want to partition this string into as many parts as possible so that each letter appears in at most one part, and return a list of intege...原创 2019-08-07 14:31:07 · 170 阅读 · 0 评论 -
937. Reorder Log Files
You have an array oflogs. Each log is a space delimited string of words.For each log, the first word in each log is an alphanumericidentifier. Then, either:Each word after the identifier will ...原创 2019-08-06 23:11:35 · 204 阅读 · 0 评论 -
《算法图解》-6广度优先搜索
本文属于《图解算法》系列。一 图简介作者举例介绍了,两个地方换乘车路线最短。这种问题被称为最短路径问题(shorterst-path problem)。你经常要找出最短 路径,这可能是前往朋友家的最短路径,也可能是国际象棋中把对方将死的最少步数。解决最短 路径问题的算法被称为广度优先搜索。 解决问需要两个步骤:1 用图来建立问题模型。 ...原创 2019-06-08 20:45:00 · 1080 阅读 · 0 评论 -
《算法图解》-4 快速排序
本文属于《图解算法》系列。 一 分而治之 分而治之(devide and conquer)是递归思路是常见的解决方式。 作者以划分土地为例子,介绍这个思路:换个思路,这是数学上典型的求两个数的最大公约数(GCD)的问题。这里重申一下D&C的工作原理: (1) 找出简单的基线条件; (2) 确定如何缩小问题的规模,使其符合基线条件。下面是Java...原创 2019-06-05 23:17:55 · 2226 阅读 · 0 评论 -
一种第N个红包最大实现的方式
一 序 需求背景:常叫外面的同学对于美团或者饿了么的那种在微信群里分享的,第N个红包最大的领红包的营销模式很熟悉了。我们有类似的需求,其实N是后台可以配置的。营销规则有: 预算金额,有个范围。 第N个最大,N的范围配置。 最大金额:有个配置范围。 ...原创 2019-03-18 18:58:42 · 594 阅读 · 0 评论 -
选择问题:一组N个数确定其中第K个最大
一 序 打算补一下基础的数据结构,尽量保持每周一篇,后面多了会汇总一下。先从书上的第一章引论的例子开始。二 实现方法: 2.1 将N个数以排序,输出第n-K个位置上的元素。(或者是递减排序,输出第K个位置)public class Kmax { private static final Random r = new Random(); public static ...原创 2018-12-02 22:53:31 · 551 阅读 · 0 评论 -
求数组中出现频率超过一半的数
换个脑子,看C看的头大:无序数组中,一个数字出现的频率超过了其他数字出现的频率和,求这个数字。 package com.daojia.collect;import java.util.Arrays;import java.util.HashMap;import java.util.Map;import com.alibaba.fastjson.JSON;public clas...原创 2018-11-22 21:53:20 · 338 阅读 · 0 评论 -
二叉树系列:红黑树
介绍红黑树(Red-Black Tree,简称R-B Tree),它一种特殊的二叉查找树。红黑树是特殊的二叉查找树,意味着它满足二叉查找树的特征:任意一个节点所包含的键值,大于等于左孩子的键值,小于等于右孩子的键值。除了具备该特性之外,红黑树还包括许多额外的信息。红黑树的每个节点上都有存储位表示节点的颜色,颜色是红(Red)或黑(Black)。红黑树的特性:(1) 每个节点或者是黑色,或者是红色。...原创 2018-04-19 16:45:53 · 478 阅读 · 0 评论