일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 구글클라우드서밋
- 클라우드 자격증
- 머신러닝
- 마이크로서비스
- 딥러닝
- 구글클라우드플랫폼
- docker
- 구글
- Associate
- 도커
- 쿠버네티스
- AWS #빅데이터 #분석 #데이터
- 자격증
- 클라우드
- aws
- cdk
- DataFlow
- 구글 클라우드
- cloud
- 코세라
- GCP
- coursera
- nnictl
- Kubernest
- go
- 구글클라우드
- Dataproc
- 네트워크
- golang
- Today
- Total
JD의 블로그
5. Matrices[1] - Diagonal Matrix 본문
1. Diagnonal Matrix
Most of the numbers are zeros and only the elements in their diagonal are non zeros
M[i, j] = 0 if i!=j
we want to store only non-zero elements
A[5] = {3, 7 , 4 , 9, 6} [5x5] diagonal matrix
M[i, j]
if(i==j)
a[i-1];
void set(int A[], int i, int j, int x) x is the element that i want to store
{
if(i==j)
A[i-1] = x;
}
int get(int A[], int i, int j)
{
if(i==j) return A[i-1];
else return 0;
}
#include
struct Matrix{
int A[10];
int n;
};
void Set(struct Matrix *m, int i, int j, int x)
{
if(i==j)
m->A[i-1]=x;
}
int Get(struct Matrix m, int i, int j)
{
if(i==j)
return m.A[i-1];
else
return 0;
}
void Display(struct Matrix m)
{
int i, j;
for(i=0;i<m.n;i++)
{
for(j=0;j<m.n;j++)
{
if(i==j)
printf("%d ",m.A[i]);
else
printf("0 ");
}
printf("\n");
}
}
int main()
{
struct Matrix m;
m.n = 4;
Set(&m,1,1,5);Set(&m,2,2,8);Set(&m,3,3,12);Set(&m,4,4,15);
printf("%d\n",Get(m,2,2));
Display(m);
}
'-프로그래밍 언어 > 알고리즘&자료구조' 카테고리의 다른 글
4. Time and Space complexity (0) | 2019.09.18 |
---|---|
3. ADT(Abstract Data Type) (0) | 2019.09.18 |
2. Physical data structure & Logical data structure (0) | 2019.09.18 |
1. Stack vs Heap (0) | 2019.09.18 |
[Algorithm & Data structure] Introduction (0) | 2019.09.16 |