ZBLOG

使用单链表的其他方法实现该代码:#ifndef NULL #define NULL 0 #endif #include using namespace std; //定义单链表结点结构 struct LNode { int data; LNode* next; LNode() {}; LNode(int e, LNode* n = NULL) :data(e), next(n) {}; }; //单链表list类创建 class List { protect...

以下是使用另一种方法实现该代码的单链表:

”`cpp #ifndef NULL #define NULL 0 #endif

#include using namespace std;

// 定义单链表结点结构 struct LNode {

  1. int data;
  2. LNode* next;
  3. LNode() {};
  4. LNode(int e, LNode* n = NULL) : data(e), next(n) {};

};

// 单链表list类创建 class List { protected:

  1. LNode* head;
  2. int _size;

public:

  1. // 构造函数
  2. List() {
  3. head = new LNode;
  4. head->next = NULL;
  5. _size = 0;
  6. }
  7. // 析构函数
  8. ~List() {
  9. while (head) {
  10. LNode* p = head->next;
  11. delete head;
  12. head = p;
  13. }
  14. }
  15. // 头节点
  16. List(int info) {
  17. head = new LNode(info);
  18. _size = 0;
  19. }
  20. int& info() { return head->data; } // 返回链表头结点的信息
  21. void insert(int& e) {
  22. _size++;
  23. LNode* p = new LNode(e);
  24. p->next = head->next;
  25. head->next = p;
  26. }
  27. void insert(int index, int a)
  28. {
  29. if (index < 1 || index > _size + 1)
  30. return; // 无效的插入位置,直接返回
  31. _size++;
  32. LNode* tmp = new LNode(a);
  33. if (index == 1) {
  34. tmp->next = head->next;
  35. head->next= tmp;
  36. return;
  37. }
  38. LNode* pre = nullptr, * cur = head->next;
  39. int count = 1;
  40. while (count < index) {
  41. pre = cur;
  42. cur = cur->next;
  43. count++;
  44. }
  45. tmp->next = cur;
  46. pre->next = tmp;
  47. }
  48. void print_L() {
  49. LNode* p = head->next;
  50. while (p != NULL) {
  51. cout << p->data << " ";
  52. p = p->next;
  53. }
  54. cout << endl;
  55. }
  56. int change()
  57. {
  58. int x, y;
  59. cin >> x >> y;
  60. if (x < 0 || x > _size || y < 0 || y > _size)
  61. {
  62. cout << "error" << endl;
  63. return -1;
  64. }
  65. if (x == y)
  66. return 0;
  67. LNode* px_prev = nullptr, * py_prev = nullptr, * px, * py;
  68. // 寻找第 x 个结点和它的前驱
  69. int count_x = 0;
  70. px_prev = head;
  71. while (count_x < x - 1) {
  72. px_prev = px_prev->next;
  73. count_x++;
  74. }
  75. px = px_prev->next;
  76. // 寻找第 y 个结点和它的前驱
  77. int count_y = 0;
  78. py_prev = head;
  79. while (count_y < y - 1) {
  80. py_prev= py_prev -> next;
  81. count_y++;
  82. }
  83. py= py_ prev -> next;
  84. // 进行交换操作
  85. LNode* temp=px- > next;//保存px之后的结点,以便于重新链接;
  86. px- > next= py- > next;
  87. py_prev -> next= px;
  88. py- > next=temp;
  89. px_ prev ->next = py;
  90. return 0;
  91. };

};

int main() {

  1. List LB;
  2. int n, a;
  3. cin >> n;
  4. for (int i = 0; i < n; i++)
  5. {
  6. cin >> a;
  7. LB.insert(i + 1, a);
  8. }
  9. LB.print_L();
  10. int t;
  11. cin >> t;
  12. for (int i = 0; i < t; i++)
  13. {
  14. int a = LB.change();
  15. if (a == -1)
  16. continue;
  17. LB.print_L();
  18. }

} “`


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=9457

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?