summaryrefslogtreecommitdiff
path: root/3808/CH3/EX3.4/Ex3_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3808/CH3/EX3.4/Ex3_4.sce')
-rw-r--r--3808/CH3/EX3.4/Ex3_4.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3808/CH3/EX3.4/Ex3_4.sce b/3808/CH3/EX3.4/Ex3_4.sce
new file mode 100644
index 000000000..4d54fa302
--- /dev/null
+++ b/3808/CH3/EX3.4/Ex3_4.sce
@@ -0,0 +1,27 @@
+//Chapter 03: Algorithms
+
+clc;
+clear;
+
+function [ res ]= bubblesort (a , n )
+i =1;
+j =1;
+temp =0;
+for i =1: n -1
+for j =1: n - i
+if ( a ( j ) >a ( j +1) )
+temp = a ( j ) ;
+a ( j ) = a ( j +1) ;
+a ( j +1) = temp ;
+end
+j = j +1;
+end
+i = i +1;
+end
+res = a ;
+disp ( res ,"Sorted Array :") ;
+endfunction
+
+ a =[3 2 4 1 5]
+ disp (a , " Given Array " )
+a1 = bubblesort (a ,5)