于归


私信TA

用户名:dotcpp0681287

访问量:193

签 名:

等  级
排  名 9004
经  验 1128
参赛次数 0
文章发表 7
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

初始列表插入时顺序相反,且无"insert OK"提示,加入flag判断是否为初始列表操作;

参考代码:

#include <stdio.h>

#include <stdlib.h>

#include <string.h>


typedef struct Node {

    int data;

    struct Node* next;

} Node;


Node* createNode(int data) {

    Node* newNode = (Node*)malloc(sizeof(Node));

    newNode->data = data;

    newNode->next = NULL;

    return newNode;

}


void insert(Node** head, int position, int element,int flag) {

    Node* newNode = createNode(element);

    if (position == 1) {

        newNode->next = *head;

        *head = newNode;

    } else {

        Node* current = *head;

        int count = 1;

        while (count < position - 1 && current != NULL) {

            current = current->next;

            count++;

        }

        if (current == NULL) {

            printf("insert fail\n");

            return;

        }

        newNode->next = current->next;

        current->next = newNode;

    }

    if(flag) printf("insert OK\n");

}


void delete(Node** head, int position) {

    if (*head == NULL) {

        printf("delete fail\n");

        return;

    }

    Node* temp = *head;

    if (position == 1) {

        *head = temp->next;

        free(temp);

    } else {

        Node* current = *head;

        int count = 1;

        while (count < position && current != NULL) {

            temp = current;

            current = current->next;

            count++;

        }

        if (current == NULL) {

            printf("delete fail\n");

            return;

        }

        temp->next = current->next;

        free(current);

    }

    printf("delete OK\n");

}


int get(Node* head, int position) {

    Node* current = head;

    int count = 1;

    while (count < position && current != NULL) {

        current = current->next;

        count++;

    }

    if (current == NULL) {

        printf("get fail\n");

        return -1;

    }

    return current->data;

}


void show(Node* head) {

    if (head == NULL) {

        printf("Link list is empty\n");

        return;

    }

    Node* current = head;

    while (current != NULL) {

        printf("%d ", current->data);

        current = current->next;

    }

    printf("\n");

}


int main() {

    int n, m;

    scanf("%d", &n);

    

    Node* head = NULL;

    for (int i = 0; i < n; i++) {

        int data;

        scanf("%d", &data);

        insert(&head, 1, data,0);

    }

    

    scanf("%d", &m);

    for (int i = 0; i < m; i++) {

        char operation[10];

        scanf("%s", operation);

        

        if (strcmp(operation, "get") == 0) {

            int position;

            scanf("%d", &position);

            int result = get(head, position);

            if (result != -1) {

                printf("%d\n", result);

            }

        } else if (strcmp(operation, "insert") == 0) {

            int position, element;

            scanf("%d %d", &position, &element);

            insert(&head, position, element,1);

        } else if (strcmp(operation, "delete") == 0) {

            int position;

            scanf("%d", &position);

            delete(&head, position);

        } else if (strcmp(operation, "show") == 0) {

            show(head);

        }

    }

    

    return 0;

}


 

0.0分

0 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换

万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区