概述
function [ A ] = quickSort( A,p,r )
%UNTITLED5 Summary of this function goes here
% Detailed explanation goes here
if p<r
[A,q]=partition(A,p,r);
A=quickSort(A,p,q-1);
A=quickSort(A,q+1,r);
end
end
function [ A,q ] = partition( A,p,r )
%UNTITLED6 Summary of this function goes here
% Detailed explanation goes here
x=A(r);
i=p-1;
for j=p:r-1
if A(j)<=x
i=i+1;
temp=A(j);
A(j)=A(i);
A(i)=temp;
end
end
temp=A(i+1);
A(i+1)=A(r);
A(r)=temp;
q=i+1;
end
最后
以上就是俭朴哈密瓜为你收集整理的matlab快速排序的全部内容,希望文章能够帮你解决matlab快速排序所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复