不红红黑路同
不红红黑路同
全部文章
题解
c++(5)
python(1)
pytorch(7)
未归档(6)
机器学习(2)
线性代数(1)
归档
标签
去牛客网
登录
/
注册
不红红黑路同的博客
全部文章
/ 题解
(共50篇)
题解 | #二叉排序树#
#include <iostream> using namespace std; //二叉搜索树 struct TreeNode{ int data; TreeNode *leftchild; TreeNode *rightchild; TreeNod...
C++
2022-02-28
0
364
题解 | #二叉树遍历#
#include <iostream> #include <queue> using namespace std; struct TreeNode{ char data; TreeNode *leftchild; TreeNode *rightch...
C++
2022-02-28
0
489
题解 | #二叉树遍历#
#include #include using namespace std; struct TreeNode{ char data; TreeNode *leftchild; TreeNode *rightchild; TreeNode(char c):data(c),leftchild(NUL...
C++
2022-02-28
0
387
题解 | #矩阵幂#快速幂,矩阵的定义、输出、乘法,矩阵快速幂
#include <iostream> #include <vector> #include<algorithm> #include<cmath> using namespace std; //例题6.12 矩阵幂 struct matrix{ ...
C++
2022-02-22
0
398
题解 | #整除问题#
#include <iostream> #include <vector> #include<algorithm> #include<cmath> using namespace std; int counta(int x,int a){ i...
C++
2022-02-22
0
418
题解 | #约数的个数#
#include <iostream> #include <vector> #include<algorithm> #include<cmath> using namespace std; int candelete(int x,int y){ ...
C++
2022-02-22
0
301
题解 | #又一版 A+B#字符串的各类运算
字符串的各类运算 字符串加法、乘法、除法 十进制->二进制;二进制->十进制;m进制->n进制 如果数字很大的话,需要用字符串替代(但是如果只是int超过范围,还是可以考虑用long long) 代码 #include <iostream> #include <v...
C++
2022-02-22
0
521
题解 | #简单计算器#运用字符串进行数值运算
易错点 double类型很容易误写成int类型 if else要穷尽所有情况 tips 一个从字符串中提取数字的函数:nextnum cctype中的isdigit(char) 将栈传递给函数的时候相当于一个变量,而不是一个地址 代码 #include <iostream> #i...
C++
2022-02-22
0
586
题解 | #神奇的口袋#
其实感觉对这道题的深度优先搜索还是不太完全理解。 #include <iostream> #include <queue> #include <algorithm> using namespace std; //习题9.2 神奇的口袋 int counts=0;...
C++
2022-02-20
0
423
题解 | #二叉树#
算是一种递归完成的中序遍历,检查当前子树等价于检查左子树、根节点和右子树。 //例题8.4 二叉树 #include <iostream> #include <algorithm> using namespace std; int sum; void count_num(in...
C++
2022-02-14
0
456
首页
上一页
1
2
3
4
5
下一页
末页