牛客745135892号
牛客745135892号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客745135892号的博客
全部文章
(共6篇)
题解 | #最长&最短文本#
#include<iostream> #include<string> #include<vector> #include<algorithm> using namespace std; bool cmp(string &s1, string...
2024-03-05
0
194
题解 | #回文字符串#
#include<iostream> using namespace std; int main() { string s; while (cin >> s) { int len = s.size(); bool flag =...
2024-03-05
0
191
题解 | #N阶楼梯上楼问题#
#include<iostream> using namespace std; int main(){ int n; while(cin >> n){ int dp[n + 1]; dp[0] = 0, dp[1] = 1, dp[2] = 2; for(i...
2024-03-05
0
140
题解 | #二叉排序树#
#include<iostream> #include<stdlib.h> using namespace std; typedef struct node { int val; struct node* left, *right; }* bittree, ...
2024-03-05
0
197
题解 | #二叉树遍历#
#include<iostream> #include<string> using namespace std; /* 递归思想,先将当前左右序列进行分割,然后在进行当前左右序列的递归,输出当前最后一个元素 */ void postOrder(string&...
2024-03-03
0
167
题解 | #二叉排序树#
#include<iostream> using namespace std; typedef struct node{ int val; struct node *left, *right; }bittree, *tree; //递归建树,并且返回父亲节点 int build(...
2024-02-29
0
171