首页 > 代码库 > 华科机考:遍历链表
华科机考:遍历链表
时间限制:1秒空间限制:32768K
题目描述
建立一个升序链表并遍历输出。
输入描述: 输入的每个案例中第一行包括1个整数:n(1<=n<=1000),接下来的一行包括n个整数。
输出描述: 可能有多组测试数据,对于每组数据, 将n个整数建立升序链表,之后遍历链表并输出。
输入例子: 4
3 5 7 9
输出例子: 3 5 7 9
思路:这与以前直接建立链表不一样,在插入新节点时还需要重新遍历已有的节点,从而来判断插入的位置。具体实现的时候,加个头结点,方便插入操作。(大致过程类似于头插法)
注意:1.行末尾不能有空格
2.具体进行扫描时,一般来说避免直接对头指针进行操作,while(a&&b)这种结构时,大家要注意a,b的顺序诶(o(╯□╰)o)
代码:
#include <iostream> #include <algorithm> using namespace std; struct node{ int data; node *next; }; void travel(node *head){ cout<<head->next->data; node *tmp=head->next; while(tmp->next){ cout<<" "<<tmp->next->data; tmp=tmp->next; } cout<<endl; } int main(){ int n; node *head,*p,*temp; while(cin>>n){ head=new node; head->data=http://www.mamicode.com/1; head->next=NULL; for(int i=0;i<n;i++){ p=new node; cin>>p->data; temp=head; while(temp->next&&p->data>=temp->next->data){ temp=temp->next; } p->next=temp->next; temp->next=p; } travel(head); } }
华科机考:遍历链表
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。