關(guān)于鮑叔牙薦管仲的歷史典故
typedef struct linknode

{
int data;
struct linknode *next;
}node;
/pic/p>
node *reverse(node *head)
{
node *p,*q,*r;
p=head;
q=p->next;
while(q!=NULL)
{
r=q->next;
q->next=p;
p=q;
q=r;
}
head->next=NULL;
head=p;
return head;
}
【鮑叔牙薦管仲的歷史典故】相關(guān)文章:
管仲選才的歷史典故01-03
【薦】關(guān)于歷史典故10-29
關(guān)于歷史典故【薦】09-17
【薦】有關(guān)歷史典故10-21
有關(guān)歷史典故【薦】12-02
歷史典故作文(薦)01-04
[薦]歷史典故作文11-06
實(shí)用的歷史典故作文(薦)09-05
(薦)實(shí)用的歷史典故作文08-29
歷史的典故09-20
- 相關(guān)推薦