C语言
爱吃冰粉
不会敲代码的理大人
展开
-
数据结构——图的邻接矩阵存储
数据结构——图的邻接矩阵存储功能实现图的邻接矩阵的储存 (1)深度优先遍历 (2)广度优先遍历 (3)求结点的度 (4)判断图是否连通 (5)求最小生成树 (6)退出#include<stdio.h>#include<stdlib.h>#define maxvex 20#define Maxsize 50 #define maxInt 32767typedef struct Graphnode{ char Vexs[maxvex]; //原创 2021-12-20 17:20:37 · 445 阅读 · 0 评论 -
数据结构——图的邻接表存储
数据结构——图的邻接表存储功能实现:(1)图的邻接矩阵的储存(2)深度优先遍历(3).广度优先遍历(4)求结点的度(5)判断图是否连通(6)求最小生成树参考代码#include <stdio.h>#include <stdlib.h>#define maxvex 20#define maxInt 32767 #define Maxsize 100/* run this program using the console pauser or add your原创 2021-12-20 17:15:26 · 825 阅读 · 0 评论 -
二叉树的基本操作
#include<stdio.h>#include<stdlib.h>#define maxsize 50 typedef struct binnode{ char *elem; int binlength;}SeqBitree;//申请空间 void InitBitree (SeqBitree *BT){ BT->elem=(char *)malloc (maxsize *sizeof(char)); BT->binlength=0;}/原创 2021-11-13 12:48:45 · 550 阅读 · 0 评论 -
比较两数大小
#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int x,y,result;//定义x,y,result printf("Input two integer numbers:原创 2021-11-05 22:07:15 · 431 阅读 · 0 评论