上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页
摘要: 543. Diameter of Binary Tree(二叉树的直径) 链接 https://leetcode cn.com/problems/diameter of binary tree 题目 给定一棵二叉树,你需要计算它的直径长度。一棵二叉树的直径长度是任意两个结点路径长度中的最大值。这条路 阅读全文
posted @ 2020-03-18 14:17 cheng102e 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 234. Palindrome Linked List(回文链表) 链接 https://leetcode cn.com/problems/palindrome linked list 题目 请判断一个链表是否为回文链表。 示例 1: 输入: 1 2 输出: false 示例 2: 输入: 1 2 阅读全文
posted @ 2020-03-18 13:51 cheng102e 阅读(81) 评论(0) 推荐(0) 编辑
摘要: LeetCode 206. Reverse Linked List (反转链表) 题目 链接 https://leetcode-cn.com/problems/reverse-linked-list/ 问题描述 反转一个单链表。 示例 输入: 1->2->3->4->5->NULL 输出: 5->4 阅读全文
posted @ 2020-03-18 11:15 cheng102e 阅读(86) 评论(0) 推荐(0) 编辑
摘要: LeetCode 160. Intersection of Two Linked Lists(相交链表) 题目 链接 https://leetcode-cn.com/problems/intersection-of-two-linked-lists 问题描述 给你两个单链表的头节点 headA 和 阅读全文
posted @ 2020-03-17 14:05 cheng102e 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1160. Find Words That Can Be Formed by Characters(拼写单词) 链接 https://leetcode cn.com/problems/find words that can be formed by characters 题目 给你一份『词汇表』(字 阅读全文
posted @ 2020-03-17 11:46 cheng102e 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 面试题 01.06. Compress String LCCI(字符串压缩) 链接 https://leetcode cn.com/problems/compress string lcci 题目 字符串压缩。利用字符重复出现的次数,编写一种方法,实现基本的字符串压缩功能。比如,字符串aabcccc 阅读全文
posted @ 2020-03-16 21:46 cheng102e 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1038. Binary Search Tree to Greater Sum Tree(从二叉搜索树到更大和树) 链接 https://leetcode cn.com/problems/binary search tree to greater sum tree/ 题目 给出二叉 搜索 树的根节点 阅读全文
posted @ 2020-03-14 17:24 cheng102e 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 538. Convert BST to Greater Tree(把二叉搜索树转换为累加树) 链接 https://leetcode cn.com/problems/convert bst to greater tree 题目 给定一个二叉搜索树(Binary Search Tree),把它转换成为 阅读全文
posted @ 2020-03-14 17:20 cheng102e 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 141. Linked List Cycle(环形链表) 链接 https://leetcode cn.com/problems/linked list cycle 题目 给定一个链表,判断链表中是否有环。 为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开 阅读全文
posted @ 2020-03-14 16:18 cheng102e 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 155. Min Stack(最小栈) 链接 https://leetcode cn.com/problems/min stack 题目 设计一个支持 push,pop,top 操作,并能在常数时间内检索到最小元素的栈。 push(x) 将元素 x 推入栈中。 pop() 删除栈顶的元素。 top( 阅读全文
posted @ 2020-03-14 11:43 cheng102e 阅读(74) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页