ice_cheers
ice_cheers
全部文章
题解
归档
标签
去牛客网
登录
/
注册
ice_cheers的博客
全部文章
/ 题解
(共3篇)
题解 | #对链表进行插入排序#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
C++
2022-04-11
0
417
题解 | #偏爱字母#
动态规划法: #include<bits/stdc++.h> using namespace std; int main(){ int n; string ef; cin>>n; cin>>ef; vector&...
C++
2022-03-16
0
474
题解 | #小美的书架#
#include<bits/stdc++.h> using namespace std; int main() { int N, M, Q; cin >> N >> M >> Q; int a, x, y; vector...
C++
2022-03-16
0
451