bubble sort function that sort element of a vector from tha largest to the smallest

18 次查看(过去 30 天)
defined function that sorts the elements of a vector (of any length) from largest to smallest.
this is my work
function [ y ] = downsort_function( x )
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
n=numel(x);
t=1;
a=0;
while t==1;
for i=1:(n-1)
if x(i)>x(i+1)
x(i+1)=x(i);
t=1;
end
end
end
the problem is when i try to read with my vector, my machine gets stuck. it not giving me anything or i have to restart the machine.
thanks for yr help

回答(2 个)

Walter Roberson
Walter Roberson 2012-12-9
You never set t to 0 so your loop never exits.
  4 个评论
kevin piaget
kevin piaget 2012-12-9
编辑:Walter Roberson 2012-12-10
i made this chance but i still don't have an answer
function [ y ] = downsort_function( x )
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
n=numel(x);
t=1;
a=0;
while t==0;
for i=1:(n-1)
if x(i)>x(i+1)
x(i+1)=x(i);
swap(x(i+1),x(i))
t=1;
end
end
end

请先登录,再进行评论。


JayaSaiRamPavan Tanneru
x=input('enter:');
k=length(x);
for n=1:k
for m=1:k
if x(n)>x(m)
temp=x(n);
x(n)=x(m);
x(m)=temp;
end
end
end
disp(x);

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by