ALJT
ALJT
全部文章
分类
未归档(1)
算法题解(2)
题解(1)
归档
标签
去牛客网
登录
/
注册
ALJT的博客
算法爬虫,指我自己
全部文章
(共4篇)
二叉树的创建and遍历
二叉树的创建and遍历 作者: Aidan Lew 思路: 用好队列. 代码: #include<iostream> #include<algorithm> #include<queue> #include<cstdio> using name...
2022-04-19
1
399
leetcode#1104 二叉树寻路
leetcode#1104 二叉树寻路 目录 题目描述: 题解性能: 思路: 1)种树(未用) 2) 找规律用数学方法 题解代...
2022-04-19
1
378
Acwing 92.递归实现指数型枚举(递归与非递归)
Acwing 92.递归实现指数型枚举 目录 题目描述 算法1 非递归做法 时间复杂度 C++ 代码 算法2 ...
2022-04-19
1
419
题解 | #简单计算器#
简单的题还是写了那么多代码。。。 该题注意2个地方: 字符串输入,sstream 结果的输出,中途用stod将string转为double,保证精度 #include <iostream> #include <stack> #include <string> ...
C++
栈
模拟
2022-04-19
1
449