SDCU师-链表的节点插入

#include<bits/stdc++.h> using namespace std; struct node { int data; struct node *next; }; void cha(int n,struct node *head,int k) { struct node *head2,*p; head2=head; p=(struct node *)malloc(sizeof(s
相关文章
相关标签/搜索