BrianWu
BrianWu
全部文章
分类
题解(25)
归档
标签
去牛客网
登录
/
注册
BrianWu的博客
全部文章
(共25篇)
题解 | #排序(马老师的马方法)#
class Solution { public: vector<int> MySort(vector<int>& arr) { sort(arr.begin(),arr.end()); return arr; } };
C++
2021-07-12
11
1130
题解 | #每K个一组反转(C++)#
/*描述给出一个链表,每 k 个节点一组进行翻转,并返回翻转后的链表。k 是一个正整数,它的值小于或等于链表的长度。如果节点总数不是 k 的整数倍,那么将最后剩余节点保持原有顺序。 说明: 你需要自行定义链表结构,将输入的数据保存到你的链表中; 你不能只是单纯的改变节点内部的值,而是需要实际的进行...
C++
2021-07-12
0
535
题解 | #数字反转#
不讲武德法 /*描述12翻一下是21,34翻一下是43,12+34是46,46翻一下是64,现在又任意两个正整数,问他们两个数反转的和是否等于两个数的和的反转。输入描述:每行两个正整数a和b(0<a,b<=10000)。输出描述: 如果满足题目的要求输出a+b的值,否则输出NO。*...
C++
2021-07-07
0
509
题解 | #Simple Sorting#
#include<iostream> #include<unordered_set> #include<algorithm> #include<vector> using namespace std; int main() { int n;...
C++
2021-07-07
1
401
题解 | #Zero-complexity Transposition#
首先获取keymap。将键盘上按顺序都打一遍,记录在map中,此后通过map匹配即可 #include<iostream> #include<string> #include<map> using namespace std; int main() { ...
C++
2021-07-07
8
606
题解 | #Zero-complexity Transposition#
/*描述字符串匹配输入描述: For each case, there are two strings T and P on a line,separated by a single space.You may assume both the length of T and P will not...
C++
2021-07-07
0
503
题解 | #Zero-complexity Transposition#
简洁做法 /*描述We now use the Gregorian style of dating in Russia. The leap years are years with number divisible by 4 but not divisible by 100, or divisibl...
C++
2021-07-07
4
1006
题解 | #Zero-complexity Transposition#
/*描述You are given a sequence of integer numbers. Zero-complexity transposition of the sequence is the reverse of this sequence. Your task is to write ...
C++
2021-07-07
0
387
题解 | #Prime Number#
/*Requirements:output the kth prime number*/ #include <iostream> #include <cmath> using namespace std; bool isPrime(int n) { if (n ...
C++
2021-07-07
0
464
题解 | #字母统计#
/*描述一个数组中有若干正整数,将此数组划分为两个子数组,使得两个子数组各元素之和a,b的差最小,对于非法输入应该输出ERROR。输入描述:数组中的元素输出描述:降序输出两个子数组的元素和 Main idea:设两个子数组的元素和分别为 sum1, sum2,数组的元素和为sum,则:sum=sum...
C++
2021-07-07
3
673
首页
上一页
1
2
3
下一页
末页