“常用公式”在线计算,“设计手册”在线查询
给出俩个单向链表的头指针,比如h1,h2,判断这俩个链表是否相交。为了简化问题,我们假设俩个链表均不带环。问题扩展:1.如果链表可能有环列?2.如果需要求出俩个链表相交的第一个节点列?
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 支持支持 反对反对

共 1 个关于本帖的回复 最后回复于 2013-8-16 10:45

沙发
陈荣莲 八品司务 发表于 2013-8-16 10:45:34 | 只看该作者
研发埠培训中心
structNode {  int data;  int Node *next;};// if there is no cycle.int isJoinedSimple(Node * h1, Node * h2) {  while (h1->next != NULL) {    h1 = h1->next;  }  while (h2->next != NULL) {    h2 = h2-> next;  }  return h1 == h2;}// ifthere could exist cycleint isJoined(Node *h1, Node * h2) {  Node* cylic1 = testCylic(h1);  Node* cylic2 = testCylic(h2);  if (cylic1+cylic2==0) return isJoinedSimple(h1, h2);  if (cylic1==0 && cylic2!=0 || cylic1!=0 &&cylic2==0)return 0;  Node *p = cylic1;  while (1) {    if (p==cylic2 || p->next == cylic2) return 1;    p=p->next->next;    cylic1 = cylic1->next;    if (p==cylic1) return 0;  }}Node*testCylic(Node * h1) {  Node * p1 = h1, *p2 = h1;  while (p2!=NULL && p2->next!=NULL) {    p1 = p1->next;    p2 = p2->next->next;    if (p1 == p2) {      return p1;    }  }  return NULL;}
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注我们

360网站安全检测平台