java 单链表 首位合并与交叉合并

一曲冷凌霜 提交于 2020-01-24 05:38:51
class ListMethod {
    //合并两个有序单链表
    public singleNode Join(singleNode list,singleNode list1){
        Node head=list.getHead();
        Node head1=list1.getHead();
        //连接到末尾
        Node cur=head.next;
        while (true){
            if(cur.next==null)break;
            cur=cur.next;
        }
        cur.next=head1.next;
        return list;
    }
    public singleNode crossJoin(singleNode list,singleNode list1){
        Node head=list.getHead();
        Node head1=list1.getHead();
        singleNode newNodeList=new singleNode();
        Node headNew=newNodeList.getHead();
        //交叉连接
        Node curNew=headNew;
        Node cur=head.next;
        Node curNext=null;
        Node cur1=head1.next;
        Node cur1Next=null;

        while(true){
            if(cur==null&&cur1==null)break;
            if(cur==null){
                cur1Next= cur1.next;
                curNew.next=cur1;
                cur1.next=null;
                cur1=cur1Next;
                curNew=curNew.next;
                continue;
            }
            if(cur1==null){
                curNext= cur.next;
                curNew.next=cur;
                cur.next=null;
                cur=curNext;
                curNew=curNew.next;
                continue;
            }
            if(cur.no < cur1.no){
                curNext= cur.next;
                curNew.next=cur;
                cur.next=null;
                cur=curNext;
            }
            else{
                cur1Next= cur1.next;
                curNew.next=cur1;
                cur1.next=null;
                cur1=cur1Next;
            }
                curNew= curNew.next;
        }
        return newNodeList;
    }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!