题解 | #牛牛的链表删除#

牛牛的链表删除

https://www.nowcoder.com/practice/d3df844baa8a4c139e103ca1b1faae0f

#include <stdio.h>

typedef struct Node{
    int data;
    struct Node* next;
} node;
node* cai(int v){
    node* kk=(node*)malloc(sizeof(node));
    kk->data=v;
    kk->next=NULL;
    return kk;
}
int main(){
    int n;
    int k;
    scanf("%d",&n);
       scanf("%d",&k); 
    node* head=NULL;
    node* tail=NULL;
    for(int i=0;i<n;i++){
        int v;
        scanf("%d",&v);
        if(v==k){
            continue;
        }
        node* f=cai(v);
        if(head==NULL){
            head=f;
            tail=f;
        }else{
            tail->next=f;
            tail=f;
        }
    }
    node* p=head;
    while(p!=NULL){
        printf("%d ",p->data);
        p=p->next;
    }

}

全部评论

相关推荐

点赞 评论 收藏
分享
孤寡孤寡的牛牛很热情:为什么我2本9硕投了很多,都是简历或者挂,难道那个恶心人的测评真的得认真做吗
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务