详情

全站展示位

的平方根Heeepin

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 func mySqrt(x int) int { l, r := 0, x ans := -1 for l <= r { mid := l + (r-l)/2 if mid*mid == x { return mid } else if mid*mid < x { ans = mid l = mid + 1 } else { r = mid - 1 }。。。

推荐

肤浅是一种生存方式,亦是种态度Heeepin

随着年龄的增长,发现自己变得越来越物质,越来越爱慕虚荣,越来越肤浅了。虽然不想承认这件事,但,这确实是一个不折不扣的事实。 小时候曾经立志做一

二叉树前序遍历Heeepin

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 type TreeNode struct { Val int Left *TreeNode Right *TreeNode } func preorderTraversal(root *TreeNode) []int { var res []int var preorder func(root *TreeNode) preorder = func(root *TreeNode) { if root == nil { return } res = append(res, root.Val) preorder(root.Left) preorder(root.Right) } preorder(root) return res }

对称二叉树Heeepin

给定一个二叉树,检查它是否是镜像对称的。 递归实现 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

心灵鸡汤

  唐代白居易不仅是一位著名诗人,还是一位清正廉洁的官员,同时他也是中国历史上罕见的、也许是唯一通过自己的诗歌作品自觉向社会申报个人收入与财产的古代官吏。从壮年到老年,他总是以惭愧的心情将自己在担任不同职务时所得俸禄的多寡,悉数写进诗中向社会公布。

  在担任左拾遗时,他写到:“月惭谏纸二千张,岁愧俸钱三十万。”

  在担任苏州刺史时,他写到:“十万户州尤觉贵,二千食禄敢言贫?”

  在担任太子少傅时,他写到:“月俸百千官二品,朝廷雇我作闲人。”

  在他的人生就要画上句号时,他写到:“先卖南坊十亩园,次卖东郭五顷田,然后兼卖所居宅,彷佛获缗二三千......但恐此钱用不尽,即先朝露归夜泉。”

  白居易敢于将个人收入和个人财产状况向朝廷及全社会公布,充分说明了他清廉自守的高尚情操。

列表展示

主站展示位

区域和检索Heeepin

1 2 3 4 5 6 7 8 x & (x - 1) 消除掉x最后边的1位1 // 计算x最后一位1代表多少 func lowbit(x int) int { return x & (-x) } 所以 x &= x - 1 和 x -= lowbit(x) 是等价的 这道题用到了树状

找出缺失的观测数据Heeepin

现有一份 n + m 次投掷单个 六面 骰子的观测数据,骰子的每个面从 1 到 6 编号。观测数据中缺失了 n 份,你手上只拿到剩余 m 次投掷的数据。幸好你有 之前计算

两数之和4Heeepin

给定一个二叉搜索树 root 和一个目标结果 k,如果 BST 中存在两个元素且它们的和等于给定的目标结果,则返回 true。 1. set + 深度遍历 1 2 3 4 5 6 7 8 9 10 11

棒球比赛Heeepin

这是一道简单的模拟题,原题可以看leetcode上的问题,这里只是写下简单的题解 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 func calPoints(ops []string) int {

用队列实现栈Heeepin

最多调用100 次 push、pop、top 和 empty 每次调用 pop 和 top 都保证栈不为空 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

买卖股票的最佳时机Heeepin

题解 今天所获的最大利润可以假设我们在历史上最低的一天买入,所以记录下历史上到现在的最低值,这样就可以计算出每天的最大利润 1 2 3 4 5 6 7 8 9 10

验证回文串Heeepin

验证回文串,忽略大小写,忽略非字母数字和空格 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 func isPalindrome(s string) bool { s = strings.ToLower(s) for l, r := 0, len(s)-1; l < r; { if !unicode.IsLetter(int32(s[l])) && !unicode.IsDigit(int32(s[l])) { l++ continue } else if !unicode.IsLetter(int32(s[r])) && !unicode.IsDigit(int32(s[r]))

Python Hash Tables: Understanding DictionariesHeeepin

Hi guys, have you ever wondered how can Python dictionaries be so fast and reliable? The answer is that they are built on top of another technology: hash tables. Knowing how Python hash tables work will give you a deeper understanding of how dictionaries work and this could be a great advantage for your Python understanding because dictionaries are almost everywhere in Python. Hash Functions Before introducing hash tables and

AboutHeeepin

关于 我: random.choice(["踌躇满志","混底薪","躺平"]) heeeepin#gmail.com (

Weekend BreakHeeepin

周末小憩,自己做个饭喝个啤酒,dota两把,美哉美哉

Two Years EndHeeepin

曾经以为遇到了对的人,但终究是错付了 end 2021.09.30

Vue No Console LogHeeepin

vue生产环境不打印console.log的简单实现方法是重写console.log main.js 1 2 3 4 5 6 7 8 9 // 重写console.log函数,除

mysql-语句分析:profilingHeeepin

使用 profiling 命令可以了解 SQL 语句消耗资源的详细信息(每个执行步骤的开销)。 查看 profile 开启情况 select @@profiling; 0表示关闭,1表示开启 启用 profile set profiling = 1; 查看执行的 SQL 列表 show profiles;

存在重复元素Heeepin

给你一个整数数组 nums 。如果任一值在数组中出现 至少两次 ,返回 true ;如果数组中每个元素互不相同,返回 false 。 1 2 3 4 5 6 7 8 9 10 11 func containsDuplicate(nums []int) bool { m := make(map[int]bool, len(nums)) for i

Go String ConcurrentHeeepin

字符串在 Go 语言中的接口其实非常简单,每一个字符串在运行时都会使用如下的 reflect.StringHeader 表示,其中包含指向字节数组的指针和数组的大小: 1 2 3 4 5 6 7 8 9 10 //

博客寄语:

    人生真是好艰难鸭

实时播报:

博客号-学习成长

相信每一分耕耘都有每一分收获,致力帮助博客主所创作的博客能更快的被收录! 如果有其它需求,可联系下方邮箱。