小菲柱
小菲柱
全部文章
分类
个人笔记(5)
笔试练习(7)
面试整理(4)
题解(178)
归档
标签
去牛客网
登录
/
注册
小菲柱的博客
备战秋招~个人博客暂不更新
全部文章
(共8篇)
题解 | #大数乘法#
每次看到模拟题目就想睡觉 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param s string字符串 第一个整数 * @param t stri...
C++
字符串
模拟
2022-07-24
0
361
题解 | #扑克牌顺子#
class Solution { public: bool IsContinuous( vector<int> numbers ) { // 不能重复,上下界之差不能超过4 int min = 13, max = 0; std::unorde...
C++
模拟
2022-07-21
0
327
题解 | #数字序列中某一位的数字#
不理解啊,心态要爆炸了 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @return int整型 ...
C++
模拟
2022-07-20
0
386
题解 | #顺时针打印矩阵#
螺旋矩阵 class Solution { public: vector<int> printMatrix(vector<vector<int> > matrix) { if (matrix.empty()) { return ...
C++
模拟
2022-07-19
0
321
题解 | #顺时针旋转矩阵#
和矩阵移位一样,对比前后找规律 class Solution { public: vector<vector<int> > rotateMatrix(vector<vector<int> > mat, int n) { for (i...
C++
模拟
2022-07-17
0
287
题解 | #螺旋矩阵#
不断缩小边界 class Solution { public: vector<int> spiralOrder(vector<vector<int> > &matrix) { if (matrix.empty()) { ...
C++
模拟
矩阵
2022-07-17
0
362
题解 | #旋转数组#
原本以为跳着改变元素能够较快完成了已经,没想到这更简洁。。。 class Solution { public: /** * 旋转数组 * @param n int整型 数组长度 * @param m int整型 右移距离 * @param a int整...
C++
模拟
2022-07-17
0
372
题解 | #用两个栈实现队列#
入队直接入 出队判断当前状态:只有第二栈为空时才从第一栈一次性取得所有数据 class Solution { public: void push(int node) { stack1.push(node); } int pop() { if (sta...
C++
模拟
栈
队列
2022-05-17
0
297