文件名称:matlab提取文件要素代码-matlabExam:matlab考试
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-10 10:19:20
系统开源
matlab提取文件要素代码作业2编: Q1。 编写菜单驱动程序以使用以下方法对列表进行排序:排序方法菜单 气泡排序方法 插入排序方法 放弃 您的选择:1/2/3-> 回答 : 编的结构 菜单功能 交换功能 主功能 1.开关盒 * choice 1 : bubble_sort function * choice 2 : insertion_sort funtion * choice 3 : quit 交换功能 function [ x , y ]= swap ( a , b ) x=b; y=a; endfunction 气泡排序 function arr = bubble_sort ( a , n ) sc= 0 ; for i= 1 :n for j= 1 :n- 1 if (a(j) > a(j+ 1 )) sc=sc+ 1 ; disp([ " \nswapped => " , num2str(sc) , " \n " ]) [ a(j) , a(j+ 1 ) ] = swap( a(j), a(j+ 1 ) ); a #to print the array endif end
【文件预览】:
matlabExam-master
----README.md(10KB)
----index.html(9KB)