Вот есть стек
program l_2;
Uses CRT;
type ptr=^node;
node=record
info:integer;
link:ptr;
end;
var
top,q,r:ptr;
a,b,c:word;
procedure Push(n:integer);
var
p:ptr;
begin
new(p);
p^.info:=n;
p^.link:=top;
top:=p;
end;
function Pop:integer;
var
l:ptr;
begin
if top <> nil then
begin
l:=top^.link;
Pop:=top^.info;
dispose(top);
top:=l;
end
else begin
Writeln('Ввод не верен');
Pop:=0;
end;
end;
procedure menu;
begin
writeln;
writeln;
write(' Введите команду и нажмите ВВОД: ');
read(a);
if a=1 then
begin
write(' Введите число: ');
readln(b);
Push(b);
menu;
end;
if a=2 then
begin
writeln;
writeln(' Стек был очищен' );
readln©;
if c=1 then
begin
write(' Введите число: ');
readln(b);
Push(b);
end;
if c=2 then
begin
write(pop);
end;
menu;
end;
if a=3 then
begin
q:=top;
while q<>nil do
begin
write(q^.info, ' ');
q:=q^.link;
end;
menu;
end;
if a=4 then
begin
while top<>nil do
begin
r:=top^.link;
dispose(top);
top:=r;
end;
end;
end;
begin
clrscr;
writeln(' Ввод числа стека: нажмите 1 ');
writeln(' Удаление числа из стека: нажмите 2 ');
writeln(' Вывод стека на экран: нажмите 3 ');
writeln(' Выход из программы: нажмите 4 ');
menu;
end.
Нужна любая сортировка по возростанию.HELP!!!