557. Reverse Words in a String III 题目链接 557. Reverse Words in a String III 题目分析 题目要求把句子中的每个单词都倒转过来。 思路 这个很简单,用…
标签:LeetCode php
Leetcode PHP题解--D9 657. Robot Return to Origin
657. Robot Return to Origin 题目链接 657. Robot Return to Origin 题目分析 输入一串指令操作机器人,判断执行完指令后,能否回到原点。 思路 判断向上移动的次数是否等…
Leetcode PHP题解--D6 595. Big Countries
595. Big Countries 题目链接 595. Big Countries 题目分析 这道题是个SQL题。 要求返回国土面积大于300万平方公里或者人口多于2500万人的国家的名称、人口、面积。 思路 国土面积…
Leetcode PHP题解--D33 700. Search in a Binary Search Tree
700. Search in a Binary Search Tree 题目链接 700. Search in a Binary Search Tree 题目分析 从给定的二叉树中,查找指定值及其子节点。 思路 这个好像…
Leetcode PHP题解--D28 884. Uncommon Words from Two Sentences
884. Uncommon Words from Two Sentences 题目链接 884. Uncommon Words from Two Sentences 题目分析 返回给定的两个句子中唯一不同的单词。 思路 …
Leetcode PHP题解--D34 977. Squares of a Sorted Array
977. Squares of a Sorted Array 题目链接 977. Squares of a Sorted Array 题目分析 本题比较简单。对给定数组的每一个数字的平方。并对结果进行排序。 思路 遍历每…
Leetcode PHP题解--D31 965. Univalued Binary Tree
965. Univalued Binary Tree 题目链接 965. Univalued Binary Tree 题目分析 如果二叉树中所有节点的值都相同,那么该二叉树被称为单值二叉树。 当给定的二叉树是单值二叉树时…
Leetcode PHP题解--D29 973. K Closest Points to Origin
973. K Closest Points to Origin 题目链接 973. K Closest Points to Origin 题目分析 给一个坐标数组points,从中返回K个离0,0最近的坐标。 其中,用欧…
Leetcode PHP题解--D35 876. Middle of the Linked List
876. Middle of the Linked List 题目链接 876. Middle of the Linked List 题目分析 返回一个链表中最中间的元素。 思路 先全部塞入数组,再根据长度/2得到中间元…
Leetcode PHP题解--D32 617. Merge Two Binary Trees
617. Merge Two Binary Trees 题目链接 617. Merge Two Binary Trees 题目分析 给定两个二叉树,返回一个 将对应位置值相加后的二叉树。 例如,树A的顶点值为1,树B的顶…
Leetcode PHP题解--D1 771. Jewels and Stones
771. Jewels and Stones 由于是按难易度排序的,因此本题是第一题。 题目链接 771. Jewels and Stones 题目分析 从第二个参数S中找第一个参数J 中出现的字符,返回找到的字符个数。…
Leetcode PHP题解--D23 1. Two Sum
1. Two Sum 题目链接 1. Two Sum 题目分析 给一个数组A和一个数字n,从数组中找到两个数字,这两个数字相加之后等于n。 思路 这个只有用蛮力法了吧。 先拿第一个数组作为加数1,然后逐个相加,判断是否等…