导航:首页 - C++单链表操:作交换节点

C++单链表操:作交换节点
作者:深圳教育在线 来源:www.szedu.net 更新日期:2009-8-29

//定位两个节点
  while ((tmp->_val != i1) && (tmp != NULL))
  {
  tmp = tmp->_next;
  }
  if (tmp == NULL)
  {
  return ;
  }
  else
  {
  node1 = tmp;
  }
  tmp = head;
  while ((tmp->_val != i2) && (tmp != NULL))
  {
  tmp = tmp->_next;
  }
  if (tmp == NULL)
  {
  return ;
  }
  else
  {
  node2 = tmp;
  }
  //不得和头节点交换
  if (node1 == head)
  {
  return ;
  }
  else if (node2 == head)
  {
  return ;
  }
  //自己和自己就不必交换了
  if (node1 == node2)
  {
  return ;
  }
  tmp = head;
  while (tmp->_next != node1)
  {
  tmp = tmp->_next;
  }
  prenode1 = tmp;
  tmp = head;
  while (tmp->_next != node2)
  {
  tmp = tmp->_next;
  }
  prenode2 = tmp;
  postnode1 = node1->_next;
  postnode2 = node2->_next;
  //交换节点
  prenode1->_next = node2;
  node2->_next = postnode1;
  prenode1->_next = node1;
  node1->_next = postnode2;
  }
  void Print(LinkNode head,char* info)
  {
  using namespace std;
  cout<<info<<endl;
  while (head != NULL)
  {
  cout<<head<<": "<<head->_val<<" ";
  head = head->_next;
  }
  cout<<endl;
  }
  测试程序为:
  //main.cpp
  #include "Link.h"
  #include <iostream>
  using namespace std;
  int main(int argc,char* argv[])
  {
  LinkNode head = CreateLink(10);
  Print(head,"before exchanging....");
  ExchLinkNode (head,3,8);
  Print(head,"after exchanging....");
  return 0;
  }

[本文共有 2 页,当前是第 2 页] <<上一页 下一页>>


报 名 此 课 程 / 咨 询 相 关 信 息
【预约登门】 【网上咨询】 【订座试听】 【现在报名】
课程名称
C++单链表操:作交换节点
真实姓名
* 性 别
联系电话
* E-mail:
所在地区
咨询内容

      

相关文章:

Copyright© 2004-2010 www.szedu.net 深圳教育在线 版权所有
中国·深圳
粤ICP备06023013号