来源http://blog.csdn.net/huangxy10/article/details/8014233
只介绍O(n)算法
思路1:
将链表1中各结点地址存入HashTable中,
再遍历链表2,如果有结点已经在HashTable中,则两链表相交。
思路2:
将链表1的尾结点和链表2的首结点(注意不是头结点)相连。
再判断是否有环,如果有则两链表相交。
思路3:(最简单的方法)
判断两链表的尾结点是否为同一结点,若是,则相交。
实现部分为思路2。
- // LinkTable.cpp : 定义控制台应用程序的入口点。
- //
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- using namespace std;
- //链表的结构体
- struct node
- {
- char val;
- node * next;
- };
- //建立链表
- struct node * create( string & str_link )
- {
- int len = str_link.length();
- struct node * phead = new node(); //带有表头的链表,表头中不存储任何元素
- struct node * preNode = phead;
- for( int i=0; i<len; i++ )
- {
- struct node * pNode = new node();
- pNode->val = str_link[i];
- pNode->next = NULL;
- preNode->next = pNode;
- preNode = pNode;
- }
- return phead;
- }
- //输出链表
- void out_link( struct node * phead )
- {
- if( phead == NULL )
- return;
- struct node * pNode = phead->next;
- while( pNode )
- {
- cout <<pNode->val;
- pNode = pNode->next;
- }
- cout << endl;
- }
- //找到第index个元素
- struct node * find_node(struct node* phead, int index )
- {
- if(!phead) return NULL;
- struct node * pNode = phead;
- while( index--)
- {
- pNode = pNode->next;
- if( !pNode )
- return NULL;
- }
- return pNode;
- }
- //检查链表有无环
- //有,则返回快慢指针共同指向的点
- //无,则返回空指针
- struct node * check_loop( struct node * phead )
- {
- if(!phead)
- return NULL;
- struct node * pFast = phead;
- struct node * pSlow = phead;
- int step = 1;
- while( pFast )
- {
- pFast = pFast->next;
- if( step++%2==0 )
- {
- pSlow = pSlow->next;
- if( pSlow == pFast )
- return pSlow;
- }
- }
- return NULL;
- }
- //求两个节点的距离,即中间有多少个连线
- //返回-1为出错,如果是同一节点,则返回0
- int find_length( struct node* pNode1, struct node* pNode2 )
- {
- if(!pNode1||!pNode2) return -1;
- int len=0;
- while( pNode1 )
- {
- if( pNode1 == pNode2 )
- return len;
- pNode1 = pNode1->next;
- len++;
- }
- return -1;
- }
- //找环的起始点,pTail为快慢指针共同指向的节点
- struct node * loop_first_node( struct node * phead, struct node * pTail )
- {
- if( !phead || !pTail ) return NULL;
- struct node * pNode1 = pTail->next;
- struct node * pNode2 = phead->next;
- int M = find_length( pNode1, pTail );
- int N = find_length( pNode2, pTail );
- if( M > N )
- {
- int step = M-N;
- while(step--)
- pNode1 = pNode1->next;
- }
- if( N > M )
- {
- int step = N-M;
- while(step--)
- pNode2 = pNode2->next;
- }
- while(pNode1&&pNode2)
- {
- if(pNode1 == pNode2 )
- return pNode1;
- pNode1 = pNode1->next;
- pNode2 = pNode2->next;
- }
- return NULL;
- }
- void test()
- {
- string str;
- cin >> str;
- struct node *phead1 = create( str );
- int index;
- cin >> index;
- struct node * pNode1 = find_node( phead1, index );
- cin >> str;
- struct node *phead2 = create( str );
- struct node * pNode = phead2;
- while( pNode->next )
- pNode = pNode->next;
- pNode->next = pNode1; //生成相交链表, 注释掉之一行则为不相交
- while( pNode->next ) //找到链表1的尾结点
- pNode = pNode->next;
- pNode->next = phead2->next; //连接链表2的首结点
- struct node * pTail = check_loop( phead1 ); //检查是否有环
- struct node * pFirstLoopNode = NULL;
- if( pTail )
- {
- cout <<"cross." <<endl;
- }
- else
- cout << "no cross." <<endl;
- }
- int _tmain(int argc, _TCHAR* argv[])
- {
- test();
- return 0;
- }