题目链接:7. Reverse Integer 难度:Easy Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123…
标签:LeetCode
[LeetCode][Tree] 333. Largest BST Subtree
Problem More LeetCode Discussions Given a binary tree, find the largest subtree which is a Binary Search Tree …
LeetCode算法题-Happy Number(Java实现)
这是悦乐书的第188次更新,第190篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第47题(顺位题号是202)。编写算法以确定数字是否“幸福”。 幸福数字是由以下过程定义的数字:从任何正整数…
LeetCode算法题-Reverse Linked List(Java实现)
这是悦乐书的第192次更新,第195篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第51题(顺位题号是206)。反转单链表。例如: 输入:1-> 2-> 3-> 4->…
LeetCode | 3. Longest Substring Without Repeating Characters
题目链接:https://leetcode.com/problems/longest-substring-without-repeating-characters/ 题目难度:Medium 题目描述: Given a s…
LeetCode刷题之Count And Say
Problem The count-and-say sequence is the sequence of integers with the first five terms as following: 1. 1 2.…
leetcode刷题笔记(1)(python)
最近时间准备面试,开始在leetcode上刷题了。于是在segmentfault上写点东西来记录下。可能会有各种弱智情况,望指出。 Array Partition I题意:这个题目看原题实在没有看懂,在网上找的翻译,大致…
038 Count and Say[E]
1 题目描述 The count-and-say sequence is the sequence of integers with the first five terms as following: 1. 1 2. …
Leetcode 557: Reverse words in a string III
题目 出处 Given a string, you need to reverse the order of characters in each word within a sentence while still p…
[投稿说明]
首先,多谢大家关注这个平台,并把你的学习过程分享出来。 为了让大家把这里写的更加规范,更有参考价值,现在拟定以下几条规范; 1. 这里放的是Leetcode中的题目及解法; 2. 文章中至少包含两个链接,一个是原题链接,…
LeetCode算法题-Intersection of Two Linked Lists(Java实现)
这是悦乐书的第178次更新,第180篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第37题(顺位题号是160)。编写程序以找到两个单链表交叉的节点。例如: 以下两个链表: A: &…
5. 树
树相关题目套路: 先序 中序 后序 DFS其他遍历方式(如右左根) 层序遍历 if (!root) xxx; //应对只有左子树或只有右子树的情况 if (!root->left && !root-…