摘要:
使用两种语言实现,先贴C++的 下面贴出C#的 阅读全文
摘要:
对BST树进行中序遍历,得到递增序列,然后依次计算相邻两元素之间的差,并保存最小的差。 阅读全文
摘要:
class Solution { public: bool isOneBitCharacter(vector& bits) { int len = bits.size(); if (len == 1) { if (bits[0] == 0) { return t... 阅读全文
摘要:
本题不会做,从网上找到了python3的解法,记录如下。 阅读全文
摘要:
public class Solution { public bool RotateString(string A, string B) { string temp = A; int len = A.Length; int lenB = B.Length; ... 阅读全文
摘要:
public class Solution { public int RotatedDigits(int N) { int sum = 0; for (int i = 1; i <= N; i++) { var str = i.ToString(... 阅读全文
摘要:
本题先寻找字符串中0变1,或者1变0的位置作为分隔位置。然后从这个分隔位置同时向左、右两侧搜索。 找到的左连续串和右连续串,都进行累计。 阅读全文
摘要:
本题是分支限界法,广度优先搜索,使用map加速查询,防止超时。 阅读全文
摘要:
本题属于分支限界的题目,广度优先进行搜索。利用访问的数组Visited,记录已经走过的路径,以减少重复计算。 阅读全文
摘要:
这道题没什么思路,参照网上的答案,再此先做一个记录吧。 阅读全文