【单选题】以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转储到链表的各个结点中,请从与下划线处号码对应的一组选若中选择出正确的选项。#include stuct node{ char data struct node *next} (48) CreatLis(char *s){ struct node *h,*p,*q) h=(struct node *)malloc(sizeo...
【单选题】以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转存到链表的各个结点中,请从与下划线处号码对应的一组选项中选择出正确的选项。 #include <stdlib.h> struct node { char data; struct node *next;}; (48) CreatList(char *s) { struct node *h,*p,*q; h=(struct ...
【单选题】以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转存到链表的各个结点中,请为下划线处选择正确的选项。 #include < stdlib. h > stuct node char data; struct node * next; }; ( ) CreatList(char * s) struet node * h, * p, * q; h = (struet node ...
【单选题】以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转存到链表的各个结点中,请填空。 #include <stdlib.h> stuct node { char data; struet node * next; }; stntct node * CreatList(char * s) { struet node *h,*p,*q; h = (struct node * ) ...
【单选题】以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转储到链表的各个结点中,请为下划线处有号码的选择出正确的选项。 #include stuct node { char data; struct node *next;}; struct node * CreatList(char *s) { struct node *h,*p,*q; h=(struct node *) m...
【单选题】以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转储到链表的各个结点中,请为下划线处有号码的选择出正确的选项。#include stuct node{ char data; struct node *next;};___(1)___ CreatList(char *s){ struct node *h,*p,*q;h=(struct node *) malloc(size...