LeetCode(100)题解--Same Tree
摘要:https://leetcode.com/problems/same-tree/ 题目: Given two binary trees, write a function to check if they are equal or not. Two binary trees are consider
阅读全文
C++复习:位运算
摘要:与 a&b : 1010&1100=1000 或 a|b : 1010|1100=1110异或 a^b : 1010^1100=1001按位取反 ~a : ~1010=0101左移 a>1 -1010>>1=-101无符号右移a>>>1
阅读全文
研究领域总结(二):稀疏——矩阵补全
摘要:I.定义 矩阵补全(Matrix Completion)是指如下一个问题: 有一个巨大的矩阵
X∈Rm×n,然而人们只能观测到其中的部分元素。记观测到的矩阵为矩阵
M∈Rm×n(没观测到的元素位置以
0填充),则...
阅读全文