26. 删除排序数组中的重复项 问题 给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度。 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 额外空间的条件下完成。 …
分类:LeetCode
[LeetCode By Go 30]598. Range Addition II
题目 Given an m * n matrix M initialized with all 0’s and several update operations. Operations are repres…
[LeetCode] Assign Cookies 分点心
Assume you are an awesome parent and want to give your children some cookies. But, you should give each…
LeetCode | Container With Most Water
题目: Given n non-negative integers a1, a2, …, an, where each represents a point …
LeetCode 34. Search for a Range
题目 给定一个包含 n 个整数的排序数组,找出给定目标值 target 的起始和结束位置。 如果目标值不在数组中,则返回[-1, -1] 样例 给出[5, 7, 7, 8, 8, 10]和目标值target=8,返回[3…
19. 删除链表的倒数第N个节点(Swift版)
一、题目 给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。 示例: 给定一个链表: 1->2->3->4->5, 和 n = 2. 当删除了倒数第二个节点后,链表变为 1->…
c++计算中缀表达式:一个识别括号的简易计算器
point:用两个栈分别存数字和运算符,对于在栈内和在栈外的运算符,需要有两套优先级。 #include <iostream> #include <string> #include <sta…
[剑指offer] 正则表达式匹配
本文首发于我的个人博客:尾尾部落 题目描述 请实现一个函数用来匹配包括’.’和’*’的正则表达式。模式中的字符’.’表示任意一个字符,而’…
[LeetCode By Go 96]434. Number of Segments in a String
题目 Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-spa…
LeetCode | Single Number
题目: Given an array of integers, every element appears twice except for one. Find that single one. No…
[Leetcode] Subset 子集
Subset I Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must …
[Leetcode] Median of Two Sorted Arrays 有序数组中位数
Median of Two Sorted Arrays 最新解法及思路:https://yanjia.li/zh/2018/11/… There are two sorted arrays nums1 and…