上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 73 下一页
摘要: Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; } Populate each next pointer to point to its ne 阅读全文
posted @ 2018-07-09 22:15 Shendu.CC 阅读(176) 评论(0) 推荐(0) 编辑
摘要: tesetset 阅读全文
posted @ 2018-07-06 16:41 Shendu.CC 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Pick One Given a string S and a string T, count the number of distinct subsequences of S which equals T. A subsequence of a string is a new string whi 阅读全文
posted @ 2018-07-06 16:27 Shendu.CC 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, flatten it to a linked list in-place. For example, given the following tree: The flattened tree should look like: 将一个二叉树变成一个链表形式的 阅读全文
posted @ 2018-07-06 11:02 Shendu.CC 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum. Note: A leaf is a node with no children. Exampl 阅读全文
posted @ 2018-07-04 21:05 Shendu.CC 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. N 阅读全文
posted @ 2018-07-02 20:12 Shendu.CC 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the nearest l 阅读全文
posted @ 2018-06-29 20:58 Shendu.CC 阅读(127) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as: a binary tree in which the dep 阅读全文
posted @ 2018-06-28 17:54 Shendu.CC 阅读(117) 评论(0) 推荐(0) 编辑
摘要: Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. For this problem, a height-balanced bina 阅读全文
posted @ 2018-06-27 21:49 Shendu.CC 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Given an array where elements are sorted in ascending order, convert it to a height balanced BST. For this problem, a height-balanced binary tree is d 阅读全文
posted @ 2018-06-27 10:02 Shendu.CC 阅读(111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 73 下一页