C++ 静态单链表

  1. #include <iostream>
  2. using namespace std;
  3. struct student
  4. {
  5.     char name[30];
  6.     int age;
  7.     struct student *next;
  8. };
  9. int main()
  10. {
  11.     struct student st1, st2, *head, *p;
  12.     strcpy(st1.name, "张三");
  13.     st1.age = 20;
  14.     
  15.     strcpy(st2.name, "李四");
  16.     st2.age = 22;
  17.     head = &st1;
  18.     st1.next = &st2;
  19.     st2.next = NULL;
  20.     p = head;
  21.     
  22.     printf("%8s%10s/n""Name""Age");
  23.     while(p != NULL)
  24.     {
  25.         printf("%8s%10d/n", p ->name, p ->age);
  26.         p = p ->next;
  27.     }
  28.     
  29.     system("pause");
  30.     return 0;
  31. }

开发平台 vs 2005

,运行截图

C++ 静态单链表_第1张图片

 

 

你可能感兴趣的:(C++ 静态单链表)