ramily
ramily
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ramily的博客
TA的专栏
12篇文章
0人订阅
C++每日一练
12篇文章
368人学习
全部文章
(共81篇)
题解 | #字符串最后一个单词的长度#
#include <iostream> #include <string> using namespace std; // 输入一行字符串,输出字符串长度 int Solution(string a){ while (cin >> a); retu...
2023-02-23
0
229
题解 | #二维数组中的查找#
class Solution { public: bool Find(int target, vector<vector<int> > array) { //暴力求解代码 // for (auto i : array){ ...
2023-01-20
0
250
题解 | #两数之和#
class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { unordered_map <int,int> map; for(in...
2023-01-15
0
234
题解 | #反转链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Rever...
2023-01-15
0
205
题解 | #找到数组里的第k大数(C++)#
#include<bits/stdc++.h> using namespace std; int main(){ int n,k,x; vector<int> a; // 用STL算法实现输出数组的第k大数。 cin >> n >> k; f...
2023-01-14
0
270
题解 | #字符的个数#
#include<bits/stdc++.h> using namespace std; int main(){ string s; cin>>s; // 输出'a','b','c'出现次数 int na = 0, nb =0, nc = 0;...
2023-01-13
0
214
题解 | #十进制整数转十六进制字符串#
#include <iostream> #include <string> using namespace std; string toHexString(int n); //函数声明 int main() { int n; cin >> ...
2023-01-13
0
448
题解 | #实现简单计算器功能#
#include <iostream> #include <string> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); ...
2023-01-13
0
357
题解 | #个人所得税计算程序#
#include <iostream> #include <algorithm> //利用STL算法 #include <vector> #include <iomanip> //控制输出格式 using namespace std; class...
2023-01-13
0
402
题解 | #使用算法#
#include <iostream> #include <vector> #include <algorithm> //使用STL排序算法 using namespace std; int main() { int num; vector&...
2023-01-13
0
249
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页