Hi guys (again),
Another exercise in Turbo Pascal about linked lists.
Write a program that merges 2 linked lists and sorts elements from the lowest to the greatest.
let suppose the list has this elements
list = ^pointer;
pointer = record
value:integer;
next:list;
end;
Please help, I have an exam after 3 hrs :S
thanks in advance :)