Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, , /. Each…
标签:LeetCode
285. Inorder Successor in BST
Problem Given a binary search tree and a node in it, find the in-order successor of that node in the BST. Note…
Leetcode 214. Shortest Palindrome
Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and …
Leetcode 179. Largest Number
Given a list of non negative integers, arrange them such that they form the largest number. For example, given…
leecode题解 94. Binary Tree Inorder Traversal
Given a binary tree, return the inorder traversal of its nodes’ values. Example: Input: [1,null,2,3] 1 \…
[剑指offer] 数字在排序数组中出现的次数
本文首发于我的个人博客:尾尾部落 题目描述 统计一个数字在排序数组中出现的次数。 解题思路 正常的思路就是二分查找了,我们用递归的方法实现了查找k第一次出现的下标,用循环的方法实现了查找k最后一次出现的下标。 除此之外,…
LeetCode
LeetCode 刷题随手记 – 第一部分 前 256 题(非会员),仅算法题,的吐槽 https://leetcode.com/problemset/algorithms/ 说明 刷题指南 不要背题,前面的…
2018-06-05 840. Magic Squares In Grid
题意:给你一个二维数组,判断有多少个神奇正方形,神奇正方形:三行三列,包含1-9个不同的数字,每行、每列、每个对角线加起来和相等。 解题思路: 遍历这个二维数组,行和列都为从0—— (size()-2),然后判断这九个数…
LeetCode 213. House Robber II
Note: This is an extension of House Robber. After robbing those houses on that street, the thief has found him…
LeetCode算法题-Can Place Flowers(Java实现)
这是悦乐书的第272次更新,第287篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第140题(顺位题号是605)。假设你有一个花坛,其中一些地块是种植的,有些则不是。 然而,花不能种植在相邻…
148. Sort List, O(1) 空间的做法
Sort a linked list in O(n log n) time using constant space complexity. 这道要求O(1)空间复杂度,这是比较难的地方。 常用的merge sort都是…
821. Shortest Distance to a Character
原题网址:https://leetcode.com/problems/shortest-distance-to-a-character/description/ 大意:找出一个string中每个字母到给定字母的最短距离(…