当前位置:   article > 正文

ZISUOJ 数据结构-线性表

ZISUOJ 数据结构-线性表

题目列表:

问题 A: 逆序链表建立

思路:

        可以使用头插法插入所有元素后正序遍历输出或者使用尾插法逆序遍历,推荐使用双链表。这是链表系列的第一个题,那这个题下面的参考题解的各种解法我会尽可能写全一些。

参考题解1(数组模拟单链表使用头插法及正序遍历):

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. constexpr int N = 1e5+5;
  4. int head,e[N],ne[N],idx;//数组模拟链表
  5. void init(){//初始化链表
  6. head=-1;
  7. idx=0;
  8. }
  9. void add(int x){//头插法,插入x
  10. e[idx]=x,ne[idx]=head,head=idx++;
  11. }
  12. void solve(){
  13. init();
  14. int t;
  15. while(cin >> t,t>=0){
  16. add(t);
  17. }
  18. for(int i = head;i!=-1;i=ne[i]){
  19. int j = e[i];
  20. cout << j << ' ';
  21. }
  22. cout << '\n';
  23. }
  24. int main(){
  25. ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
  26. int T = 1;//cin >> T;
  27. while(T--) solve();
  28. return 0;
  29. }

参考题解2(数组模拟双链表使用头插法顺序遍历):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. constexpr int N = 1e5+5;
  4. int e[N],l[N],r[N],idx;
  5. void init(){
  6. r[0]=1,l[1]=0,idx=2;
  7. }
  8. void add_to_head(int x){
  9. e[idx]=x,r[idx]=r[0],l[idx]=0,r[0]=idx++;
  10. }
  11. void solve(){
  12. init();
  13. int t;
  14. while(cin >> t,t>=0) add_to_head(t);
  15. for(int i = 0;i!=1;i=r[i]){
  16. if(i==0) continue;
  17. int j = e[i];
  18. cout << j << ' ';
  19. }
  20. cout << '\n';
  21. }
  22. int main(){
  23. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  24. int T = 1;
  25. // cin >> T;
  26. while(T--) solve();
  27. return 0;
  28. }

参考题解3(数组模拟双链表使用尾插法逆序遍历):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. constexpr int N = 1e5+5;
  4. int e[N],l[N],r[N],idx;
  5. void init(){
  6. r[0]=1,l[1]=0,idx=2;
  7. }
  8. void add_to_tail(int x){
  9. e[idx]=x,r[idx]=1,l[idx]=l[1],l[1]=idx++;
  10. }
  11. void solve(){
  12. init();
  13. int t;
  14. while(cin >> t,t>=0) add_to_tail(t);
  15. for(int i = 1;i!=0;i=l[i]){
  16. if(i==1) continue;
  17. int j = e[i];
  18. cout << j << ' ';
  19. }
  20. cout << '\n';
  21. }
  22. int main(){
  23. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  24. int T = 1;
  25. // cin >> T;
  26. while(T--) solve();
  27. return 0;
  28. }

参考题解4(使用stl的双链表list头插法顺序遍历):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. list<int> a;
  4. void solve(){
  5. int t;
  6. while(cin >> t,t>=0) a.push_front(t);
  7. for(auto i = a.begin();i!=a.end();i++){
  8. cout << *i << ' ';
  9. }
  10. cout << '\n';
  11. }
  12. int main(){
  13. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  14. int T = 1;
  15. // cin >> T;
  16. while(T--) solve();
  17. return 0;
  18. }

参考题解5(使用stl的双链表list尾插法逆序遍历):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. list<int> a;
  4. void solve(){
  5. int t;
  6. while(cin >> t,t>=0) a.push_back(t);
  7. for(auto i = a.rbegin();i!=a.rend();i++){
  8. cout << *i << ' ';
  9. }
  10. cout << '\n';
  11. }
  12. int main(){
  13. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  14. int T = 1;
  15. // cin >> T;
  16. while(T--) solve();
  17. return 0;
  18. }

参考题解6(手搓单链表):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ElemType int
  4. struct LNode{
  5. ElemType data;
  6. LNode *next;
  7. };
  8. LNode *init(){
  9. LNode *head;
  10. head=(LNode *)malloc(sizeof(LNode));
  11. head->next=NULL;
  12. return head;
  13. }
  14. void add_to_head(LNode *head,ElemType x){
  15. LNode *p;
  16. p = (LNode *)malloc(sizeof(LNode));
  17. p->data=x;
  18. p->next=head->next;
  19. head->next=p;
  20. }
  21. void add_to_tail(LNode *head,ElemType x){
  22. LNode *p;
  23. p = (LNode *)malloc(sizeof(LNode));
  24. p->data=x;
  25. p->next=NULL;
  26. if(head->next==NULL){
  27. head->next=p;
  28. }else{
  29. LNode *q;
  30. q=head->next;
  31. while(q->next!=NULL) q=q->next;
  32. q->next=p;
  33. }
  34. }
  35. LNode *find_x(LNode *head,ElemType x){
  36. LNode *p;
  37. p = head->next;
  38. while(p->data!=x&&p->next!=NULL){
  39. p=p->next;
  40. }
  41. if(p->next==NULL) return head;
  42. else return p;
  43. }
  44. void delete_k(LNode *head,LNode *p){
  45. if(head->next==NULL){
  46. cout << "delete is failed.\n";
  47. }
  48. LNode *q;
  49. q = head;
  50. while(q->next!=p){
  51. q=q->next;
  52. }
  53. q->next=p->next;
  54. free(p);
  55. }
  56. LNode *find_max_element(LNode *head,ElemType &max_element){
  57. if(head->next==NULL) return head;
  58. LNode *p,*q;
  59. p = head->next;
  60. while(p->next!=NULL){
  61. if(p->data>max_element){
  62. max_element=p->data;
  63. q = p;
  64. }
  65. p=p->next;
  66. }
  67. if(p->data>max_element){
  68. max_element=p->data;
  69. q = p;
  70. }
  71. return q;
  72. }
  73. LNode *sort_LNode(LNode *head){
  74. if(head->next==NULL){
  75. cout << "the LNode which you wanna sort is empty!\n";
  76. return head;
  77. }
  78. LNode *p,*q,*pos;
  79. p = head;
  80. q = init();
  81. ElemType max_element = -1;
  82. pos=find_max_element(p,max_element);
  83. while(pos!=p){
  84. add_to_head(q,pos->data);
  85. delete_k(p,pos);
  86. max_element = -1;
  87. pos=find_max_element(p,max_element);
  88. }
  89. return q;
  90. }
  91. LNode *merge_LNode(LNode *head1,LNode *head2){
  92. if(head1->next==NULL&&head2->next==NULL){
  93. cout << "two of LNodes is empty!\n";
  94. return head1;
  95. }
  96. LNode *p;
  97. p = head1;
  98. while(p->next!=NULL){
  99. p=p->next;
  100. }
  101. p->next=head2->next;
  102. free(head2);
  103. return head1;
  104. }
  105. void print(LNode *head){
  106. if(head->next==NULL){
  107. cout << "This LNode is empty!\n";
  108. return;
  109. }
  110. LNode *p;
  111. p=head->next;
  112. while(p->next!=NULL){
  113. cout << p->data << ' ';
  114. p=p->next;
  115. }
  116. cout << p->data << '\n';
  117. }
  118. void solve(){
  119. LNode *L = init();
  120. ElemType t;
  121. while(cin >> t,t>=0) add_to_head(L,t);
  122. print(L);
  123. }
  124. int main(){
  125. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  126. int T = 1;
  127. // cin >> T;
  128. while(T--) solve();
  129. return 0;
  130. }

问题 B: 顺向链表建立

思路:

        这个题头插还是尾插法不影响查找,只要遍历一遍链表判断即可。

参考题解1(数组模拟单链表):

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. constexpr int N = 1e5+5;
  4. int head,e[N],ne[N],idx;//数组模拟链表
  5. void init(){//链表初始化
  6. head=-1;
  7. idx=0;
  8. }
  9. void add(int x){//头插法
  10. e[idx]=x,ne[idx]=head,head=idx++;
  11. }
  12. void solve(){
  13. init();
  14. int t;
  15. while(cin >> t,t>=0) add(t);
  16. int x;cin >> x;
  17. for(int i = head;i!=-1;i=ne[i]){
  18. int j = e[i];
  19. if(x==j){
  20. cout << "YES\n";
  21. return;
  22. }
  23. }
  24. cout << "NO\n";
  25. }
  26. int main(){
  27. ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
  28. int T = 1;//cin >> T;
  29. while(T--) solve();
  30. return 0;
  31. }

参考题解2(使用stl的list):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. list<int> a;
  4. void solve(){
  5. int t;
  6. while(cin >> t,t>=0) a.push_back(t);
  7. int x;cin >> x;
  8. for(auto i = a.begin();i!=a.end();i++){
  9. if(*i==x){
  10. cout << "YES\n";
  11. return;
  12. }
  13. }
  14. cout << "NO\n";
  15. }
  16. int main(){
  17. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  18. int T = 1;
  19. // cin >> T;
  20. while(T--) solve();
  21. return 0;
  22. }

问题 C: 结点删除

思路:

        其实题目的意思,如果重复出现要找的数都要删除它,这里既以使用数组模拟双链表删除,但使用stl的list进行删除指定元素更加便捷。

参考题解:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. list<int> a;
  4. void solve(){
  5. int t;
  6. while(cin >> t,t>=0) a.push_back(t);
  7. int x;cin >> x;//要查找的数
  8. if(find(a.begin(),a.end(),x)==a.end()) cout << "NO\n";
  9. else{
  10. a.remove(x);
  11. for(auto i=a.begin();i!=a.end();i++) cout << *i << ' ';
  12. cout << '\n';
  13. }
  14. }
  15. int main(){
  16. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  17. int T = 1;
  18. // cin >> T;
  19. while(T--) solve();
  20. return 0;
  21. }

问题 D: 有序链表

思路:

        可以使用数组模拟两个单链表,每次循环找第一个链表里的最大值,然后将这个最大值头插到第二个链表并删除第一个链表中的该节点,最后遍历输出第二个链表即可。当然,用stl的list写起来更快。

参考题解1(数组模拟两个单链表求解):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. constexpr int N = 1e4+5;
  4. int e1[N],l1[N],r1[N],idx1;
  5. int e2[N],l2[N],r2[N],idx2;
  6. void init(int (&l)[N],int (&r)[N],int &idx){
  7. r[0]=1,l[1]=0,idx=2;
  8. }
  9. void add(int (&e)[N],int (&l)[N],int (&r)[N],int &idx,int k,int x){
  10. e[idx]=x;
  11. r[idx]=r[k],l[idx]=k;
  12. l[r[k]]=idx,r[l[k]]=idx++;
  13. }
  14. void remove(int (&l)[N],int (&r)[N],int k){
  15. l[r[k]]=l[k],r[l[k]]=r[k];
  16. }
  17. void solve(){
  18. init(l1,r1,idx1);//初始化链表
  19. int t,cnt=0;//cnt用于记录链表的大小(元素个数)
  20. while(cin >> t,t>=0) add(e1,l1,r1,idx1,0,t),cnt++;
  21. int maxn=-1,maxidx;
  22. init(l2,r2,idx2);//初始化结果链表
  23. for(int k = 1;k<=cnt;k++){
  24. maxn=-1;
  25. for(int i = 0;i!=1;i=r1[i]){
  26. if(i==0) continue;
  27. int j = e1[i];
  28. if(j>maxn){
  29. maxn=j;
  30. maxidx=i;
  31. }
  32. }
  33. add(e2,l2,r2,idx2,0,maxn);
  34. remove(l1,r1,maxidx);
  35. }
  36. for(int i = 0;i!=1;i=r2[i]){
  37. if(i==0) continue;
  38. int j = e2[i];
  39. cout << j << ' ';
  40. }
  41. cout << '\n';
  42. }
  43. int main(){
  44. ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
  45. int T = 1;//cin >> T;
  46. while(T--) solve();
  47. return 0;
  48. }

参考题解2(使用stl的list求解):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. list<int> a;
  4. void solve(){
  5. int t;
  6. while(cin >> t,t>=0) a.push_back(t);
  7. a.sort();
  8. for(auto i = a.begin();i!=a.end();i++) cout << *i << ' ';
  9. cout << '\n';
  10. }
  11. int main(){
  12. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  13. int T = 1;
  14. // cin >> T;
  15. while(T--) solve();
  16. return 0;
  17. }

问题 E: 链表合并

思路:

        同理,可以用数组模拟三个双链表,然后循环找前两个链表中的最大值,然后头插到第三个链表中并且删除指定链表中的指定节点,最后遍历输出第三个链表即可。stl的list也能轻松解决。

参考题解1(使用数组模拟三个双链表解决):

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. constexpr int N = 1e4+5;
  4. int e1[N],l1[N],r1[N],idx1;
  5. int e2[N],l2[N],r2[N],idx2;
  6. int e3[N],l3[N],r3[N],idx3;
  7. void init(int (&l)[N],int (&r)[N],int &idx){
  8. r[0]=1,l[1]=0,idx=2;
  9. }
  10. void add_to_k(int (&e)[N],int (&l)[N],int (&r)[N],int &idx,int k,int x){
  11. e[idx]=x;
  12. r[idx]=r[k],l[idx]=k;
  13. l[r[k]]=idx,r[l[k]]=idx++;
  14. }
  15. void remove(int (&l)[N],int (&r)[N],int k){
  16. l[r[k]]=l[k],r[l[k]]=r[k];
  17. }
  18. void solve(){
  19. init(l1,r1,idx1);
  20. init(l2,r2,idx2);
  21. int t,cnt1=0,cnt2=0;//cnt记录链表的大小
  22. while(cin >> t,t>=0) add_to_k(e1,l1,r1,idx1,0,t),cnt1++;
  23. while(cin >> t,t>=0) add_to_k(e2,l2,r2,idx2,0,t),cnt2++;
  24. init(l3,r3,idx3);
  25. int maxn = -1,maxidx,flag=0;
  26. for(int x = 0;x<cnt1+cnt2;x++){
  27. maxn=-1;
  28. for(int i = 0;i!=1;i=r1[i]){
  29. if(i==0) continue;
  30. int j = e1[i];
  31. if(j>maxn){
  32. flag=1;
  33. maxn = j;
  34. maxidx = i;
  35. }
  36. }
  37. for(int i = 0;i!=1;i=r2[i]){
  38. if(i==0) continue;
  39. int j = e2[i];
  40. if(j>maxn){
  41. flag=2;
  42. maxn=j;
  43. maxidx=i;
  44. }
  45. }
  46. add_to_k(e3,l3,r3,idx3,0,maxn);
  47. if(flag==1){
  48. remove(l1,r1,maxidx);
  49. }else{//flag==2
  50. remove(l2,r2,maxidx);
  51. }
  52. }
  53. for(int i = 0;i!=1;i=r3[i]){
  54. if(i==0) continue;
  55. int j = e3[i];
  56. cout << j << ' ';
  57. }
  58. cout << '\n';
  59. }
  60. int main(){
  61. ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
  62. int T = 1;//cin >> T;
  63. while(T--) solve();
  64. return 0;
  65. }

参考题解2(stl yyds):

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. list<int> a,b;
  4. void solve(){
  5. int t;
  6. while(cin >> t,t>=0) a.push_back(t);
  7. while(cin >> t,t>=0) b.push_back(t);
  8. a.splice(a.end(),b);
  9. a.sort();
  10. for(auto i = a.begin();i!=a.end();i++) cout << *i << ' ';
  11. cout << '\n';
  12. }
  13. int main(){
  14. ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
  15. int T = 1;
  16. // cin >> T;
  17. while(T--) solve();
  18. return 0;
  19. }

问题 F: 双向链表(完善程序)

思路:

        数组模拟双链表的填空题,想明白最后题目要我们输出的右侧第一个大于它的数,我们可以让每个结点的后继指向第一个大于它的数(若没有,则指向n+1)。

参考题解:

  1. #include<iostream>
  2. using namespace std;
  3. const int N=100010;
  4. int n,l[N],r[N],a[N];
  5. int main()
  6. {
  7. cin>>n;
  8. for(int i=1;i<=n;i++)
  9. {
  10. int x;
  11. cin>>x;
  12. // _____(1)_____;
  13. a[x]=i;
  14. }
  15. for(int i=1;i<=n;i++)
  16. {
  17. // r[i]=____(2)_____;
  18. r[i]=i+1;
  19. l[i]=i-1;
  20. }
  21. for(int i=1;i<=n;i++)
  22. {
  23. // l[_____(3)_____]=l[a[i]];
  24. // r[l[a[i]]]=r[_____(4)____];
  25. l[r[a[i]]]=l[a[i]];
  26. r[l[a[i]]]=r[a[i]];
  27. }
  28. for(int i=1;i<=n;i++)
  29. // cout<<_____(5)_____<<" ";
  30. cout<<r[i]<<" ";
  31. cout<<endl;
  32. return 0;
  33. }

问题 G: 手拉手游戏

思路:

        这是上一题F题的具体应用,把F题的代码修改一下搬过来即可。

参考题解:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int N = 1e2+5;
  4. int n;
  5. int e[N],l[N],r[N],idx;
  6. void solve(){
  7. cin >> n;
  8. string s;cin >> s;
  9. s=' '+s;
  10. for(int i = 1;i<=n;i++){
  11. int x = s[i]-'0';
  12. e[x]=i;
  13. }
  14. for(int i = 1;i<=n;i++){
  15. l[i]=i-1,r[i]=i+1;
  16. }
  17. for(int i = 1;i<=n;i++){
  18. l[r[e[i]]]=l[e[i]];
  19. r[l[e[i]]]=r[e[i]];
  20. }
  21. for(int i = 1;i<=n;i++){
  22. cout << r[i];
  23. }
  24. cout << '\n';
  25. }
  26. int main(){
  27. ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
  28. int T = 1;//cin >> T;
  29. while(T--) solve();
  30. return 0;
  31. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/421549
推荐阅读
相关标签
  

闽ICP备14008679号