题目 给定一个链表,删除链表的倒数第 n 个节点并返回头结点。例如: 给定一个链表: 1->2->3->4->5, 并且 n = 2. 当删除了倒数第二个节点后链表变成了 1->2->…
标签:LeetCode
[leetcode]222. Count Complete Tree Nodes
题目地址 https://leetcode.com/problems/count-complete-tree-nodes/ 题目大意 求一个完全二叉树的节点数量 解题思路 最简单的是遍历数节点,复杂度O(n),不出意外的…
【leetcode】整型翻转问题integer reverse
这道题目具体来说就是将一个整数翻转,如果超过32位的上线,输出0 ,否则输出其翻转数。主要注意的就是翻转后超上线要输出0 和负数的问题。 我比较笨,就直接想到了转化成字符串来做。不过这样空间复杂度就很大了。后来优化了一下…
Java实现 LeetCode 16 最接近的三数之和
16. 最接近的三数之和 给定一个包括 n 个整数的数组 nums 和 一个目标值 target。找出 nums 中的三个整数,使得它们的和与 target 最接近。返回这三个数的和。假定每组输入只存在唯一答案。 例如,…
LeetCode解题报告--Generate Parentheses
**题目:**Generate Parentheses Given n pairs of parentheses, write a function to generate all combinations of wel…
leetcode508. Most Frequent Subtree Sum
题目要求 Given the root of a tree, you are asked to find the most frequent subtree sum. The subtree sum of a node …
27. Remove Element(Java)
Given an array and a value, remove all instances of that value in place and return the new length. Do not allo…
LeetCode-Problem 24:交换链表中相邻结点
算法 给定一个链表,对每两个相邻的结点作交换并返回头节点。 例如: 给定 1->2->3->4,你应该返回 2->1->4->3。 算法实现 public ListNode swapP…
leetcode python 常见分类问题模板(复制粘贴就能用) 更新中...
排序 插入、希尔、冒泡、选择 def insertSort(arr): for i in range(1,len(arr)): tmp = arr[i] for j in range(i-1,-1,-1): if arr…
LeetCode Math算法题(Easy级别)整理 Part 2
172. Factorial Trailing Zeroes 题目简介:给定一个数n,求n!的结尾连续的0的个数。 解题思路:通过观察可得,0只可能由2和5相乘获得,而5的个数总是小于等于2的个数,所以问题就转为了寻找n…
LeetCode:60. Permutation Sequence,全排列的第n个子列
LeetCode:60. Permutation Sequence,n全排列的第k个子列 : 题目: LeetCode: 60. Permutation Sequence 描述: The set [1,2,3,…,n] …
LeetCode_ 657. Judge Route Circle
题目: Initially, there is a Robot at position (0, 0). Given a sequence of its moves, judge if this robot makes a…