• 数据结构实验1


    1、根据给定的整型数组,以尾插法建立一个单链表,并实现以下操作:

    ① 查找:输入一个欲查找的整数,找到则显示第一个相匹配的整数在单链表中所处的位置,若不存在,则显示提示信息

    ② 删除:输入一个欲删除的整数e,若存在则在单链表中删除第一个值为e的元素。

    ③ 插入:输入一个欲插入位置i和欲插入元素e,将e插入到第i个整数之前(注意i的合法性)。

     

    1. #include
    2. #include
    3. // 定义单链表节点结构
    4. typedef struct Node {
    5. int data;
    6. struct Node* next;
    7. } Node;
    8. // 尾插法建立单链表
    9. Node* createLinkedList(int arr[], int size) {
    10. Node* head = NULL;
    11. Node* tail = NULL;
    12. for (int i = 0; i < size; i++) {
    13. Node* newNode = (Node*)malloc(sizeof(Node));
    14. newNode->data = arr[i];
    15. newNode->next = NULL;
    16. if (head == NULL) {
    17. head = newNode;
    18. tail = newNode;
    19. } else {
    20. tail->next = newNode;
    21. tail = newNode;
    22. }
    23. }
    24. return head;
    25. }
    26. // 查找元素在单链表中的位置
    27. int findElement(Node* head, int target) {
    28. Node* current = head;
    29. int position = 1;
    30. while (current != NULL) {
    31. if (current->data == target) {
    32. return position;
    33. }
    34. current = current->next;
    35. position++;
    36. }
    37. return -1; // 未找到目标元素
    38. }
    39. // 删除单链表中的指定元素
    40. void deleteElement(Node** headRef, int target) {
    41. Node* current = *headRef;
    42. Node* prev = NULL;
    43. // 处理头节点为目标元素的情况
    44. if (current != NULL && current->data == target) {
    45. *headRef = current->next;
    46. free(current);
    47. return;
    48. }
    49. while (current != NULL && current->data != target) {
    50. prev = current;
    51. current = current->next;
    52. }
    53. if (current == NULL) {
    54. return; // 未找到目标元素
    55. }
    56. prev->next = current->next;
    57. free(current);
    58. }
    59. // 在单链表的指定位置插入元素
    60. void insertElement(Node** headRef, int position, int value) {
    61. Node* newNode = (Node*)malloc(sizeof(Node));
    62. newNode->data = value;
    63. if (position == 1) {
    64. newNode->next = *headRef;
    65. *headRef = newNode;
    66. } else {
    67. Node* current = *headRef;
    68. for (int i = 1; i < position - 1 && current != NULL; i++) {
    69. current = current->next;
    70. }
    71. if (current == NULL) {
    72. printf("无效的插入位置\n");
    73. return;
    74. }
    75. newNode->next = current->next;
    76. current->next = newNode;
    77. }
    78. }
    79. // 打印单链表
    80. void printLinkedList(Node* head) {
    81. Node* current = head;
    82. while (current != NULL) {
    83. printf("%d ", current->data);
    84. current = current->next;
    85. }
    86. printf("\n");
    87. }
    88. // 释放单链表内存
    89. void freeLinkedList(Node* head) {
    90. Node* current = head;
    91. Node* next = NULL;
    92. while (current != NULL) {
    93. next = current->next;
    94. free(current);
    95. current = next;
    96. }
    97. }
    98. int main() {
    99. // 测试数据
    100. int arr[] = {1, 2, 3, 4, 5};
    101. int size = sizeof(arr) / sizeof(arr[0]);
    102. // 建立单链表
    103. Node* head = createLinkedList(arr, size);
    104. // 打印单链表
    105. printf("单链表内容:");
    106. printLinkedList(head);
    107. // 查找元素
    108. int target = 3;
    109. int position = findElement(head, target);
    110. if (position != -1) {
    111. printf("%d 在单链表中的位置为:%d\n", target, position);
    112. } else {
    113. printf("未找到元素 %d\n", target);
    114. }
    115. // 删除元素
    116. int deleteValue = 2;
    117. deleteElement(&head, deleteValue);
    118. printf("删除元素 %d 后的单链表内容:", deleteValue);
    119. printLinkedList(head);
    120. // 插入元素
    121. int insertPosition = 2;
    122. int insertValue = 6;
    123. insertElement(&head, insertPosition, insertValue);
    124. printf("在位置 %d 插入元素 %d 后的单链表内容:", insertPosition, insertValue);
    125. printLinkedList(head);
    126. // 释放单链表内存
    127. freeLinkedList(head);
    128. return 0;
    129. }

    期末复习1:

    1. createLinkedList:尾插法建立单链表

    根据传入的数组和大小,依次创建新节点,并使用尾插法插入到链表中。同时记录头结点和尾结点的地址,并将头结点地址返回。

    2. findElement:查找元素在单链表中的位置

    从头结点开始遍历链表,如果当前节点的数据等于目标值,则返回该节点在链表中的位置;否则继续遍历下一个节点。如果遍历到链表末尾都未找到目标值,则返回 -1。

    3. deleteElement:删除单链表中的指定元素

    传入头结点指针的地址,以便在删除头节点时可以修改头结点的值。首先判断头节点是否为目标元素,如果是则删除头结点并返回;否则从头节点开始遍历链表,找到目标元素位置的前一个节点和目标元素节点,然后将前一个节点的 next 指针指向下一个节点,最后释放目标元素节点的内存空间。

    4. insertElement:在单链表的指定位置插入元素

    传入头结点指针的地址、插入位置和插入值。如果插入位置是第一个节点,则需要修改头结点的指针,否则需要遍历链表寻找插入位置的前一个节点,然后将新节点插入到该位置之后。

    5. printLinkedList:打印单链表

    从头节点开始遍历链表,并依次输出节点的数据值,直到链表末尾。

    6. freeLinkedList:释放单链表内存

    传入头结点的地址,然后从头节点开始遍历链表,依次释放每个节点的内存空间。同时将头结点指向 NULL,以免出现野指针问题。

     

     

    2、分别创建两个有序的顺序表(每个表的元素个数及每个元素的值在运行时由键盘输入),现将两个有序表合并,并保证新表依然为有序的顺序表。

     

    1. #include
    2. #include
    3. #define MAX_SIZE 100
    4. typedef struct {
    5. int data[MAX_SIZE];
    6. int length;
    7. } SqList;
    8. // 创建有序顺序表
    9. void createSqList(SqList *list) {
    10. printf("请输入顺序表元素个数:");
    11. scanf("%d", &(list->length));
    12. printf("请输入顺序表元素(从小到大排序):");
    13. for (int i = 0; i < list->length; i++) {
    14. scanf("%d", &(list->data[i]));
    15. }
    16. }
    17. // 合并两个有序顺序表
    18. SqList mergeSqLists(SqList list1, SqList list2) {
    19. SqList mergedList;
    20. int i = 0, j = 0, k = 0;
    21. while (i < list1.length && j < list2.length) {
    22. if (list1.data[i] <= list2.data[j]) {
    23. mergedList.data[k++] = list1.data[i++];
    24. } else {
    25. mergedList.data[k++] = list2.data[j++];
    26. }
    27. }
    28. while (i < list1.length) {
    29. mergedList.data[k++] = list1.data[i++];
    30. }
    31. while (j < list2.length) {
    32. mergedList.data[k++] = list2.data[j++];
    33. }
    34. mergedList.length = k;
    35. return mergedList;
    36. }
    37. // 打印顺序表
    38. void printSqList(SqList list) {
    39. printf("合并后有序顺序表:");
    40. for (int i = 0; i < list.length; i++) {
    41. printf("%d ", list.data[i]);
    42. }
    43. printf("\n");
    44. }
    45. int main() {
    46. SqList list1, list2, mergedList;
    47. printf("创建第一个有序顺序表:\n");
    48. createSqList(&list1);
    49. printf("创建第二个有序顺序表:\n");
    50. createSqList(&list2);
    51. mergedList = mergeSqLists(list1, list2);
    52. printSqList(mergedList);
    53. return 0;
    54. }

    逻辑简单

    思考题(括号内为摘要)

    1、如何理解“顺序存储同时支持随机存取和顺序存取,而链式存储只支持顺序存取”?

    答:顺序存储是将数据元素按照其逻辑关系依次存放在一块连续的内存空间中。由于数据元素在内存中的物理位置是连续的,所以可以直接通过元素的下标进行随机存取,即可以根据元素的位置快速地访问和修改数据。这种存储方式能够支持随机存取,即可以通过元素的索引直接访问到指定位置的元素。同时,也可以按照顺序依次遍历数据元素,即支持顺序存取。

    链式存储则是将数据元素存储在独立的节点中,并且通过指针将这些节点连接起来形成一个链表结构。每个节点保存了数据元素本身的值以及指向下一个节点的指针。由于节点之间的连接关系是通过指针实现的,所以链式存储不要求数据元素在内存中的物理位置是连续的。对于链式存储,只能从头节点开始顺序遍历链表,依次访问每个节点,因此只支持顺序存取。(顺序存储是将数据元素按照其逻辑关系依次存放在连续的内存空间中,支持随机访问和修改数据,也可以按顺序遍历。链式存储是通过节点之间的指针连接来存储数据元素,不要求内存中的物理位置连续,只能顺序遍历访问链表中的节点。)

     

    2.保证时间复杂度为O(n),如何将单链表原地(即不另外申请新的结点)翻转,简述算法思想。

    答:将单链表原地翻转的算法思想是迭代法,其基本思路是从头节点开始,依次将每个节点的 next 指针反转指向其前一个节点,最终完成整个链表的翻转,同时需要特别处理好头节点和尾节点。

    具体实现步骤如下:

    定义三个指针变量:cur、pre、next,分别表示当前节点、该节点的前一个节点以及该节点的后一个节点。初始化时,将cur指向头节点,而pre和next都置为null。依次遍历单链表,当cur不为null时,执行以下操作:记录cur的下一个节点为next;将cur的next指针指向pre;更新pre为当前节点cur,更新cur为下一个节点next。最后,由于翻转后原来的尾节点变成了翻转后的头节点,需要将原来的头节点的指针指向null。(单链表原地翻转的迭代法基本思路是从头节点开始,将每个节点的 next 指针反转指向其前一个节点,最终完成整个链表的翻转。具体实现步骤包括定义三个指针变量:cur、pre、next,初始化时,将cur指向头节点,而pre和next都置为null。遍历单链表,当cur不为null时,记录cur的下一个节点为next;将cur的next指针指向pre;更新pre为当前节点cur,更新cur为下一个节点next。最后,将原来的头节点的指针指向 null。)

     

     

  • 相关阅读:
    项目团队管理的常见难点,如何有效解决?
    java导出word实现
    REDIS12_缓存雪崩、缓存穿透、基于布隆过滤器解决缓存穿透的问题、缓存击穿、基于缓存击穿工作实际案例
    微信小程序低功耗蓝牙BLE快速开发js
    使用dockerfile快速构建一个带ssh的docker镜像
    C++线程同步
    Spring Boot Actuator详解与漏洞利用
    『Java安全』XStream 1.4-1.4.6&1.4.10反序列化漏洞CVE-2013-7285复现与浅析
    172.mybatisPlus的实际应用
    xss-labs/level4
  • 原文地址:https://blog.csdn.net/weixin_74384251/article/details/133910862