From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3808/CH3/EX3.4/Ex3_4.sce | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 3808/CH3/EX3.4/Ex3_4.sce (limited to '3808/CH3/EX3.4/Ex3_4.sce') 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) -- cgit