-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest1.c
115 lines (89 loc) · 1.53 KB
/
test1.c
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include<stdio.h>
#include<stdlib.h>
typedef struct node1{
int info;
struct node1 *link;
}Node;
typedef struct node2{
struct node2 *left;
Node *right;
}Head;
Node *createnode1(Node *nw);
Head *createnode2(Head *nw);
Head *Creatematrix(Head *Table,int r,int c);
int main()
{
int r,c;
Head *Table=NULL;
printf("enter the number of rows and columns\n");
scanf("%d%d",&r,&c);
Table = Creatematrix(Table,r,c);
}
Node *createnode1(Node *nw)
{
nw = (Node *)malloc(sizeof(Node));
nw->link = NULL;
return nw;
}
Head *createnode2(Head *nw)
{
nw = (Head *)malloc(sizeof(Head));
nw->right = NULL;
nw->left = NULL;
return nw;
}
Head *Creatematrix(Head *Table,int r,int c)
{
Head *temp;
Node *f1;
Node *nw1;
Head *nw2;
int i,j;
temp = Table;
//creation of header nodes
for(i = 0;i<r;i++)
{
nw2 = createnode2(nw2);
if(temp == NULL)
temp = Table = nw2 ;
else
{
while(temp->left!=NULL)
temp = temp->left;
temp->left = nw2;
}
}
temp = Table;
//creating matrix
for(i=0;i<r;i++)
{
for(j=0;j<c;j++)
{
nw1 = createnode1(nw1);
printf("Enter the %d %d element\n",i,j);
scanf("%d",&nw1->info);
if(temp->right == NULL)
temp->right = f1 = nw1;
else
{
f1->link = nw1;
f1 = f1->link;
}
}
temp = temp->left;
}
printf("Displaying\n");
temp = Table;
for(i=0;i<r;i++)
{
f1 = temp->right;
for(j=0;j<c;j++)
{
printf("%2d ",f1->info);
f1 = f1->link;
}
temp = temp->left;
printf("\n");
}
return Table;
}