【LeetCode】7.Reverse Integer1 问题Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside th 2024-01-30 算法LeetCode 位运算
【LeetCode】190.Reverse Bits1 问题Reverse bits of a given 32 bits unsigned integer. Note: Note that in some languages, such as Java, there is no unsi 2024-01-30 算法LeetCode 位运算
【LeetCode】338.Counting Bits1 问题Given an integer n, return an array ans of length n + 1 such that for each i (0 <= i <= n), ans[i] i 2024-01-30 算法LeetCode 位运算
【LeetCode】191.Number of 1 Bits1 问题Write a function that takes the binary representation of an unsigned integer and returns the number of ‘1’ bits it h 2024-01-30 算法LeetCode 位运算
【每日一面】阿里面试:说说订单超时怎么解决的?1 前言在电商场景中,有很多订单,有的用户觉得刚下的订单(未支付)相对于其他平台有点贵了,不想支付;有的是点了下单,但又被其他商品吸引过去,忘记付款了。这些场景下必然会有一些支付超时的订单等待后台去处理,如果不处理,又会造成很多废单,且占用 2024-01-26 每日一面Redis 消息队列 时间轮盘 定时任务
【LeetCode】20.Valid Parentheses1 问题Given a string s containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[‘ and ‘]’, determine if the input string is va 2024-01-24 算法LeetCode 堆栈
【LeetCode】22.Generate Parentheses1 问题Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. 1.1 实例一 Inpu 2024-01-24 算法LeetCode 回溯算法
【每日一面】抖音面试:说说二维码登录的原理1 前言前几天看了极客时间一个二维码的视频,写的不错,这里总结下。 在日常生活中,二维码出现在很多场景,比如超市支付、系统登录、应用下载等等。了解二维码的原理,可以为技术人员在技术选型时提供新的思路。对于非技术人员呢,除了解惑,还可以引导他 2024-01-23 每日一面二维码登录 token
【Docker学习】4.与Dockerfile优化有关的5个小技巧1 使用精简的alpine镜像如果不做特殊指定,一般docker内运行的Linux系统均为全功能的镜像,占据着大量的磁盘空间,而一般开发者部署的应用不会超过几百兆,甚至前端应用只有几十KB。 因而我们需要一种精简过后的Linux系统,只需要 2024-01-18 Docker学习Docker Dockerfile