评估最坏运行情况时间以逆向遵循以下算法

时间:2019-03-07 10:57:48

标签: double doubly-linked-list

该算法最差运行情况时间的评估

Node temp=head; //swap head and tail
   head=tail; // head now points to tail
   tail=temp;
Node p=head; //create a node and point to head
while(p!=null)
{ 
    temp=p.next; 
    p.next=p.prev; 
    p.prev=temp; 
    p=p.next;
}

0 个答案:

没有答案