Mã tài liệu: 251141
Số trang: 8
Định dạng: doc
Dung lượng file: 64 Kb
Chuyên mục: Kỹ thuật - Công nghệ
{---------------TRON 2 DANH SACH ----------}
Procedure MergerList(L1,L2:List;Var L:List);
Var Q,P,T: List;
Begin
sapxep(L1);
sapxep(L2);
P:=first(L1);
{ CACH 1: while P<>end_L(L1) do
begin
insert_L(retrieve(P,L1),End_L(L),L);
P:=P^.next;
end;
Q:=L2;
while Q<>end_L(L2) do
begin
T:=first(L);
while (T<>nil) and (retrieve(T,L) T:=T^.next; insert_L(retrieve(Q,L2),T,L); Q:=Q^.next; end; } P:=First(L1);q:=FIRST(L2); while (P<>End_L(L1)) and (Q<>End_L(L2)) do if retrieve(P,L1) begin insert_L(retrieve(P,L1),End_L(L),L); P:=P^.next; end else begin insert_L(retrieve(Q,L2),End_L(L),L); Q:=Q^.next; end ; while P<>end_L(L1) do begin insert_L(retrieve(P,L1),End_L(L),L); P:=P^.next; end; while Q<>end_L(L2) do begin insert_L(retrieve(Q,L2),End_L(L),L); Q:=Q^.next; end; End
Những tài liệu gần giống với tài liệu bạn đang xem
Những tài liệu bạn đã xem
📎 Số trang: 8
👁 Lượt xem: 543
⬇ Lượt tải: 18