当前位置:   article > 正文

3月21日OJ刷题_设有一二叉树采用二叉链存储,根结点指针为t,试找到一个结点值为item的结点

设有一二叉树采用二叉链存储,根结点指针为t,试找到一个结点值为item的结点

基于递归的折半查找

描述

请编写一个递归的折半查找算法,查找给定有序数组中的某一元素。

输入

多组数据,每组数据有三行。第一行为数组长度n,第二行为n个递增排列的数字,第三行为需要查找的数字k。当n=0时输入结束。

输出

每组数据输出一行,如果可以找到数字,则输出“YES”,否则输出“NO”。

输入样例 1 

5
1 4 6 7 8
6
6
1 2 5 7 9 100
8
0

输出样例 1

YES
NO
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. void Find(int a[],int k,int low,int high)
  4. {
  5. if(high<low)
  6. {
  7. cout<<"NO"<<endl;
  8. return;
  9. }
  10. int mid=(low+high)/2;
  11. if(a[mid]==k)
  12. {
  13. cout<<"YES"<<endl;
  14. return;
  15. }
  16. else
  17. {
  18. if(k<a[mid])
  19. Find(a,k,low,mid-1);
  20. else
  21. Find(a,k,mid+1,high);
  22. }
  23. }
  24. int main()
  25. {
  26. int a[100];
  27. int n;
  28. while(cin>>n&&n!=0)
  29. {
  30. for(int i=0;i<n;i++)
  31. {
  32. cin>>a[i];
  33. }
  34. int k;
  35. cin>>k;
  36. Find(a,k,0,n-1);
  37. }
  38. }

二叉排序树的判定

描述

假设二叉树每个结点的元素均为一个单字符,根据给定的字符序列按照先序遍历的顺序递归创建该树的二叉链表,然后判断该二叉树是否为二叉排序树。

输入

多组数据,每组数据有一行。每行为一个二叉树对应的前序序列(其中‘#’表示空树)。当序列为“#”时,输入结束。

输出

每组数据输出1行,若此二叉树为二叉排序树则输出“YES”,否则输出“NO”。

输入样例 1 

ba##c##
ca##b##
#

输出样例 1

YES
NO

 

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef struct BiNode
  4. {
  5. char data;
  6. BiNode *lchild,*rchild;
  7. }BiNode,*BiTree;
  8. void Create(BiTree &bt,char s[],int &i)
  9. {
  10. if(s[i]=='#')
  11. {
  12. bt=NULL;
  13. }
  14. else
  15. {
  16. bt=new BiNode;
  17. bt->data=s[i];
  18. Create(bt->lchild,s,++i);
  19. Create(bt->rchild,s,++i);
  20. }
  21. }
  22. int flag;
  23. int t;
  24. void Judge(BiTree bt)
  25. {
  26. if(bt)
  27. {
  28. Judge(bt->lchild);
  29. if(t>bt->data)
  30. {
  31. flag=0;
  32. return;
  33. }
  34. else
  35. {
  36. t=bt->data;
  37. }
  38. Judge(bt->rchild);
  39. }
  40. }
  41. void PreOrder(BiTree bt)
  42. {
  43. if(bt!=NULL)
  44. {
  45. cout<<bt->data<<" ";
  46. PreOrder(bt->lchild);
  47. PreOrder(bt->rchild);
  48. }
  49. }
  50. int main()
  51. {
  52. char ch[100];
  53. while(cin>>ch&&ch[0]!='#')
  54. {
  55. BiTree bt;
  56. int i=-1;
  57. Create(bt,ch,++i);
  58. flag=1;
  59. t=0;
  60. Judge(bt);
  61. if(flag)
  62. cout<<"YES"<<endl;
  63. else
  64. cout<<"NO"<<endl;
  65. }
  66. }

二叉排序树的限定条件下的数据输出

描述

已知二叉排序树采用二叉链表存储结构,根结点的指针为T,链结点的结构为(lchild,data,rchild),其中lchild、rchild分别指向该结点左,右孩子的指针,data域存放结点数据。试编写算法,从小到大输出二叉排序树中所有数值大于等于x的结点的数据。要求先找到第一个满足条件的结点后,再依次输出其他满足条件的结点。

输入

多组数据,每组三行。第一行为二叉排序树的结点数n。第二行为空格分隔的n个数字,对应二叉排序树中的n个结点。第三行为一个数字x。n=0时输入结束。

输出

每组数据输出一行。从小到大输出大于等于x的结点数据。每个数据用空格分隔。输入样例

输入样例 1 

5
1 5 3 2 4
3
9
1 30 2 15 6 7 3 9 233
30
0

输出样例 1

3 4 5
30 233

 

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef struct BiNode
  4. {
  5. int data;
  6. BiNode *lchild,*rchild;
  7. }BiNode,*BiTree;
  8. void Insert(BiTree &bt,int k)
  9. {
  10. if(bt==NULL)
  11. {
  12. bt=new BiNode;
  13. bt->data=k;
  14. bt->lchild=NULL;
  15. bt->rchild=NULL;
  16. }
  17. else
  18. {
  19. if(k<bt->data)
  20. {
  21. Insert(bt->lchild,k);
  22. }
  23. else
  24. {
  25. Insert(bt->rchild,k);
  26. }
  27. }
  28. }
  29. int flag;
  30. void Find(BiTree bt,int x)
  31. {
  32. if(bt)
  33. {
  34. Find(bt->lchild,x);
  35. if(bt->data>=x)
  36. {
  37. if(!flag)
  38. {
  39. cout<<bt->data;
  40. flag=1;
  41. }
  42. else
  43. {
  44. cout<<" "<<bt->data;
  45. }
  46. }
  47. Find(bt->rchild,x);
  48. }
  49. }
  50. int main()
  51. {
  52. int n;
  53. while(cin>>n&&n!=0)
  54. {
  55. int k;
  56. BiTree bt=NULL;
  57. for(int i=0;i<n;i++)
  58. {
  59. cin>>k;
  60. Insert(bt,k);
  61. }
  62. int x;
  63. cin>>x;
  64. flag=0;
  65. Find(bt,x);
  66. cout<<endl;
  67. }
  68. }

基于链地址法的散列表的插入

描述

请写出在散列表中插入关键字为k的一个记录的算法,设散列函数为H,H(key)=key%13,解决冲突的方法为链地址法。

输入

多组数据,每组三行,第一行为待输入的关键字的个数n,第二行为对应的n个关键字,第三行为需要插入的关键字k。当n=0时输入结束。

输出

每组数据输出用链地址法处理冲突的散列表。

输入样例 1 

5
1 4 2 3 5
6
4
2 5 8 15
18
0

输出样例 1

0
1 1
2 2
3 3
4 4
5 5
6 6
7
8
9
10
11
12
0
1
2 2 15
3
4
5 5 18
6
7
8 8
9
10
11
12

 

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef struct LNode
  4. {
  5. int data;
  6. LNode *next;
  7. }LNode,*LinkList;
  8. LinkList H[13];
  9. void Hash(int n)
  10. {
  11. for(int i=0;i<13;i++)
  12. {
  13. H[i]=new LNode;
  14. H[i]->next=NULL;
  15. }
  16. int x;
  17. for(int i=0;i<n;i++)
  18. {
  19. cin>>x;
  20. LNode *p=H[x%13];
  21. while(p->next)
  22. {
  23. p=p->next;
  24. }
  25. LNode *s=new LNode;
  26. s->data=x;
  27. s->next=NULL;
  28. p->next=s;
  29. }
  30. }
  31. void Insert()
  32. {
  33. int x;
  34. cin>>x;
  35. LNode *p=H[x%13];
  36. while(p->next)
  37. {
  38. p=p->next;
  39. }
  40. LNode *s=new LNode;
  41. s->data=x;
  42. s->next=NULL;
  43. p->next=s;
  44. }
  45. void Print()
  46. {
  47. for(int i=0;i<13;i++)
  48. {
  49. cout<<i;
  50. LNode *p=H[i]->next;
  51. while(p)
  52. {
  53. cout<<" "<<p->data;
  54. p=p->next;
  55. }
  56. cout<<endl;
  57. }
  58. }
  59. int main()
  60. {
  61. int n;
  62. while(cin>>n&&n!=0)
  63. {
  64. Hash(n);
  65. Insert();
  66. Print();
  67. }
  68. }

基于链地址法的散列表的删除

描述

请写出在散列表中删除关键字为k的一个记录的算法,设散列函数为H,H(key)=key%13,解决冲突的方法为链地址法。

输入

多组数据,每组三行,第一行为待输入的关键字的个数n,第二行为对应的n个关键字,第三行为需要删除的关键字k。当n=0时输入结束。

输出

每组数据输出用链地址法处理冲突的散列表。

输入样例 1 

5
1 4 2 3 5
3
4
1 10 14 27
14
0

输出样例 1

0
1 1
2 2
3
4 4
5 5
6
7
8
9
10
11
12
0
1 1 27
2
3
4
5
6
7
8
9
10 10
11
12

 

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef struct LNode
  4. {
  5. int data;
  6. LNode *next;
  7. }LNode,*LinkList;
  8. LinkList H[13];
  9. void Hash(int n)
  10. {
  11. for(int i=0;i<13;i++)
  12. {
  13. H[i]=new LNode;
  14. H[i]->next=NULL;
  15. }
  16. int x;
  17. for(int i=0;i<n;i++)
  18. {
  19. cin>>x;
  20. LNode *p=H[x%13];
  21. while(p->next)
  22. {
  23. p=p->next;
  24. }
  25. LNode *s=new LNode;
  26. s->data=x;
  27. s->next=NULL;
  28. p->next=s;
  29. }
  30. }
  31. void Delete()
  32. {
  33. int x;
  34. cin>>x;
  35. LNode *p=H[x%13];
  36. while(p->next)
  37. {
  38. if(p->next->data==x)
  39. {
  40. p->next=p->next->next;
  41. break;
  42. }
  43. p=p->next;
  44. }
  45. }
  46. void Print()
  47. {
  48. for(int i=0;i<13;i++)
  49. {
  50. cout<<i;
  51. LNode *p=H[i]->next;
  52. while(p)
  53. {
  54. cout<<" "<<p->data;
  55. p=p->next;
  56. }
  57. cout<<endl;
  58. }
  59. }
  60. int main()
  61. {
  62. int n;
  63. while(cin>>n&&n!=0)
  64. {
  65. Hash(n);
  66. Delete();
  67. Print();
  68. }
  69. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/517464
推荐阅读
相关标签
  

闽ICP备14008679号