Fraction to Recurring Decimal 最新解法及思路:https://yanjia.me/zh/2018/11/… Given two integers representing the…
分类:LeetCode
力扣(LeetCode) -150 逆波兰表达式求值
本题考察的是后缀(逆波兰)表达式和栈的使用 题目描述 根据逆波兰表示法,求表达式的值。 有效的运算符包括 +, -, *, / 。每个运算对象可以是整数,也可以是另一个逆波兰表达式。 说明: 整数除法只保留整数部分。 给…
LeetCode算法题-Count Binary Substrings(Java实现)
这是悦乐书的第293次更新,第311篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第161题(顺位题号是696)。给定一个字符串s,计算具有相同数字0和1的非空且连续子串的数量,并且这些子串…
[LeetCode] Convert Sorted List to Binary Search Tree 将有序链表转为二叉搜索树
Given a singly linked list where elements are sorted in ascending order, convert it to a height balance…
[LeetCode] Minimum Moves to Equal Array Elements II 最少移动次数使数组元素相等之二
Given a non-empty integer array, find the minimum number of moves required to make all array …
[LeetCode] Reverse String II 翻转字符串之二
Given a string and an integer k, you need to reverse the first k characters for every 2k characters cou…
[LeetCode] Maximum Average Subarray II 子数组的最大平均值之二
Given an array consisting of n integers, find the contiguous subarray whose length is gr…
20. 有效的括号(Swift版)
一、题目 给定一个只包括 ‘(‘,’)’,'{‘,’}’,'[‘,’]’ 的字符串,判断字符串是否有…
[Leetcode]7. 整数反转
题目描述: 题目难度:简单 给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 示例 1: 输入: 123 输出: 321 示例 2: 输入: -123 输出: -321 示例 3: 输入: 120…
不使用任何额外变量判断回文数字
不使用任何额外变量判断回文数字 Palindrome Number Determine whether an integer is a palindrome. Do this without extra space. N…
[LeetCode] Integer Replacement 整数替换
Given a positive integer n and you can do operations as follow: If n is even…
LeetCode | Permutations II
题目: Given a collection of numbers that might contain duplicates, return all possible unique permutations. For …