sabo
sabo
全部文章
题解
c++(1)
因果推断(2)
技术栈(1)
机器学习(27)
程序静态分析(1)
算法实践(1)
算法总结(15)
统计(1)
自然语言处理(9)
论文笔记(13)
读书笔记(1)
面经(1)
项目学习(1)
归档
标签
去牛客网
登录
/
注册
Stay Forever Young
Act like a woman, think like a man
全部文章
/ 题解
(共2篇)
Leetcode 425
Leetcode 425 Word Square 题意:找所有满足要求的能够成对称矩阵的字符串的合集代码:https://leetcode.com/problems/word-squares/description/ class Solution{ public: s...
数据结构
2019-08-13
0
670
Leetcode 460
Leetcode 460 LFUCache 实现一个最近使用频率最少的置换器,即当容量满时,剔除最近最少使用的项。 解法 设置几个不同的unordered_map代表不同的作用unordered_map<int,int> valMap: 键:key, 值:valueunordered_...
数据结构
2019-08-07
0
602