不愿吃饼的土拨鼠很爱交友
不愿吃饼的土拨鼠很爱交友
全部文章
分类
归档
标签
去牛客网
登录
/
注册
不愿吃饼的土拨鼠很爱交友的博客
全部文章
(共91篇)
题解 | #放苹果#
#include <bits/stdc++.h> using namespace std; // 非递归 只是动态规划 int myfun(int m, int n) { vector<vector<int>> dp(m+1, vector<int...
2023-02-09
0
244
题解 | #表达式求值#
#include <iostream> #include <string> #include <stack> // #include <cctype> using namespace std; int compute(string&s, int& ...
2023-02-08
1
358
题解 | #输出单向链表中倒数第k个结点#
#include <iostream> using namespace std; struct ListNode{ int m_nKey; ListNode* m_pNext; ListNode():m_nKey(0),m_pNext(nullptr){}; ...
2023-02-07
0
326
题解 | #输出单向链表中倒数第k个结点#
#include <iostream> using namespace std; struct ListNode{ int m_nKey; ListNode* m_pNext; ListNode():m_nKey(0),m_pNext(nullptr){}; ...
2023-02-07
0
262
题解 | #求int型正整数在内存中存储时1的个数#
#include <iostream> using namespace std; // https://baike.baidu.com/item/%E5%8D%81%E8%BF%9B%E5%88%B6%E8%BD%AC%E4%BA%8C%E8%BF%9B%E5%88%B6/393189...
2023-02-06
0
267
题解 | #字符个数统计#
#include <iostream> #include <string> #include <unordered_set> using namespace std; //https://blog.csdn.net/jianyingyao7658/article...
2023-02-06
0
0
题解 | #合并表记录#
#include <iostream> #include <unordered_map> #include <algorithm> #include <vector> using namespace std; bool cmp(vector<i...
2023-02-06
0
277
题解 | #质数因子#
#include <iostream> #include<cmath> using namespace std; // 搞清楚什么是质因子 https://baike.baidu.com/item/%E8%B4%A8%E5%9B%A0%E5%AD%90/10720836 ...
2023-02-06
0
318
题解 | #进制转换#
#include <iostream> #include <string> #include <cctype> #include <cmath> using namespace std; // 输出描述有奇怪了 不是就输入一个 吗 为啥提到说用换行符...
2023-02-06
0
326
题解 | #字符串分隔#
#include <iostream> #include <string> #include <cmath> using namespace std; int main() { // int a, b; // while (cin >>...
2023-02-06
0
312
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页