为了账号安全,请及时绑定邮箱和手机立即绑定

双循环链表就地逆置C++算法 ?

双循环链表就地逆置C++算法 ?

C++
白板的微信 2018-10-16 11:07:27
C++算法:双循环链表就地逆置,用prior,next,data等实现。
查看完整描述

1 回答

?
慕丝7291255

TA贡献1859条经验 获得超6个赞

struct Node{
Node* prior;
int data;
Node* next;
};

Node *list = new Node;
list->prior=NULL;
list->next =NULL;
list->data=0;

//初始化过程,你可以自己创建列表的剩余节点
......
//逆置过程
Node * header = list->next;
list->next = NULL;
while(header->next != NULL)
{
//针对单个节点的逆置过程
Node* temp;
temp = header->prior;
header->prior=list->next;
header->next =temp;
}
header->prior = NULL;
}



查看完整回答
反对 回复 2018-11-18
  • 1 回答
  • 0 关注
  • 1356 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信