Data Arrays Unit2
Data Arrays Unit2
Arrays
Presented By:
Preeti Dubey
1
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Example
• Suppose we want to arrange percentage marks
obtained by 100 students.
– Construct 100 variables to store percentage marks
obtained by 100 different students
– Construct one variable (called array) capable of
storing all hundred values.
2
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Arrays - Introduction
Array is a list of finite number n of homogeneous data
elements such that:
Graphical Representation
• Position is called a index or superscript. Base index = 0.
• Let DATA be a 6-element array of integers such that
DATA[0]=247, DATA[1]=56, DATA[2]=492,
DATA
1 56
INDEX 2 492
3 135
4 87
5 156
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Graphical Representation
• Position is called a index or superscript. Base index = 0.
• Let DATA be a 6-element array of integers such that
DATA[0]=247, DATA[1]=56, DATA[2]=492,
DATA
2 56
Position 3 492
4 135
5 87
6 156
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Graphical Representation
• Position is called a index or superscript. Base index = 0.
• Let DATA be a 6-element array of integers such that
DATA[0]=247, DATA[1]=56, DATA[2]=492,
DATA
1 56
VALUE 2 492
3 135
4 87
5 156
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Declaration of Arrays
1. Like any other variables, arrays must declared and created before they
can be used. Creation of arrays involve two steps:
1. Declare the array
2. Put values into the array (i.e., Memory location)
2. Declaration of Arrays:
Type arrayname[size];
3. Examples:
float marks[30];
char name[25];
int students[7];
Initialization of Arrays
1. Once arrays are created, they need to be initialised with some values
before access their content. A general form of initialisation is:
Arrayname [index/subscript] = value;
2. Example:
students[0] = 50;
students
students[1] = 40;
0 50
3. Array index starts with 0 and ends with n-1
1
4. Trying to access an array beyond its
2
boundaries will generate an error message.
3
students[7] = 100;
4
5
6
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Initialization of Arrays
1. Once arrays are created, they need to be initialised with some values
before access their content. A general form of initialisation is:
Arrayname [index/subscript] = value;
2. Example:
students[0] = 50;
students
students[1] = 40;
0 50
3. Array index starts with 0 and ends with n-1
1 40
4. Trying to access an array beyond its
2
boundaries will generate an unexpected result.
3
students[7] = 100;
4
5
6
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Initialization of Arrays
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Explicit initialization
1. Arrays can also be initialised like standard variables at the time of their
declaration.
2. Example: students
0 55
int students[] = {55, 69, 70, 30, 80, 90, 45};
1 69
3. Creates and initializes the array of integers of length 7. 2 70
4. In this case it is not necessary to mention the dimension. 3 30
4 80
5 90
6 45
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
count[2] = 9
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
printf(“%d”, count[0]);
printf(“%d”, count[3]);
SCHOOL OF ENGINEERING & TECHNOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
scanf(“%d”, &count[0]);
scanf(“%d”, &count[1]);
scanf(“%d”, &count[i]);
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
11 19 22 42 61 44 32 19 14 62 45 92
10246 10248 10252 10242 10256 10258
10242 10244 10250 10254 10260 10262
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Print
Set: I=0 Position
End
1
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
1 56 58 25 58
2 45 85 65 78
3 65 14 28 56
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
student
0 1 2 3
0 10 20 85 45
1 56 58 25 58
2 45 85 65 78
3 65 14 28 56
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
Problem-1
• Write a program to add the elements of two
matrices and save the result in third matrix.
SHARDA SCHOOL OF ENGINEERING & TECH NOLOGY
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UNIVERSITY
Beyond Boundaries
element
element
element
element
element
element
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo hi
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo mid hi
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo hi
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo mid hi
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo hi
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo mid hi
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo
hi
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo
hi
mid
Binary Search
6 13 14 25 33 43 51 53 64 72 84 93 95 96 97
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
lo
hi
mid
Performance of Binary Search
Unsuccessful search
for a list of length n, a binary search makes
approximately 2*log2(n + 1) key comparisons
Successful search
for a list of length n, on average, a binary search
makes 2*log2n – 4 key comparisons
Search Algorithm Analysis Summary
Sorting Algorithms
Sorting
• Sorting is a process that organizes a collection of
data into either ascending or descending order.
• An internal sort requires that the collection of
data fit entirely in the computer’s main memory.
• We can use an external sort when the
collection of data cannot fit in the computer’s
main memory all at once but must reside in
secondary storage such as on a disk.
• We will analyze only internal sorting algorithms.
Sorting
• Any significant amount of computer output is generally
arranged in some sorted order so that it can be
interpreted.
• Sorting also has indirect uses. An initial sort of the data
can significantly enhance the performance of an
algorithm.
• Majority of programming projects use a sort
somewhere, and in many cases, the sorting cost
determines the running time.
• A comparison-based sorting algorithm makes ordering
decisions only on the basis of comparisons.
Sorting Algorithms
• There are many sorting algorithms, such as:
– Selection Sort
– Insertion Sort
– Bubble Sort
– Merge Sort
– Quick Sort
– Shell Sort
• The first three are the foundations for faster
and more efficient algorithms.
Selection Sort
Selection Sort
• The list is divided into two sublists, sorted and unsorted,
which are divided by an imaginary wall.
• We find the smallest element from the unsorted sublist and
swap it with the element at the beginning of the unsorted
data.
• After each selection and swapping, the imaginary wall
between the two sublists move one element ahead,
increasing the number of sorted elements and decreasing
the number of unsorted ones.
• Each time we move one element from the unsorted sublist
to the sorted sublist, we say that we have completed a sort
pass.
• A list of n elements requires n-1 passes to completely
rearrange the data.
Sorted Unsorted
23 78 45 8 32 56 Original List
8 78 45 23 32 56 After pass 1
8 23 45 78 32 56 After pass 2
After pass 3
8 23 32 78 45 56
8 23 32 45 78 56 After pass 4
After pass 5
8 23 32 45 56 78
Selection Sort (cont.)
template <class Item>
void selectionSort( Item a[], int n) {
for (int i = 0; i < n-1; i++) {
int min = i;
for (int j = i+1; j < n; j++)
if (a[j] < a[min]) min = j;
swap(a[i], a[min]);
}
}
23 78 45 8 32 56 Original List
23 78 45 8 32 56 After pass 1
23 45 78 8 32 56 After pass 2
After pass 3
8 23 45 78 32 56
8 23 32 45 78 56 After pass 4
After pass 5
8 23 32 45 56 78
Insertion Sort Algorithm
template <class Item>
void insertionSort(Item a[], int n)
{
for (int i = 1; i < n; i++)
{
Item tmp = a[i];
In Pass 2, A[0] and A[1] are compared, then A[1] is compared with A[2],
A[2] is compared with A[3], and so on. Finally, A[N–3] is compared with
A[N–2]. Pass 2 involves n–2 comparisons and places the second biggest
element at the second highest index of the array.
In Pass 3, A[0] and A[1] are compared, then A[1] is compared with A[2],
A[2] is compared with A[3], and so on. Finally, A[N–4] is compared with
A[N–3]. Pass 3 involves n–3 comparisons and places the third biggest
element at the third highest index of the array. (d) In Pass n–1, A[0] and
A[1] are compared so that A[0]
ALGORITHM
BUBBLE_SORT(A, N)
Step 1: Repeat For1= to N-1
Step 2: Repeat For J= to N-I
Step 3: IF A[J] > A[J+1]
SWAP A[J] and A[J+1]
[END OF INNER LOOP]
[END OF OUTER LOOP]
Step 4: EXIT
To discuss bubble sort in detail, let us consider an array A[] that has the
following elements: A[] = {30, 52, 29, 87, 63, 27, 19, 54}
Pass 1:
(a) Compare 30 and 52. Since 30 < 52, no swapping is done.
(b) Compare 52 and 29. Since 52 > 29, swapping is done. 30, 29, 52, 87, 63,
27, 19, 54
(c) Compare 52 and 87. Since 52 < 87, no swapping is done.
(d) Compare 87 and 63. Since 87 > 63, swapping is done. 30, 29, 52, 63, 87,
27, 19, 54
(e) Compare 87 and 27. Since 87 > 27, swapping is done. 30, 29, 52, 63, 27,
87, 19, 54
(f) Compare 87 and 19. Since 87 > 19, swapping is done. 30, 29, 52, 63, 27,
19, 87, 54
(g) Compare 87 and 54. Since 87 > 54, swapping is done. 30, 29, 52, 63, 27,
19, 54, 87
Observe that after the end of the first pass, the largest element is placed at the
highest index of the array. All the other elements are still unsorted.
Pass 2:
(a) Compare 30 and 29. Since 30 > 29, swapping is done. 29, 30,
52, 63, 27, 19, 54, 87
(b) Compare 30 and 52. Since 30 < 52, no swapping is done.
(c) Compare 52 and 63. Since 52 < 63, no swapping is done.
(d) Compare 63 and 27. Since 63 > 27, swapping is done. 29, 30,
52, 27, 63, 19, 54, 87
(e) Compare 63 and 19. Since 63 > 19, swapping is done. 29, 30,
52, 27, 19, 63, 54, 87
(f) Compare 63 and 54. Since 63 > 54, swapping is done. 29, 30,
52, 27, 19, 54, 63, 87
Observe that after the end of the second pass, the second largest
element is placed at the second highest index of the array. All the
other elements are still unsorted.
Pass 3:
Observe that after the end of the fourth pass, the fourth largest
element is placed at the fourth highest index of the array. All the
other elements are still unsorted.
Pass 5:
(a) Compare 29 and 27. Since 29 > 27, swapping is done. 27, 29,
19, 30, 52, 54, 63, 87
(b) Compare 29 and 19. Since 29 > 19, swapping is done. 27, 19,
29, 30, 52, 54, 63, 87
(c) Compare 29 and 30. Since 29 < 30, no swapping is done.
Observe that after the end of the fifth pass, the fifth largest element
is placed at the fifth highest index of the array. All the other
elements are still unsorted.
Pass 6:
(a) Compare 27 and 19. Since 27 > 19, swapping is done. 19, 27, 29,
30, 52, 54, 63, 87
Observe that after the end of the sixth pass, the sixth largest element is
placed at the sixth largest index of the array. All the other elements are
still unsorted.
Pass 7:
6 3 9 1 5 4 7 2
divide
6 3 9 1 5 4 7 2
divide divide
6 3 9 1 5 4 7 2
3 6 1 9 4 5 2 7
merge merge
1 3 6 9 merge
2 4 5 7
1 2 3 4 5 7 8 9
Mergesort – Example2
Mergesort – Analysis of Merge
A worst-case instance of the merge step in mergesort
Mergesort – Analysis of Merge (cont.)
0 k-1 0 k-1
Merging two sorted arrays of size k
...... ......
0 2k-1
......
• Best-case:
– All the elements in the first array are smaller (or larger) than all the
elements in the second array.
– The number of moves: 2k + 2k
– The number of key comparisons: k
• Worst-case:
– The number of moves: 2k + 2k
– The number of key comparisons: 2k-1
Mergesort - Analysis
Levels of recursive calls to mergesort, given an array of eight items
Mergesort - Analysis
2m level 0 : 1 merge (size 2m-1)
2m-1 2m-1 level 1 : 2 merges (size 2m-2)
m 1
= m*2m – 2i
i 0
= m*2m – 2m – 1
Using m = log n
= n * log2n – n – 1
O (n * log2n )
Mergesort – Analysis
• Mergesort is extremely efficient algorithm with respect
to time.
– Both worst case and average cases are O (n * log2n )
#include<conio.h>
#include<iostream.h>
void accept(int a[4][4],int size)
{
cout<<"Diagonal One:";
for (int i=0;i<size;i++)
for(int j=0;j<size;j++)
if (i != j && i != size-j-1)
cout<<a[i][j];
}
void main()
{
int a[4][4]={{5,4,3,4},{6,7,9,1},{8,0,3,7},{2,4,5,9}};
clrscr();
accept(a,4);
getch();
}
33. Write a user-defined function in C++ to find and display the sum of both the diagonal elements of a two
dimensional array MATRIX[6][6] containing integers.
Ans. float diagonalSum(float MATRIX[6][6], int r, int c)
{
int i,j;
float sum=0;
//We are calculating sum of diagonal elements considering both diagonals
//We are adding intersecting element on two diagonal twice
for(i=0;i<r;i++)
{
for(j=0;j<c;j++)
{
if(i==j) //elements on first diagonal
sum+= MATRIX [i][j];
if((i+j)==(r-1)) // elements on off-diagonal
sum+= MATRIX [i][j];
}
}
return sum;
}
34. What is the pre-condition for applying binary search algorithm?
Ans. For applying binary search algorithm the array, to be scanned, must be sorted in any order (ascending or
descending).
35. Write a user defined function in C++ to display the multiplication of row elements of two dimensional array
A[4][6] containing integers.
Ans. void RowMulti(int A[4][6])
{ int Mul[4];
for(int i=0;i<4;i++)
{ Mul[i]=1;
for(int j=0;j<6;j++)
Mul[i]*=A[i][j];
cout<<"Product of row"<<i+1<<"="<<Mul[i]<<endl;
}
}
36. Write a user defined function in C++ to display the sum of row elements of two dimensional array A[5][6]
containing integers.
Ans. void RowSum(int A[5][6])
{ int SUMC[5];
for(int i=0;i<5;i++)
{ SUMC[i]=0;
for(int j=0;j<6;j++)
SUMC[i]+=A[i][j];
cout<<"Sum of row"<<i+1<<"="<< SUMC[i]<<endl;
}
}
37. Write a user defined function in C++ to display the sum of column elements of two dimensional array R[7][7]
containing integers.
Ans. void COLSUM(int R[7][7])
{
int SUMC;
for (int j=0;j<7;j++)
{
SUMC=0;
for(int i=0;i<7;i++)
SUMC=SUMC + R[i][j];
Cout<< "Sum of Column "<<j<<" = "<<SUMC ;
}
}
38. Write a user defined function in C++ to display the sum of row elements of two dimensional array M[5][6]
containing integers.
Ans. Same as Q. No. 36
39. Consider the following key set: 42, 29, 74, 11, 65, 58, use insertion sort to sort the data in ascending order and
indicate the sequences of steps required.
Ans. Insertion sort:
Step-1 - ∞, 42, 29, 74, 11, 65, 58
Step-2 - ∞, 29, 42, 74, 11, 65, 58
Step-2 - ∞, 29, 42, 11, 74, 65, 58
Step-4 - ∞, 29, 42, 11, 65, 74, 58
Step-5 - ∞, 29, 42, 11, 58, 65, 74
Step-6 - ∞, 11, 29, 42, 58, 65, 74
40. Write a user-defined function in C++ to display those elements of a two dimensional array T[4][4] which are
divisible by 100. Assume the content of the array is already present and the function prototype is as follows:
void Showhundred(int T[4][4]);
Ans. void Showhundred(int T[4][4])
{
for(int I = 0; I<4; I++)
{
for(int J = 0; J<4; J++)
{
if (T[I][J]%100 = = 0)
cout<<"Elemets which are divisible by 100 are:”
<<A[I][J]<<endl;
}
}
}
41. Each element of two-dimensional array (with 5 rows and 4 columns) is stored in one memory location. If A(1,1)
is at location 2000, what is the address of A(4,4) ? The arrangement is row-major. Use a suitable formula for the
calculation.
Ans. A[5][4] => rows R=5, columns C=4
Let base address be B
Given element width W=1 bytes and A[1][1]=2000
In Row major,
A[I][J]=B+W(C(I=lr)+(j-lc))
where lr=lowest row and lc=lowest column
A[1][1]=B+W(C(1-0)+(1-0))
2000=B+1(4(1)+1)
2000=B+5
Base Address B=2000-5=1995
Using same formula
A[4][4]=1995+1(4(4-0)+(4-0))
=1995+20
=2015
42. Calculate the address of X[4,3] in a two-dimensional array X[1….5, 1…..4] stored in row=major order in the main
memory. Assuming base address to be 1000 and that each requires 4 words of storage.
Ans. X[4][3]=B+W(C(I-1)+(J-1))
=1000+4(4(4-1)+(3-1))
=1000+4(4(3)+(2))
=1000+56
=1056
Program:
#include<iostream.h>
int Bsearch(int [],int);
int main()
{ int A[]={3,4,7,11,18,29,45,71,87,89,93,96,99};
int index;
index=Bsearch(A,71);
if(index==-1)
cout<<"Element not found..";
else
cout<<"Element found at
index:"<<index<<"/Position:"<<index+1<<endl;
return 0;
}
int Bsearch(int A[],int item)
{ int beg,last,mid;
beg=0; last=13-1;
while(beg<=last)
{ mid=(beg+last)/2;
if(item==A[mid]) return mid;
else if (item>A[mid]) beg=mid+1;
else last=mid-1;
}
rerurn -1;
}
4. An array X[n] stores names only. The first position of the array does not store a name rather it stores the
number of available free spaces in the array. Write an algorithm to insert or delete an ITEM (accept it from the
users) in the given array.
Ans. Insert an ITEM:
1. ctr=0 /*Initialize the counter */
2. If LST=n then
{ print "Overflow:"
Exit from program
}
3. if X[ctr]>ITEM then
pos=1
else
{
4. Repeat steps 5 and 6 until ctr>=U
5. if X[ctr]<=ITEM and ITEM<=X[ctr+1] then
{ pos=ctr+1
break
}
6. ctr=ctr+1
7. ctr=n then
pos=n+1
} /* end of if step 3*/
/* shift the elemets to create space */
8. ctr=10 /*Initialize the counter */
9. while ctr>=pos perform steps 10 through 11
10. { X[ctr+1]=X[ctr]
11. ctr=ctr-1
}
12. X[pos]=ITEM /* Insert the elements */
13. END.
Delete an ITEM
1. ctr=0
2. If n=0
{ print "Underflow"
Exit from program
}
3. Repeat steps 4 and 5 until ctr<n
4. if(X[ctr]==ITEM) return ctr
return -1
5. if(pos!=-1)
X[pos]=0;
print "Zero (0) signifies the deleted element"
/*After this the free space will be put in the end of array */
6. ctr=pos
7. Repeat steps 6 and 7 until ctr>=5
8. X[ctr]=X[ctr+1]
9. ctr=ctr+1
/* End of Repeat*/
10.END
5. In array A[n], after deletion of ay element, no element was shifted, thus, the free space is scattered across the
array. You have been given the task to solve this problem. Write an algorithm to combine all the elements at
the rear end of the array so that all the free spaces are available at the beginning of the array.
Ans. 1.ctr=pos
2.Repeat steps 3 and 4 until ctr<=1
3. A[ctr]=A[ctr-1]
4. ctr=ctr-1
/* End of Repeat*/
5.Display the new list of element
6.End
6. Given the following array:
13, 7, 6, 21, 35, 2, 28, 64, 45, 3, 5, 1
Write an algorithm to sort the above array using exchange selection sort. Give the array after every iteration.
Convert this algorithm into C++ program.
Ans. Algorithm:
1. L=0, U=11
2. small=A[L] /* Initialize small with first array element */
3. For I=L TO U do
{
4. small=A[I],pos=I
/* Loop to find smallest element and its position */
5. For J=I TO U do
{
6. If A[J]<small then
7. { small=A[J]
8. pos=J
}
J=J+1
} /*end of inner loop*/
/* swap the smallest element with Ith element*/
9. temp=A[I]
10. A[I]=small
11. A[pos]=temp
} /*end of outer loop*/
12. END.
Array status after every iteration:
Note: element with red color is smallest element
(1) 13, 7, 6, 21, 35, 2, 28, 64, 45, 3, 5, 1
(2) 1, 7, 6, 21, 35, 2, 28, 64, 45, 3, 5, 13
(3) 1, 2, 6, 21, 35, 7, 28, 64, 45, 3, 5, 13
(4) 1, 2, 3, 21, 35, 7, 28, 64, 45, 6, 5, 13
(5) 1, 2, 3, 5, 35, 7, 28, 64, 45, 6, 21, 13
(6) 1, 2, 3, 5, 6, 7, 28, 64, 45, 35, 21, 13
(7) 1, 2, 3, 5, 6, 7, 13, 64, 45, 35, 21, 28
(8) 1, 2, 3, 5, 6, 7, 13, 21, 45, 35, 64, 28
(9) 1, 2, 3, 5, 6, 7, 13, 21, 28, 35, 64, 45
(10) 1, 2, 3, 5, 6, 7, 13, 21, 28, 35, 45, 64
Program:
#include<iostream.h>
void SelSort(int []);
int main()
{ int A[]={13,7,6,21,35,2,28,64,45,3,5,1};
SelSort(A);
cout<<"The sorted array is as following...";
for(i=0;i<12;i++)
cout<<A[i]<<" ";
cout<<endl;
return 0;
}
void SelSort(int A[])
{ int small,pos,tmp;
for(int i=0;i<12;i++)
{ small=A[i]'
pos=i;
for(int j=i+1;j<size;j++)
{ if(A[j]<small)
{ small=A[j]; pos=j; }
}
tmp=A[i];
A[i]=A[pos];
A[pos]=tmp;
cout<<"\n Array after pass-"<,i+1<<"-is:";
for(j=0;j<size;j++) cout<<A[j]<<" ";
}
}
7. For the same array mentioned above in question 6, write an algorithm to sort the above array using bubble
sort technique. Give the array-status after every iteration.
Ans. Algorithm:
1. L=0, U=11
2. For I=L TO U
3. { For J=L TO [(U-1)-I] //need not consider already settled heavy
elements//
// that is why (U-1)-I
4. { if A[J]>A[J+1] then
{ /* swap the values*/
5. temp=A[J]
6. A[J]=A[J+1]
7. A[J+1]=temp
} /*end of if*/
} /*end of inner loop*/
} /*end of outer loop*/
8. END.
Array status after every iteration:
Note: Element in red color depict that they are to be compared in the next pass.
(1) 13, 7, 6, 21, 35, 2, 28, 64, 45, 3, 5, 1
(2) 7, 13, 6, 21, 35, 2, 28, 64, 45, 3, 5, 1
(3) 7, 6, 13, 21, 35, 2, 28, 64, 45, 3, 5, 1
(4) 7, 6, 13, 21, 35, 2, 28, 64, 45, 3, 5, 1
(5) 7, 6, 13, 21, 35, 2, 28, 64, 45, 3, 5, 1
(6) 7, 6, 13, 21, 2, 35, 28, 64, 45, 3, 5, 1
(7) 7, 6, 13, 21, 2, 28, 35, 64, 45, 3, 5, 1
(8) 7, 6, 13, 21, 2, 28, 35, 64, 45, 3, 5, 1
(9) 7, 6, 13, 21, 2, 28, 35, 45, 64, 3, 5, 1
(10) 7, 6, 13, 21, 2, 28, 35, 45, 3, 64, 5, 1
(11) 7, 6, 13, 21, 2, 28, 35, 45, 3, 5, 65, 1
(12) 7, 6, 13, 21, 2, 28, 35, 45, 3, 5, 1, 65
//(13) 6, 7, 13, 21, 2, 28, 35, 45, 3, 5, 1, 65
//(14) 6, 7, 13, 21, 2, 28, 35, 45, 3, 5, 1, 65
(15) 6, 7, 13, 21, 2, 28, 35, 45, 3, 5, 1, 65
//(16) 6, 7, 13, 2, 21, 28, 35, 45, 3, 5, 1, 65
//(17) 6, 7, 13, 2, 21, 28, 35, 45, 3, 5, 1, 65
//(18) 6, 7, 13, 2, 21, 28, 35, 45, 3, 5, 1, 65
(19) 6, 7, 13, 2, 21, 28, 35, 45, 3, 5, 1, 65
(20) 6, 7, 13, 2, 21, 28, 35, 3, 45, 5, 1, 65
(21) 6, 7, 13, 2, 21, 28, 35, 3, 5, 45, 1, 65
//(22) 6, 7, 13, 2, 21, 28, 35, 3, 5, 1, 45, 65
//(24) 6, 7, 13, 2, 21, 28, 35, 3, 5, 1, 45, 65
//(25) 6, 7, 13, 2, 21, 28, 35, 3, 5, 1, 45, 65
(26) 6, 7, 13, 2, 21, 28, 35, 3, 5, 1, 45, 65
//(27) 6, 7, 2, 13, 21, 28, 35, 3, 5, 1, 45, 65
//(28) 6, 7, 2, 13, 21, 28, 35, 3, 5, 1, 45, 65
//(29) 6, 7, 2, 13, 21, 28, 35, 3, 5, 1, 45, 65
(30) 6, 7, 2, 13, 21, 28, 35, 3, 5, 1, 45, 65
(31) 6, 7, 2, 13, 21, 28, 3, 35, 5, 1, 45, 65
(32) 6, 7, 2, 13, 21, 28, 3, 5, 35, 1, 45, 65
//(33) 6, 7, 2, 13, 21, 28, 3, 5, 1, 35, 45, 65
//(34) 6, 7, 2, 13, 21, 28, 3, 5, 1, 35, 45, 65
//(35) 6, 7, 2, 13, 21, 28, 3, 5, 1, 35, 45, 65
(36) 6, 7, 2, 13, 21, 28, 3, 5, 1, 35, 45, 65
//(37) 6, 2, 7, 13, 21, 28, 3, 5, 1, 35, 45, 65
//(38) 6, 2, 7, 13, 21, 28, 3, 5, 1, 35, 45, 65
//(39) 6, 2, 7, 13, 21, 28, 3, 5, 1, 35, 45, 65
(40) 6, 2, 7, 13, 21, 28, 3, 5, 1, 35, 45, 65
(41) 6, 2, 7, 13, 21, 3, 28, 5, 1, 35, 45, 65
(42) 6, 2, 7, 13, 21, 3, 5, 28, 1, 35, 45, 65
//(43) 6, 2, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
//(44) 6, 2, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
//(45) 6, 2, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
(46) 6, 2, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
//(47) 2, 6, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
//(48) 2, 6, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
//(49) 2, 6, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
(50) 2, 6, 7, 13, 21, 3, 5, 1, 28, 35, 45, 65
(51) 2, 6, 7, 13, 3, 21, 5, 1, 28, 35, 45, 65
(52) 2, 6, 7, 13, 3, 5, 21, 1, 28, 35, 45, 65
//(53) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
//(54) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
//(55) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
//(56) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
//(57) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
//(58) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
//(59) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
(60) 2, 6, 7, 13, 3, 5, 1, 21, 28, 35, 45, 65
(61) 2, 6, 7, 3, 13, 5, 1, 21, 28, 35, 45, 65
(62) 2, 6, 7, 3, 5, 13, 1, 21, 28, 35, 45, 65
//(63) 2, 6, 7, 3, 5, 1, 13, 21, 28, 35, 45, 65
//(64) 2, 6, 7, 3, 5, 1, 13, 21, 28, 35, 45, 65
//(65) 2, 6, 7, 3, 5, 1, 13, 21, 28, 35, 45, 65
//(66) 2, 6, 7, 3, 5, 1, 13, 21, 28, 35, 45, 65
//(67) 2, 6, 7, 3, 5, 1, 13, 21, 28, 35, 45, 65
//(68) 2, 6, 7, 3, 5, 1, 13, 21, 28, 35, 45, 65
(69) 2, 6, 7, 3, 5, 1, 13, 21, 28, 35, 45, 65
(70) 2, 6, 3, 7, 5, 1, 13, 21, 28, 35, 45, 65
(71) 2, 6, 3, 5, 7, 1, 13, 21, 28, 35, 45, 65
//(72) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
//(73) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
//(74) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
//(75) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
//(76) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
//(77) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
//(78) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
(79) 2, 6, 3, 5, 1, 7, 13, 21, 28, 35, 45, 65
(80) 2, 3, 6, 5, 1, 7, 13, 21, 28, 35, 45, 65
(81) 2, 3, 5, 6, 1, 7, 13, 21, 28, 35, 45, 65
//(82) 2, 3, 5, 1, 6, 7, 13, 21, 28, 35, 45, 65
//(83) 2, 3, 5, 1, 6, 7, 13, 21, 28, 35, 45, 65
//(84) 2, 3, 5, 1, 6, 7, 13, 21, 28, 35, 45, 65
(85) 2, 3, 5, 1, 6, 7, 13, 21, 28, 35, 45, 65
(86) 2, 3, 1, 5, 6, 7, 13, 21, 28, 35, 45, 65
(87) 2, 1, 3, 5, 6, 7, 13, 21, 28, 35, 45, 65
(88) 1, 2, 3, 5, 6, 7, 13, 21, 28, 35, 45, 65
8. Using a two-dimensional array A[n x n], write an algorithm to prepare a one-dimensional array B[n2] that will
have all the elements of A as if they are stored in column-major form.
Ans. Can You do this try it.
9. Suppose A, B, C are arrays of integers of sizes m, n, m+n respectively. The numbers in arrays A and B appear in
descending order. Give an algorithm to produce a third array C, containing all the data of array A and B in
ascending order.
Ans. Assuming that L=0 and U=m-1,n-1 and (m+n)-1 respectively for A, B, and C
1. ctrA=m-1; ctrB=n-1; ctrC=0;
2. while ctrA>=0 and ctrB>=0 perform steps 3 through 10
3. { If A[ctrA]<=B[ctrB] then
4. { C[ctrC]=A[ctrA]
5. ctrC=ctrC+1
6. ctrA=ctrA-1 }
7. else
8. { C[ctrC]=B[ctrB]
9. ctrC=ctrC+1
10. ctrB=ctrB-1 }
}
11. if ctrA<0 then
12. { while ctrB>=0 perform steps 13 through 15
{
13. C[ctrC]=B[ctrB]
14. ctrC=ctrC+1
15. ctrB=ctrB-1
}
}
16. if ctrB<0 then
17. { while ctrA>=0 perform steps 18 through 20
18. { C[ctrC]=A[ctrA]
19. ctrC=ctrC+1
20. ctrA=ctrA-1
}
}
10. From a two-dimensional array A[4 x 4], write an algorithm to prepare a one dimensional array B[16] that will
have all the elements of A as if they are stored in row-major form. For example for the following array:
#include (conio.h)
void main( )
{
int A[4][4], B[16];
// Input elements
for(int i = 0; i < 4 ; i++)
for( int j = 0; j < 4 ; j++)
{
cout<<"\n Enter elements for "<< i+1 << "," << j+1 << "location :";
cin >> A[i][j];
}
clrscr();
//Print the array
cout<<"\n The Original matrix : \n\n";
for( i = 0; i < 4 ; i++)
{
for( j = 0; j < 4 ; j++)
cout<< A[i][j]<<"\t";
cout<< "\n";
}
int k = 0;
// Convert 2 - D array into 1-D array by row-major rule
for( i = 0; i < 4 ; i++)
for( j = 0; j < 4 ; j++)
B[k] = A[i][j];
getch( );
}
11. Suppose a one dimensional array AR containing integers is arranged in ascending order. Write a user defined
function in C++ to search for one integer from AR with the help of linear search method, returning an integer 0
to show absence of the number and integer 1 to show the presence of the number in the array. The function
should have three parameters: (1) an array AR (2) the number to be searched and (3) the number of elements
N in the array.
Ans. int Lsearch(int AR[10],int DATA,int N)
{ for(int i=0;i<n;i++)
{ if(AR[i]==DATA) return i; //return index of item in case of
successful search
}
return -1; //the control will reach here only when item is not found
}
12. Suppose a one dimensional array ARR containing integers is arranged in ascending order. Write a user defined
function in C++ to search for one integer from ARR with the help of binary search method, returning an integer
0 to show absence of the number and integer 1 to show the presence of the number in the array. The function
should have three parameters: (1) an array ARR (2) the number DATA to be searched and (3) the number of
elements N.
Ans. int bsearch(int ARR[10],int DATA,int N)
{ int beg=0,last=N-1,mid;
while(beg<=last)
{ mid=(beg+last)/2;
if(ARR[mid]==DATA) return 1; //element is present in array
else if(DATA>ARR[mid]) beg=mid+1;
else last=mid-1;
}
return 0; //element is absent in array
}
13. Suppose A, B, C are arrays of integers of size M, N and M+N respectively. The numbers in array A appear in
ascending order while the numbers in array B appear in descending order. Write a user defined function in C++
to produce third array C by merging arrays A ad B in Ascending order. Use A, B, and C as arguments in the
function.
Ans. #include<iostream.h>
void Merge(int A[],int M,int B[],int N,int C[]);
int mai()
{ int A[50],B[50],C[50],MN=0,M,N;
cout<<"How many elements do U want to create first array with? ";
cin>>M;
cout<<"Enter First Array's elements [ascending]...";
for(int i=0;i<M;i++)
cin>>A[i];
cout<<"How many elements do U want to create second array with? ";
cin>>N;
MN=M+N;
cout<<"Enter Second Array's elements [descending]...";
for(int i=0;i<N;i++)
cin>>B[i];
Merge(A,M,B,N,C);
cout<<"The merged array is....";
for(i=0;i<MN;i++)
cout<<C[i]<<" ";
cout<<endl;
return 0;
}
void Merge(int A[],int M,int B[],int N,int C[])
{ int a,b,c;
for(a=0,b=-1,c=0;a<M&&b>=0;)
{
if(A[a]<=B[b]) C[c++]=A[a++];
else C[c++]=B[b--];
}
if(a<M)
{ while(a<M)
C[c++]=A[a++];
}
else
{ while(b>=0)
C[c++]=B[b--];
}
}
14. Suppose X, Y, Z are arrays of integers of size M, N and M+N respectively. The numbers in array X and Y appear
in descending order. Write a user defined function in C++ to produce third array Z by merging arrays X and Y in
descending order.
Ans. #include<iostream.h>
void Merge(int X[],int M,int Y[],int N,int Z[]);
int main()
{ int X[50],Y[50],Z[50],MN=0,M,N;
cout<<"How many elements do U want to create first array with? ";
cin>>M;
cout<<"Enter First Array's elements [descending]...";
for(int i=0;i<M;i++)
cin>>X[i];
cout<<"How many elements do U want to create second array with? ";
cin>>N;
MN=M+N;
cout<<"Enter Second Array's elements [descending]...";
for(int i=0;i<N;i++)
cin>>Y[i];
Merge(X,M,Y,N,Z);
cout<<"The merged array is....";
for(i=0;i<MN;i++)
cout<<Y[i]<<" ";
cout<<endl;
return 0;
}
void Merge(int X[],int M,int Y[],int N,int Z[])
{ int x,y,z;
for(x=-1,y=-1,z=-1;x>=0&&y>=0;)
{
if(X[x]<=Y[y]) Z[z--]=X[x--];
else Z[z--]=Y[y--];
}
if(x<0)
{ while(x>=0)
Z[z--]=X[x--];
}
else
{ while(y>=0)
Z[z--]=Y[y--];
}
}
15. Given two arrays of integers X and Y of sizes m and n respectively. Write a function named MERGE() which will
produce a third array named Z, such that the following sequence is followed:
(i) All odd numbers of X from left to right are copied into Z from left to right
(ii) All even numbers of X from left to right are copied into Z from right to left
(iii) All odd numbers of Y from left to right are copied into Z from left to right
(iv) All even numbers of Y from left to right are copied into Z from right to left
X, Y and Z are passed as argument to MERGE().
e.g., X is {3, 2, 1, 7, 6, 3} and Y is {9, 3, 5, 6, 2, 8, 10}
the resultant array Z is {3, 1, 7, 3, 9, 3, 5, 10, 8, 2, 6, 6, 2}
Ans. void MERGE(int X[],int Y[],int n,int m)
{ int Z[20],i=0,j=0,k=0,l=m+n-1;
while(i<n&&k<20)
{ if(X[i]%2!=0)
{ Z[k]=X[i];
k++;
i++;
}
else
{ Z[l]=X[i];
l--;
i++;
}
}
while(j<m&&k<20)
{ if(Y[j]%2!=0)
{ Z[k]=Y[j];
k++;
j++;
}
else
{ Z[l]=Y[j];
l--;
j++;
}
}
cout<<"The elements of an array C is:";
for(i=0;i<n+m;i++)
cout<<"\n"<<Z[i];
}
16. Assume an array E containing elements of structure Employee is required to be arranged in descending order
of Salary. Write a C++ function to arrange the same with the help of bubble sort, the array and its size is
required to be passed as parameters to the function. Definition of structure Employee is as follows:
struct Employee
{
int Eno;
char Name[25];
float Salary;
};
Ans. void Sort_Sal (Employee E[ ], int N)
{
Employee Temp;
for (int I=0; I<N-1;I++)
for (int J=0;J<N-I-1;J++)
if (E[J].Salary <E[J+1]. Salary)
{
Temp = E[J];
E[J] = E[J+1];
E[J+1] = Temp;
}
}
17. Write a DSUM() function in C++ to find sum of Diagonal Elements from N x M Matrix.
(Assuming that the N is a odd numbers)
Ans. int DSUM(int A[],int N)
{ int i,dsum1=0,dsum2=0;
for(i=0;i<N;i++)
{ dsum1+=A[i][i];
dsum2+=A[N-(i+1)][i];
}
return(dsum1+dsum2-A[N/2][N/2]);
//because middle element is added twice
}
18. Given two arrays of integers A and B of sizes M and N respectively. Write a function named MIX() which will
produce a third array named C, such that the following sequence is followed:
(i) All even numbers of A from left to right are copied into C from left to right
(ii) All odd numbers of A from left to right are copied into C from right to left
(iii) All even numbers of B from left to right are copied into C from left to right
(iv) All odd numbers of B from left to right are copied into C from right to left
X, Y and Z are passed as argument to MERGE().
e.g., A is {3, 2, 1, 7, 6, 3} and B is {9, 3, 5, 6, 2, 8, 10}
the resultant array C is {2, 6, 6, 2, 8, 10, 5, 3, 9, 3, 7, 1, 3}
Ans. void MIX(int A[],int B[],int n,int m)
{ int C[20],i=0,j=0,k=0,l;
l=m+n-1;
while(i<n&&k<20)
{ if(A[i]%2==0)
{ C[k]=A[i];
k++;
i++;
}
else
{ C[l]=A[i];
l--;
i++;
}
}
while(j<m&&k<20)
{ if(B[j]%2==0)
{ C[k]=B[j];
k++;
j++;
}
else
{ C[l]=B[j];
l--;
j++;
}
}
cout<<"The elements of an array C is:";
for(i=0;i<n+m;i++)
cout<<"\n"<<C[i];
}
19. Suppose an array P containing float is arranged in ascending order. Write a user defined function in C++ to
search for one float from P with the help of binary search method. The function should return an integer 0 to
show absence of the number and integer 1 to show the presence of the number in the array. The function
should have three parameters: (1) an array P (2) the number DATA to be searched and (3) the number of
elements N.
Ans. int bsearch(float P[10],int DATA,int N)
{ int beg=0,last=N-1,mid;
while(beg<=last)
{ mid=(beg+last)/2;
if(P[mid]==DATA) return 1; //element is present in array
else if(DATA>P[mid]) beg=mid+1;
else last=mid-1;
}
return 0; //element is absent in array
}
20. Write a function in C++, which accepts an integer array and its size as arguments and swap the elements of
every even location with its following odd location.
Example: if an array of nine elements initially contains the elements as 2, 4, 1, 6, 5, 7, 9, 23, 10
then the function should rearrange the array as 4, 2, 6, 1, 7, 5, 23, 9, 10
Ans. void ElementSwap(int A[],int size)
{ int lim,tmp;
if(size%2!=0) //if array has odd no. of element
lim=size-1;
else
lim=size;
for(int i=0;i<lim;i+=2)
{ tmp=A[i];
A[i]=A[i+1];
A[i+1]=tmp;
}
}
21. Write a function in C++, which accepts an integer array and its size as arguments and replaces elements having
odd values with thrice its value and elements having even values with twice its value.
Example: if an array of nine elements initially contains the elements as 3, 4, 5, 16, 9
then the function should rearrange the array as 9, 8, 15, 32, 27
Ans. void RearrangeArray(int A[],int size)
{
for(int i=0;i<size;i++)
{ if(A[i]%2==0)
A[i]*=2;
else
A[i]*=3;
}
}
22. Write a function in C++ to print the product of each column of a two dimensional integer array passed as the
argument of the function.
Explain: if the two dimensional array contains
1 2 4
3 5 6
4 3 2
2 1 5
Then the output should appear as:
Product of Column 1 = 24
Product of Column 2 = 30
Product of Column 3 = 240
Ans. void ColProd(int A[4][3],int r,int c)
{ int Prod[C],i,j;
for(j=0;j<c;j++)
{ Prod[j]=1;
for(i=0;i<r;i++)
Prod[j]*=A[i][j];
cout<<"Product of Column" <<j+1<<"="<<Prod[j]<<endl;
}
}
23. Write a function in C++ which accepts a 2D array of integers and its size as arguments and display the elements
which lie on diagonals.
[Assuming the 2D Array to be a square matrix with odd dimension i.e., 3 x 3, 5 x 5, 7 x 7 etc….]
Example, if the array content is
5 4 3
6 7 8
1 2 9
Output through the function should be:
Diagonal One: 5 7 9
Diagonal Two: 3 7 1
Ans. const int n=5;
void Diagonals(int A[n][n], int size)
{
int i,j;
cout<<"Diagonal One:";
for(i=0;i<n;i++)
cout<<A[i]ij]<<" ";
cout<<"\n Diagonal Two:"
for(i=0;i<n;i++)
cout<<A[i][n-(i+1)]<<" ";
}
24. Write a function in C++ which accepts a 2D array of integers and its size as arguments and display the elements
of middle row and the elements of middle column.
[Assuming the 2D Array to be a square matrix with odd dimension i.e., 3 x 3, 5 x 5, 7 x 7 etc….]
Example, if the array content is
3 5 4
7 6 9
2 1 8
Output through the function should be:
Middle Row: 7 6 9
Middle Column: 5 6 1
Ans. const int S=7; // or it may be 3 or 5
int DispMRowMCol(int Arr[S][S],int S)
{ int mid=S/2;
int i;
//Extracting middle row
cout<<"\n Middle Row:";
for(i=0;i<S;i++)
cout<<Arr[mid][i]<<" ";
//Extracting middle column
cout<<"\n Middle Column:";
for(i=0;i<S;i++)
cout<<Arr[i][mid]<<" ";
}
25. Write a function in C++ which accepts a 2D array of integers and its size as arguments and swaps the elements
of every even location with its following odd location.
Example: if an array of nine elements initially contains the elements as 2, 4, 1, 6, 5, 7, 9, 23, 10
then the function should rearrange the array as
4, 2, 6, 1, 7, 5, 23, 9, 10
Ans. Same as Q-20 of Long Answer Question.
26. Write a function in C++ to print the product of each row of a two dimensional integer array passed as the
argument of the function.
Explain: if the two dimensional array contains
20 40 10
40 50 30
60 30 20
40 20 30
Then the output should appear as:
Product of Diagonal 1 = (1 x 5 x 2 x 4)=40
Product of Diagonal 2 = (3 x 6 x 3 x 2)=108
Ans. void RowProduct(int A[4][3],int R,int C)
{ int Prod[R];
for(int i=0;i<R;i++)
{ Prod[i]=1;
for(int j=0;j<c;j++)
Prod[i]*=A[i][j];
cout<<"Product of row"<<i+1<<"="<<Prod[i]<<endl;
}
}
27. Write a function REASSIGN() in C++, which accepts an array of integer and its size as parameters and divide all
those array elements by 5 which are divisible by 5 and multiply other array element by 2.
Sample Input Data of the array
A[0] A[1] A[2] A[3] A[4]
20 12 15 60 32
Content of the array after calling REASSIGN() function
A[0] A[1] A[2] A[3] A[4]
4 24 3 12 64
Ans. void REASSIGN (int Arr[ ], int Size)
{
for (int i=0;i<Size;i++)
if (Arr[i]%5==0)
Arr[i]/=5;
else
Arr[i]*=2;
}
28. Write a function SORTSCORE() in C++ to sort an array of structure Examinee in descending order of Score using
Bubble Sort.
Note. Assume the following definition of structure Examinee
struct Examinee
{ long RollNo;
char Name[20];
float Score;
};
Sample Content of the array (before sorting)
RollNo Name Score
1001 Ravyank Kapur 300
1005 Farida Khan 289
1002 Anika Jain 345
1003 George Peter 297
Sample Content of the array (after sorting)
RollNo Name Score
1002 Anika Jain 345
1001 Ravyank Kapur 300
1003 George Peter 297
1005 Farida Khan 289
Ans. void SORTSCORE(Examinee E[ ], int N)
{
Examinee Temp;
for (int I=0; I<N-1;I++)
for (int J=0;J<N-I-1;J++)
if (E[J].Score <E[J+1]. Score)
{
Temp = E[J];
E[J] = E[J+1];
E[J+1] = Temp;
}
}
29. Write a function SORTPOINTS() in C++ to sort an array of structure Game in descending order of Points using
Bubble Sort.
Note. Assume the following definition of structure Game
struct Game
{ long PNo; //Player Number
char PName[20];
float Points;
};
Sample Content of the array (before sorting)
PNo PName Points
103 Ritika Kapur 3001
104 John Philip 2819
101 Razia Abbas 3451
105 Tarun Kumar 2971
Sample Content of the array (after sorting)
RollNo Name Score
101 Razia Abbas 3451
103 Ritika Kapur 3001
105 Tarun Kumar 2971
104 John Philip 2819
Ans. void SORTPOINTS(Game G[ ], int N)
{
Game Temp;
for (int I=0; I<N-1;I++)
for (int J=0;J<N-I-1;J++)
if (G[J].Points <G[J+1].Points)
{
Temp = G[J];
G[J] = G[J+1];
G[J+1] = Temp;
}
}
30. Define a function SWAPCOL() in C++ to swap (interchange) the first column elements with the last column
elements, for a two dimensional integer array passed as the argument of the function.
Example: If the two dimensional array contents
2 1 4 9
1 3 7 7
5 8 6 3
7 2 1 2
After swapping of the content of 1st column and last column, it should be:
9 1 4 2
7 3 7 1
3 8 6 5
2 2 1 7
Ans. void SWAPCOL(int A[ ][100], int M, int N)
{
int Temp, I;
for (I=0;I<M;I++)
{
Temp = A[I][0];
A[I][0] = A[I][N-1];
A[I][N-1] = Temp;
}
}
31. Define a function SWAPARR() in C++ to swap (interchange) the first row elements with the last row elements,
for a two dimensional integer array passed as the argument of the function.
Example: If the two dimensional array contents
5 6 3 2
1 2 4 9
2 5 8 1
9 7 5 8
After swapping of the content of 1st column and last column, it should be:
9 7 5 8
1 2 4 9
2 5 8 1
5 6 3 2
Ans. void SWAPARR (int A[100][], int M, int N)
{
int Temp, I;
for (I=0;I<M;I++)
{
Temp = A[0][I];
A[0][I] = A[N-1][I];
A[N-1][I] = Temp;
}
}