问题 单项选择题

(48)~(50)以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转存到链表的各个结点中,请从与下划线处号码对应的一组选项中选择出正确的选项。  #include <stdlib.h>  struct node  { char data; struct node *next;};  (48) CreatList(char *s)  { struct node *h,*p,*q;  h=(struct node *)malloc(sizeof(Struct node));  p=q=h;  while(*s!=‘\0’)  { p=(struct node *)malloc(sizeof(struct node));  p->data=(49);  q->next=p;  q=(50);  s++;  }  p->next=0;  return h;  }  main()  { char str[]="link list";  struct node *head;  head=CreatList(str);  }

A.char*

B.stmct node

C.strumnode*

D.char

答案

参考答案:C

阅读理解

阅读短文,根据要求完成下面各小题。

    Reading is a good habit, but the problem is, there's too much to read these days, and too little time to read

every word of it. (3) There are hundreds of skills to help you read more in less time. Here are two skills that I

think are especially good.

    Preview-if it's long and hard. Previewing is especially useful for getting a general idea of heavy reading like

long magazine articles and business reports. Here's how to preview.

    ●Read the first two paragraphs and the last two paragraphs carefully.

    ●Then read only the first sentence of the other paragraphs.

    Previewing doesn't give you all the details. (4) It keeps you from spending time on things you don't really

want-or need-to read.

    Skim-if it's short and simple. Skimming is a good way to get a general idea of light reading --like popular

magazines or the sports and entertainment of your daily paper. Here's how to skim.

    ●Get your eyes to move fast. Sweep them across each line.

    ●Pick up only a few key words in each line.

    Everybody skims differently. You and I may not pick up the same words when we skim the same piece, but

we'll get a similar idea of what it's all about.

A. 根据短文内容简要回答问题。

1. How many skills are recommended in this passage?

__________________________________________

2. What should we do when we read sports news in a daily paper according to the passage?

__________________________________________

B. 将短文中划线的两个句子译成汉语。

3.________________________________________

4.________________________________________

C. 请给短文拟一个适当的标题。

5.________________________________________

问答题 简答题