Huster水仙
Huster水仙
全部文章
分类
题解(112)
归档
标签
去牛客网
登录
/
注册
Huster水仙的博客
水仙不开花?你装蒜呢!
TA的专栏
16篇文章
0人订阅
algorithm
16篇文章
911人学习
全部文章
(共120篇)
题解 | #搬水果#
哈夫曼树 #include<iostream> #include<queue> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ if(n==0)break; ...
C++
2023-01-31
0
342
题解 | #查找第K小数#
#include<iostream> #include<queue> using namespace std; int main(){ int n,k; while(scanf("%d",&n)!=EOF){ priority_queue< i...
C++
2023-01-31
0
268
题解 | #哈夫曼树#
#include<iostream> #include<queue> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ priority_queue<int,...
C++
2023-01-30
0
299
题解 | #复数集合#
#include<iostream> #include<queue> #include<string> using namespace std; struct comp{ int real; int imag; comp(int a,int b):r...
C++
2023-01-30
0
360
题解 | #二叉搜索树#
二叉排序树:左<根<右 相同元素的二叉排序树的中序遍历必定相同(升序) 先序遍历相同→元素相同(中序遍历相同)→二叉排序树相同 #include<iostream> #include<string> using namespace std; struct n...
C++
2023-01-30
0
363
题解 | #二叉排序树#
#include<iostream> #include<string> using namespace std; struct node{ int data; node* leftch; node* rightch; node(int x):data(x),...
C++
2023-01-30
0
409
题解 | #二叉排序树#
#include<iostream> #include<string> using namespace std; struct node{ int data; node* leftch; node* rightch; node(int x):data(x),...
C++
2023-01-30
0
411
题解 | #二叉树遍历#
#include<iostream> #include<string> using namespace std; struct node{//结点 char data; node* leftchild; node* rightchild; node(char...
C++
2023-01-29
0
403
题解 | #二叉树遍历#
先序建立和先序遍历是类似的 空指针可以用nullptr #include<iostream> #include<string> using namespace std; struct node{//结点 char data; node* leftchild; ...
C++
2023-01-29
0
381
题解 | #八皇后#
DFS 一开始考虑用bool标记,但是每次清除标记就会很麻烦, 因为bool只有true和false,而一个位置可能被多次标记 所以用int型作为标记 注意访问一定要判断一下,避免越界导致出错 #include<iostream> #include<string> #in...
C++
2023-01-28
0
350
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页