Given a binary tree, return the preorder traversal of its nodes’ values. For example:Given bin…
标签:LeetCode
Leetcode: 665. 非递减数列
作者:Liao_Hong_XiDian 来源:CSDN 原文:https://blog.csdn.net/qq_23523409/article/details/85232742 版权声明:本文为博主原创文章,转载请附上…
LeetCode:48.旋转图像
给定一个 n × n 的二维矩阵表示一个图像。将图像顺时针旋转 90 度。说明:你必须在原地旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要使用另一个矩阵来旋转图像。 示例 1: 给定 matrix = [ [1,…
c语言-字符串放入字符数组
用字符串指针将字符串存入字符数组中 #include <stdio.h> int main(char argc, char *argv[]) { int i = 0; int j = 0; char *str…
Java实现 LeetCode 15 三数之和
15. 三数之和 给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 …
LeetCode解题报告--Remove Duplicates from Sorted Array
题目: Given a sorted array, remove the duplicates in place such that each element appear only once and return th…
Leetcode 题解 - 动态规划-字符串编辑(1):删除两个字符串的字符使它们相等
[LeetCode] Delete Operation for Two Strings 两个字符串的删除操作 求最大子序列的长度, 然后总长度减去 2*子序列长度 两种情形求子序列 dp[i][j] = dp[i-1][…
【leetcode】最接近的三数之和,python实现
算法思路:跟上提的三数之和为0的题目解题思路一样,但是不同的地方在于它多包含了一个target,所以在计算的时候直接把target减掉,就是计算三数之和和0的距离了,所以是绝对值。 那在这里的迭代算法思路是什么。首先,循…
试解leetcode算法题--两数之和
<题目描述> 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。 假设每个输入只对应一种答案,且同样的元素不能被重复利用。 <原题链接> https://leetcode-cn.com/…
[Leetcode 136] Single Number
原题: Given an array of integers, every element appears twice except for one. Find that single one. Note: Your a…
LeetCode-6:ZigZag Conversion(Z字形变换)
题目: The string “PAYPALISHIRING” is written in a zigzag pattern on a given number of rows like this: (you may w…
Leetcode #1 2sum
题目 Given an array of integers, return indices of the two numbers such that they add up to a specific target. Y…