2020-01-14培训第二十天

今天讲了链表。

#include

int main()

{

          struct stu

           {

                    int num;

                    char name[10];

                    struct stu *next;//定义一个结构体指针,next是指针尾

            };

             head=(struct stu *)malloc(sizeof(stu));//把后面的数据强制转化为前面的指针,malloc在内存中申请空间,头                                                                                文件是

              head->num=1;

              strcpy(head->name,"zhang");

}

听课就觉得链表的头、尾都理解,但是就是不会做题。一做题就发懵。

你可能感兴趣的:(2020-01-14培训第二十天)