Redirected
in DS
5,537 views
13 votes
13 votes
Consider a 2 dimensional array A[40...95,40...95] in lower triangular matrix representation. The size of each element of array is 1 Byte.If array is implemented in memory as Row major,with base address as 1000,the address of A[66][50] is .....

Ans. 1361
in DS
by
5.5k views

3 Comments

Please explain general methodology for solving it :)
0
0
please represent using pen and paper that how it is represented in matrix ...im not able to visualize it.
0
0
1361 ??
0
0

8 Answers

19 votes
19 votes
Best answer

In general for RMO we calculate like :

Let A[LR.....UR][Lc.....Uc]  be a 2D array

Address of A[i][j]= Base + Size of each element { (no. of rows fully covered before reaching row i x no. of columns in each row) + no. of elements covered in the current row i}

no. of rows fully covered = (i-LR)

no. of columns in each row= (Uc-Lc+1)

But here the case is a bit different. The elements are arranged in lower triangular matrix form like this:

The rows are not fully covered.

The 1st row has 1 element.

The 2nd row has 2 elements. The 3rd has 3 elements and so on.

So kth row will have k elements.

No. of elements covered upto k rows is 1+2+3....k = k(k+1)/2.

We need to find address of A[i][j]. To reach this row no. i we have to cover previous (i-LR) rows.

So, no. of elements covered in (i-LR) rows is ((i-LR)* (i-LR+1))/2 rows
Now we are at row no. i.

No. of elements covered in this row no. i is (j-Lc)  elements.

Address of A[i][j]= Base + size( ((i-LR)* (i-LR+1))/2  + (j-Lc))

Address of A[66][50] = 1000 + 1 ( (66-40)*(66-40+1)/2 + (50-40) ) = 1000 + (26*27/2 + 10 ) = 1000 + (351+10) =1361

------------------------------------------------------------------------------------------------------

We need to find address of A[66][50]. To reach this row no. 66 we have to cover (66-40)= 26 rows.

So, no. of elements covered in 26 rows = 26*(26+1)/2 = 351

Now we are at row no. 66.

No. of elements covered in this row is (50-40) = 10.

Address of A[66][50] = 1000 + (351+10) =1361

selected by

4 Comments

@2019_Aspirant

How many rows are there before A[41]? 41-40=1 row isn't it? Similarly, there are (i-40) rows before A[i].

0
0

@MiNiPanda Okay, thanks. sorry to disturb you on the trivial thing. seems I was outta my mind. 

0
0
Its okay :)
0
0
1 vote
1 vote

A[40 ..... 95, 40 ..... 95] 

A[66] [50]

Total elements in rows = 95-40+1 = 56

total no of elements in columns = 95-40+1 = 56

base address = 1000   element size = 1

lower triangular matrix

hence address of A[66][50]

1000 + ((66-40) (66-40+1)/2 + (50-40)) * 1

= 1000 +  361 = 1361

formula =     BA + ((i-lb1) (i-lb1 +1) /2 + (j-lb2)) * c (c is element size)

lb1 = lower bound of row    lb2 = lower bound of column

edited by

2 Comments

1000 + ((66-40) (66-40+1)/2 + (50-40)) * 1

why you divided this by 2? @Deepak Raj 1

0
0
That's The Formula... In a overlook i didn't observe now I edited
0
0
1 vote
1 vote
$a[40....95][40....95]$

$BA=1000$

$Size\ of\ element=1\ B$

$Loc[66][50]$

$\\ =1000+\left \{\underbrace {66-40=26}+(50-40) \right \}\times 1B$

                    $Natural\ \#\ sum\\ of\ 26\ rows$

$=1000+\left \{ \dfrac{26\times 27}{2}\ +\ 10 \right \}\times 1B$

$=1000+\left \{ 351+10 \right \}\times 1B$

$=1361B$
1 vote
1 vote
$a[40...95,40...95]=a[56][56]$

$loc[66][50]:RMO$

$40^{th}\ row=1$

$41^{st}\ row=2$

$42^{nd}\ row=3$

.

.

.

$66^{th}\ row=26$

$Sum=1+2+3....+26=351$

Now you are standing on $66^{th}$ row and it's first element will start from $40^{th}$ column but you need to go to $50^{th}$ column, hence add $11(40,41,42....50)$

$351+11=362$

$362+1000=1362$

But index starts from $0,$ so subtract $1$

$1362-1=1361$

Related questions

1 vote
1 vote
2 answers
2