喜欢唱跳rap篮球的青年求offer
喜欢唱跳rap篮球的青年求offer
全部文章
分类
归档
标签
去牛客网
登录
/
注册
喜欢唱跳rap篮球的青年求offer的博客
全部文章
(共14篇)
题解 | #单词倒排#
#include <iostream> #include <iterator> #include <string> #include <vector> #include <algorithm> using namespace std; i...
2023-02-10
0
337
题解 | #汽水瓶#
#include <iostream> #include <vector> using namespace std; int main() { vector<int> out; vector<int> dp(101,0); dp[1] = 0;...
2023-02-10
1
302
题解 | #求int型正整数在内存中存储时1的个数#
#include <iostream> using namespace std; int main() { int n; cin >> n; int tot = 0; while(n!=0){ if(n%2==1) tot++; n/=2; ...
2023-02-09
1
272
题解 | #字符个数统计#
#include <bits/stdc++.h> using namespace std; int main() { string s1; cin >> s1; bool test[128] = {false}; int tot=0; for(...
2023-02-09
1
261
首页
上一页
1
2
下一页
末页