1. 题目 Given n, how many structurally unique BST’s (binary search trees) that store values 1…n? For…
分类:LeetCode
LeetCode 142. Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not m…
Google OA题目:给出使得字符串B成为字符串A重复自己构成的字符串的子字符串,字符串A最少需重复的次数
实现如下函数: class Solution {public int soluition(String A, String B); } 其应当满足的功能为:给定包含N个字母的string A和包含M个字母的string …
Topological Sorting
Given an directed graph, a topological order of the graph nodes is defined as follow: For each directed edge A…
二刷364. Nested List Weight Sum II
Medium 大哥呀,你有些L家的tag题目虽然做过但是时间有点久远了呀,比如这道两个月前做的,做起来很生疏呀 这道题思路是对的,卡在了求最深深度上. 我看到人家这一段code就觉得字字如金 for (NestedInt…
16. 3Sum Closest
16. 3Sum Closest 题目 Given an array S of n integers, find three integers in S such that the sum is closest to a…
112. Path Sum
欢迎fork and star:Nowcoder-Repository-github 112. Path Sum 题目 Given a binary tree and a sum, determine if the tr…
LeetCode | Remove Duplicates from Sorted List II(删除链表中重复结点2)
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numb…
LeetCode算法代码笔记(11-15)
给自己的目标:[LeetCode](https://leetcode.com/ "Online Judge Platform") 上每日一题 在做题的过程中记录下解题的思路或者重要的代码碎片以便后来翻阅。 项目源码:gi…
LeetCode算法题-Subtree of Another Tree(Java实现)
这是悦乐书的第265次更新,第278篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第132题(顺位题号是572)。给定两个非空的二进制树s和t,检查树t是否具有完全相同的结构和具有子树s的节…
61.Rotate List-Leetcode
debug遇到的问题 1.语法之指向指针成员 错误写法: pivot_start.next=head; //指针存储的是地址 *pivot_start.next=head; //因为'.'的优先级高于'*',所以报错 报…
上传本地项目到github所遇到的问题
本地有一个项目,想上传到github, 很久没用了有些生疏。现在的状况是已经在github建好了repository. 在本地项目里init了git, 当前分支为remotes/origin/master, 但push …