• 博客园logo
  • 会员
  • 周边
  • 众包
  • 新闻
  • 博问
  • 闪存
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






JT3895

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2021年12月8日

5.27
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int col,row,data; 5 Node*right,*down; 6 }OLNode,*OLink; 7 typedef struct{ 8 OLink*Rh 阅读全文
posted @ 2021-12-08 21:33 JT3895 阅读(80) 评论(0) 推荐(0)
 
5.26
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int row,col,data; 5 Node*right,*down; 6 }OLNode,*OLink; 7 typedef struct{ 8 OLink *R 阅读全文
posted @ 2021-12-08 21:23 JT3895 阅读(70) 评论(0) 推荐(0)
 
5.25
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int vex[50]; 4 int matrix[50][50]; 5 int m,n,length; 6 }AZ; 7 void Create(AZ*A) 8 { 9 int e,t=0; 10 scanf("%d 阅读全文
posted @ 2021-12-08 21:16 JT3895 阅读(54) 评论(0) 推荐(0)
 
5.23
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int data; 4 int col; 5 }Double; 6 typedef struct{ 7 Double element[50]; 8 int rowindex[50]; 9 int m,n,length; 阅读全文
posted @ 2021-12-08 21:01 JT3895 阅读(78) 评论(0) 推荐(0)
 
5.22
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int row,col; 4 int data; 5 }Triple; 6 typedef struct{ 7 Triple element[200]; 8 int m,n,length; 9 }TSMatrix; 10 阅读全文
posted @ 2021-12-08 20:35 JT3895 阅读(148) 评论(0) 推荐(0)
 
5.21
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int row,col; 4 int data; 5 }Triple; 6 typedef struct{ 7 Triple element[200]; 8 int m,n,length; 9 }TSMatrix; 10 阅读全文
posted @ 2021-12-08 20:32 JT3895 阅读(45) 评论(0) 推荐(0)
 
5.20
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int x,y; 4 int c; 5 }item; 6 typedef struct{ 7 item element[100]; 8 int n; 9 }Poly; 10 void Create(Poly*A) 11 阅读全文
posted @ 2021-12-08 20:31 JT3895 阅读(37) 评论(0) 推荐(0)
 
5.19
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int rowmin[50]; 4 int colmax[50]; 5 }Content; 6 void M(int n,int A[][50]) 7 { 8 Content C; 9 int indexmax,inde 阅读全文
posted @ 2021-12-08 20:21 JT3895 阅读(27) 评论(0) 推荐(0)
 
5.18
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 void Create(int n,int**A)//注意此处要传入指针的地址值 4 { 5 *A=(int*)malloc(sizeof(int)*n); 6 for(int i=0;i<n;i++) 7 sca 阅读全文
posted @ 2021-12-08 20:15 JT3895 阅读(61) 评论(0) 推荐(0)
 
3.32
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct{ 4 int*element; 5 int k; 6 int rear; 7 }Queue; 8 void Create(Queue*Q) 9 { 10 scanf("%d",&Q-> 阅读全文
posted @ 2021-12-08 02:12 JT3895 阅读(28) 评论(0) 推荐(0)
 
3.31
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 char element[50]; 4 int front,rear; 5 }SeqQueue; 6 void Create(SeqQueue*S) 7 { 8 S->front=0; 9 S->rear=0; 10 c 阅读全文
posted @ 2021-12-08 02:09 JT3895 阅读(132) 评论(0) 推荐(0)
 
3.29
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int element[50]; 4 int front,rear; 5 int length; 6 int tag; 7 }SeqQueue; 8 void Create(SeqQueue*S) 9 { 10 int 阅读全文
posted @ 2021-12-08 02:02 JT3895 阅读(62) 评论(0) 推荐(0)
 
3.28
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct Node{ 4 int data; 5 Node*next; 6 }Node; 7 typedef struct{ 8 9 Node *front,*rear; 10 }LinkQue 阅读全文
posted @ 2021-12-08 01:49 JT3895 阅读(36) 评论(0) 推荐(0)
 
3.27
摘要: (1) 1 #include<stdio.h> 2 typedef struct{ 3 int vm,vn,vf; 4 int tag; 5 }item; 6 typedef struct{ 7 item element[50]; 8 int top; 9 }Stack; 10 void Init( 阅读全文
posted @ 2021-12-08 01:47 JT3895 阅读(23) 评论(0) 推荐(0)
 
3.26
摘要: 1 #include<stdio.h> 2 #include<math.h> 3 typedef struct{ 4 float A,p,e; 5 }item; 6 typedef struct{ 7 item element[50]; 8 int top; 9 }Stack; 10 void In 阅读全文
posted @ 2021-12-08 01:18 JT3895 阅读(81) 评论(0) 推荐(0)
 
3.25
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int element[50]; 4 int top; 5 }Stack; 6 void Init(Stack*S) 7 { 8 S->top=-1; 9 } 10 void Push(Stack*S,int n) 11 阅读全文
posted @ 2021-12-08 01:03 JT3895 阅读(43) 评论(0) 推荐(0)
 
3.24
摘要: 1 #include<stdio.h> 2 typedef struct{ 3 int m,n; 4 }element; 5 typedef struct{ 6 element array[50]; 7 int top; 8 }Stack; 9 void Inite(Stack*S) 10 { 11 阅读全文
posted @ 2021-12-08 01:00 JT3895 阅读(13) 评论(0) 推荐(0)
 
3.21
摘要: 1 #include<stdio.h> 2 #define MaxSize 20 3 typedef struct{ 4 char element[MaxSize]; 5 int top; 6 }SeqStack; 7 void InitStack(SeqStack*p)//初始化 8 { 9 p- 阅读全文
posted @ 2021-12-08 00:26 JT3895 阅读(90) 评论(0) 推荐(0)