摘要:
100. Same Tree Given two binary trees, write a function to check if they are the same or not. Two binary trees are considered the same if they are str 阅读全文
摘要:
99. Recover Binary Search Tree Two elements of a binary search tree (BST) are swapped by mistake. Recover the tree without changing its structure. Exa 阅读全文
摘要:
98. Validate Binary Search Tree Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is defined as follows: The left 阅读全文
摘要:
97. Interleaving String Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. Example 1: Example 2: 阅读全文
摘要:
96. Unique Binary Search Trees Given n, how many structurally unique BST's (binary search trees) that store values 1 ... n? Example: 阅读全文
摘要:
95. Unique Binary Search Trees II Given an integer n, generate all structurally unique BST's (binary search trees) that store values 1 ... n. Example: 阅读全文
摘要:
94. Binary Tree Inorder Traversal Given a binary tree, return the inorder traversal of its nodes' values. Example: 阅读全文
摘要:
93. Restore IP Addresses Given a string containing only digits, restore it by returning all possible valid IP address combinations. Example: 阅读全文
摘要:
92. Reverse Linked List II Reverse a linked list from position m to n. Do it in one-pass. Note: 1 ≤ m ≤ n ≤ length of list. Example: 阅读全文
摘要:
91. Decode Ways A message containing letters from A-Z is being encoded to numbers using the following mapping: Given a non-empty string containing onl 阅读全文
摘要:
90. Subsets II Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set). Note: The solution set 阅读全文
摘要:
HTML: 1.严格模式与混杂模式如何区分?如何触发这两种模式? 2.html新特新,语义化的目的是什么?常用结构标签及其作用?谈谈对语义化的理解 3.常用浏览器内核 4.img的title和alt属性的区别 5.src和href的区别 6.<strong><em>和<b><i>标签的区别 7.你知 阅读全文