leetcode – 33. Search in Rotated Sorted Array – Medium descrition Suppose an array sorted in ascen…
标签:LeetCode
2018-05-10 367. Valid Perfect Square
题意:给你一个正数,判断这个正数是不是完全平方数。 解题思路:“完全平方数” = 1 + 3 + 5 + 7 + 9 +… 1^2 = 1; 2^2 = 1 + 3 = (1 + 3) / 2 = 2 + 2…
[array] leetCode-4-Median of Two Sorted Arrays-Hard
leetCode-4-Median of Two Sorted Arrays-Hard descrition There are two sorted arrays nums1 and nums2 of size m a…
LeetCode算法题-Find Pivot Index(Java实现)
这是悦乐书的第304次更新,第323篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第172题(顺位题号是724)。给定一个整数nums数组,编写一个返回此数组的“pivot”索引的方法。我们…
Leetcode之2-两数相加(Add Two Numbers)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给出两个 非空 的链表用来表示两个非负的整数。 其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储…
[LeetCode]Palindrome Number解析
链接:https://leetcode.com/problems/palindrome-number/#/description 难度:Easy 题目:9.Palindrome Number Determine whet…
Swift 移动零 - LeetCode
题目:移动零 描述: 给定一个数组 nums, 编写一个函数将所有 0 移动到它的末尾,同时保持非零元素的相对顺序。 例如, 定义 nums = [0, 1, 0, 3, 12],调用函数之后, nums 应为 [1, …
LeetCode 188. Best Time to Buy and Sell Stock IV
Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to…
Longest Valid Parentheses 解题报告
原题:Given a string containing just the characters ‘(‘ and ‘)’, find the length of the l…
递归——求阶乘
文章作者:Tyan 博客:noahsnail.com | CSDN | 简书 1. 递归 一个函数调用其自身,就是递归。 2. 求阶乘 问题描述 求n的阶乘,n>=0…
力扣(LeetCode) -148 排序链表
本题考察的归并排序(或插入排序)和链表操作 题目描述 在 O(n log n) 时间复杂度和常数级空间复杂度下,对链表进行排序。 示例1: 输入: 4->2->1->3 输出: 1->2->…
LeetCode刷题之路 模糊坐标
模糊坐标【中等】 我们有一些二维坐标,如 "(1, 3)" 或 "(2, 0.5)",然后我们移除所有逗号,小数点和空格,得到一个字符串S。返回所有可能的原始字符串到一个列表中。 原始的坐标表示法不会存在多余的零,所以不…