摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct{ 4 int coef; 5 int exp; 6 }PolyTerm; 7 typedef struct Node{ 8 PolyTerm data; 9 Node*pre,*nex
阅读全文
posted @ 2021-11-18 21:32
JT3895
阅读(54)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<math.h> 3 #include<stdlib.h> 4 typedef struct{ 5 int coef; 6 int exp; 7 }PolyTerm; 8 typedef struct{ 9 PolyTerm *elemen
阅读全文
posted @ 2021-11-18 21:31
JT3895
阅读(44)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<math.h> 3 #include<stdlib.h> 4 typedef struct{ 5 int ceof; 6 int exp; 7 }PolyTerm; 8 typedef struct{ 9 PolyTerm *elemen
阅读全文
posted @ 2021-11-18 21:30
JT3895
阅读(85)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<math.h> 3 #include<stdlib.h> 4 typedef struct{ 5 int coef; 6 int exp; 7 }PolyTerm; 8 typedef struct{ 9 PolyTerm *elemen
阅读全文
posted @ 2021-11-18 21:29
JT3895
阅读(66)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next,*pre; 6 int freq; 7 }Node,*LinkList; 8 Create(LinkList*L) 9 {
阅读全文
posted @ 2021-11-18 21:27
JT3895
阅读(40)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*pre,*next; 6 }Node,*LinkList; 7 CreateLinkList(LinkList*L) 8 { 9 *L
阅读全文
posted @ 2021-11-18 21:24
JT3895
阅读(50)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 char data; 5 Node*next; 6 }Node,*LinkList; 7 Create(LinkList*L) 8 { 9 Node*t,*r; 10
阅读全文
posted @ 2021-11-18 21:21
JT3895
阅读(344)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next,*pre; 6 }Node,*LinkList; 7 CreateLinkList(LinkList*L) 8 { 9 in
阅读全文
posted @ 2021-11-18 21:17
JT3895
阅读(119)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 CreateLinkList(LinkList*L) 8 { 9 int e,l
阅读全文
posted @ 2021-11-18 21:15
JT3895
阅读(78)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 21:14
JT3895
阅读(28)
推荐(0)
摘要:
1 #include<stdio.h> 2 typedef struct{ 3 int element[50]; 4 int length; 5 }SeqList; 6 CreateSeqList(SeqList*S) 7 { 8 scanf("%d",&S->length); 9 for(int
阅读全文
posted @ 2021-11-18 20:51
JT3895
阅读(102)
推荐(0)
摘要:
1 #include<stdio.h> 2 typedef struct{ 3 int element[50]; 4 int length; 5 }SeqList; 6 CreateSeqList(SeqList*S) 7 { 8 scanf("%d",&S->length); 9 for(int
阅读全文
posted @ 2021-11-18 20:44
JT3895
阅读(46)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 20:43
JT3895
阅读(42)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 20:34
JT3895
阅读(28)
推荐(0)
摘要:
1 #include<stdio.h> 2 typedef struct 3 { 4 int element[50]; 5 int length; 6 }SeqList; 7 CreateSeqList(SeqList*S) 8 { 9 scanf("%d",&S->length); 10 for(
阅读全文
posted @ 2021-11-18 20:27
JT3895
阅读(39)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 19:57
JT3895
阅读(70)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 19:55
JT3895
阅读(113)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 19:44
JT3895
阅读(110)
推荐(0)
摘要:
1 #include<stdio.h> 2 typedef struct{ 3 int element[50]; 4 int length; 5 }SeqList; 6 CreateSeqList(SeqList*S) 7 { 8 scanf("%d",&S->length); 9 for(int
阅读全文
posted @ 2021-11-18 19:38
JT3895
阅读(48)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 19:37
JT3895
阅读(24)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 19:29
JT3895
阅读(42)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 19:17
JT3895
阅读(37)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 InitLinkList(LinkList*L) 8 { 9 *L=(LinkL
阅读全文
posted @ 2021-11-18 19:16
JT3895
阅读(59)
推荐(0)
摘要:
#include<stdio.h> #include<stdlib.h> typedef struct Node{ int data; Node*next; }Node,*LinkList; IniteLinkList(LinkList*L) { *L=(LinkList)malloc(sizeof
阅读全文
posted @ 2021-11-18 19:13
JT3895
阅读(41)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 IniteLinkList(LinkList*L) 8 { 9 *L=(Link
阅读全文
posted @ 2021-11-18 19:08
JT3895
阅读(20)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 char data; 5 Node*next; 6 }Node,*LinkList; 7 IniteLinkList(LinkList*L) 8 { 9 *L=(Lin
阅读全文
posted @ 2021-11-18 19:05
JT3895
阅读(60)
推荐(0)
摘要:
1 #include<stdio.h> 2 typedef struct{ 3 int element[50]; 4 int length; 5 }SeqList; 6 void CreateSeqList(SeqList*S) 7 { 8 scanf("%d",&S->length); 9 for
阅读全文
posted @ 2021-11-18 19:02
JT3895
阅读(57)
推荐(0)
摘要:
#include<stdio.h> typedef struct{ int element[50]; int length; }SeqList; CreateSeqList(SeqList*S) { scanf("%d",&S->length); for(int i=0;i<S->length;i+
阅读全文
posted @ 2021-11-18 18:59
JT3895
阅读(20)
推荐(0)
摘要:
#include<stdio.h> typedef struct{ int element[50]; int length; }SeqList; CreateSeqList(SeqList*S) { scanf("%d",&S->length); for(int i=0;i<S->length;i+
阅读全文
posted @ 2021-11-18 18:45
JT3895
阅读(74)
推荐(0)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node,*LinkList; 7 IniteLinkList(LinkList*L) 8 { 9 *L=(Link
阅读全文
posted @ 2021-11-18 18:37
JT3895
阅读(40)
推荐(0)