1. 首页
  2. 大数据
  3. spark
  4. 数据结构cc循环链表.pptx

数据结构cc循环链表.pptx

上传者: 2020-12-11 23:27:08上传 PPTX文件 241.17KB 热度 17次
typedef struct node{ datatype data; struct node *next;}*linklist;void invert( linklist head){ linklist p, q, r; p=head; q=p->next; while(q!=NULL) /*没有后继时停止*/ { r=q->next; q->next=p; p=q; q=r; } head->
用户评论