牛客986224893号
牛客986224893号
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
牛客986224893号的博客
全部文章
(共2篇)
题解 | #二进制中1的个数#
c++新解法,用bitset容器轻松解决 class Solution { public: int NumberOf1(int n) { bitset<32> a = n; int num = 0; for (int i ...
C++
2021-10-26
0
342
题解 | #实习广场投递简历分析(一)#
稍微优化了一下第一个代码,用‘1’表示访问过 class Solution { public: bool exist(vector<vector<char> > &board, string word) { int m = board.size...
2021-09-14
0
608