为了更加高效地调试LeetCode中关于ListNode的题目,编写了快速初始化ListNode的通用静态方法,重写ListNode的toString方法。 不多说了,直接上代码 ListNode 类 重写了toStri…
标签:LeetCode
[剑指offer] 旋转数组的最小数字
本文首发于我的个人博客:尾尾部落 题目描述 把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 输入一个非减排序的数组的一个旋转,输出旋转数组的最小元素。 例如数组{3,4,5,1,2}为{1,2,3,4…
405. Convert a Number to Hexadecimal
/* 405. Convert a Number to Hexadecimal Total Accepted: 5643 Total Submissions: 13518 Difficulty: Easy Contrib…
LeetCode-67. Add Binary
问题描述 Given two binary strings, return their sum (also a binary string). For example, a = “11” b = …
[剑指offer] 按之字形顺序打印二叉树
本文首发于我的个人博客:尾尾部落 题目描述 请实现一个函数按照之字形打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右至左的顺序打印,第三行按照从左到右的顺序打印,其他行以此类推。 解题思路 设两个栈,s2存放奇…
[LeetCode]Merge Sorted Array 合并排序数组
链接:https://leetcode.com/problems/merge-sorted-array/description/ 难度:Easy 题目:88. Merge Sorted Array Given two s…
121. Best Time to Buy and Sell Stock
121. Best Time to Buy and Sell Stock Say you have an array for which the ith element is the price of a given s…
[LeetCode][Python]12. Integer to Roman
Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999. 罗马…
LeetCode算法练习——深度优先搜索 DFS(3)
更多干货就在我的个人博客 BlackBlog.tech 欢迎关注! 也可以关注我的csdn博客:黑哥的博客 谢谢大家! LeetCode Everyday! 我们继续LeetCode之旅,这一篇再完成十个题,我们就进入下…
Leetcode之18-四数之和(4Sum)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 前言 第一次碰到四数之和这道算法题时,内心是兴(beng)奋(kui)的。mmp,之前貌似做了好几道XX之和的算法题了,竟然还来…
LeetCode算法题-Reverse String II(Java实现)
这是悦乐书的第256次更新,第269篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第123题(顺位题号是541)。给定一个字符串和一个整数k,你需要反转从字符串开头算起的每2k个字符的前k个…
Six Degrees
Six degrees of separation is the theory that everyone and everything is six or fewer steps away, by way of int…