2024.7.24 作业

news/2024/11/15 6:16:32/

1.二叉树的创建、遍历自己实现一遍

bitree.h

#ifndef BITREE_H
#define BITREE_H#include <myhead.h>typedef char datatype;typedef struct Node
{datatype data;struct Node *left_child;struct Node *right_child;
}Node,*BiTreePtr;//创建二叉树
BiTreePtr tree_create();//先序遍历
void prio_order(BiTreePtr B);//中序遍历
void in_order(BiTreePtr B);//后序遍历
void post_order(BiTreePtr B);#endif

bitree.c 

#include "bitree.h"//创建二叉树
BiTreePtr tree_create()
{char data = 0;scanf(" %c",&data);if( data=='#'){return NULL;}BiTreePtr p = (BiTreePtr)malloc(sizeof(Node));if( NULL==p ){printf("节点申请失败\n");return NULL;}p->data = data;p->left_child = tree_create();p->right_child = tree_create();return p;
}//先序遍历
void prio_order(BiTreePtr B)
{if( NULL==B ){return ;}printf("%c\t",B->data);prio_order(B->left_child);prio_order(B->right_child);
}//中序遍历
void in_order(BiTreePtr B)
{if( NULL==B ){return ;}in_order(B->left_child);printf("%c\t",B->data);in_order(B->right_child);
}//后序遍历
void post_order(BiTreePtr B)
{if( NULL==B ){return ;}post_order(B->left_child);post_order(B->right_child);printf("%c\t",B->data);
}

main.c 

#include "bitree.h"int main(int argc, const char *argv[])
{BiTreePtr B = tree_create();if( NULL==B ){printf("创建失败\n");return -1;}printf("创建成功\n");printf("先序遍历结果为:");prio_order(B);printf("\n");printf("中序遍历结果为:");in_order(B);printf("\n");printf("后序遍历结果为:");post_order(B);printf("\n");return 0;	
}

2.把所有的排序算法自己实现一遍

#include <myhead.h>void bubble_sort(int *arr,int n)              //冒泡排序
{for(int i=1;i<n;i++){int flag=0;for(int j=0;j<n-i;j++){if(arr[j]>arr[j+1]){flag=1;int temp=arr[j];arr[j]=arr[j+1];arr[j+1]=temp;}}if(flag==0){break;}}printf("冒泡排序成功\n");
}void select_sort(int *arr, int n)      //选择排序
{for(int i=0;i<n;i++){int x=i;for(int j=i+1;j<n;j++){if(arr[x]>arr[j]){x=j;}}if(x!=i){int temp = arr[x];arr[x]= arr[i];arr[i] = temp;}}printf("选择排序成功\n");
}void putout(int *arr,int n)                  //输出
{printf("当前元素为:");for(int i=0;i<n;i++){printf("%d\t",arr[i]);}printf("\n");
}void insert_sort(int *arr, int n)         //插入排序
{int i,j;for(i=1;i<n;i++){int x=arr[i];for(j=i-1;j>=0 && arr[j]>=x;j--){arr[j+1]=arr[j];}arr[j+1]=x;}printf("插入排序成功\n");
}int part(int *arr,int low,int high)
{int x=arr[low];while(high>low){while( arr[high]>=x && high>low ){high--;}	arr[low]=arr[high];while( arr[low]<=x && high>low ){low++;}	arr[high]=arr[low];}arr[low]=x;return low;
}void quick_sort(int *arr,int low,int high)     //快速排序
{if(low>=high){return;}int mid=part(arr,low,high);quick_sort(arr,low,mid-1);quick_sort(arr,mid+1,high);printf("快速排序成功\n");
}int main(int argc,const char *argv[])
{int arr[]={7,8,5,2,3,0,1,9};int len =sizeof(arr)/sizeof(arr[0]);bubble_sort(arr,len);putout(arr,len);int brr[]={7,8,5,2,3,0,1,9};select_sort(brr,len);putout(brr,len);int crr[]={7,8,5,2,3,0,1,9};insert_sort(crr,len);putout(crr,len);int drr[]={7,8,5,2,3,0,1,9};quick_sort(drr,0,len-1);putout(drr,len);return 0;
}

思维导图


http://www.ppmy.cn/news/1503475.html

相关文章

夏日炎炎的高温烤不熟那7月的赤子心

相比于6月&#xff0c;七月显得对自己有所要求。 七月&#xff1a; 输入&#xff1a; 读书 24 本&#xff08;读书听书&#xff09;骑行&#xff1a; 580公里游泳&#xff1a; 6 次 输出&#xff1a;1.写了一篇读书笔记&#xff08;CSDN&#xff09; 2.体重从80公斤降到78公…

<数据集>棉花识别数据集<目标检测>

数据集格式&#xff1a;VOCYOLO格式 图片数量&#xff1a;13765张 标注数量(xml文件个数)&#xff1a;13765 标注数量(txt文件个数)&#xff1a;13765 标注类别数&#xff1a;4 标注类别名称&#xff1a;[Partially opened, Fully opened boll, Defected boll, Flower] 序…

4 款最佳 C# 无头浏览器

摘要&#xff1a; 在当今大数据时代&#xff0c;高效的数据采集成为众多项目的关键一环。对于偏好C#语言的开发者而言&#xff0c;无头浏览器是实现网页自动化交互、数据抓取的强大工具。本文将深入探讨四款顶尖的C#无头浏览器库&#xff0c;分析它们的特性和应用场景&#xf…

vivado LUT_REMAP

opt_design-remap选项将多个LUT组合到一个LUT中&#xff0c;以减少 逻辑的深度。重映射优化还可以组合属于不同LUT的LUT 逻辑层次结构的级别。 重新映射的逻辑被组合到逻辑锥中最下游的LUT中。 LUT_REPAP属性允许您通过应用 属性到顺序LUT对&#xff0c;以指导opt_design将它们…

Cocos Creator2D游戏开发(9)-飞机大战(7)-爆炸效果

这个爆炸效果我卡在这里好长时间,视频反复的看, 然后把代码反复的测试,修改,终于给弄出来 视频中这段,作者也是修改了好几次, 跟着做也走了不少弯路; 最后反正弄出来了; 有几个坑; ① 动画体创建位置是enemy_prefab ② enemy_prefab预制体下不用放动画就行; ③ 代码中引用Anima…

MySQL 索引相关基本概念

文章目录 前言一. B Tree 索引1. 概念2. 聚集索引/聚簇索引3. 辅助索引/二级索引4. 回表5. 联合索引/复合索引6. 覆盖索引 二. 哈希索引三. 全文索引 前言 InnoDB存储引擎支持以下几种常见索引&#xff1a;BTree索引&#xff0c;哈希索引&#xff0c;全文索引 一. B Tree 索引…

Javascript前端面试基础4【每日学习并更新10】

同步和异步的区别 同步:浏览器访问服务器请求&#xff0c;用户看得到页面刷新&#xff0c;重新发请求等请求完&#xff0c;页面刷新,新内容出现&#xff0c;用户看到新内容,进行下一步操作异步:浏览器访问服务器请求&#xff0c;用户正常操作&#xff0c;浏览器后端进行请求。等…

Vue3响应式高阶用法之shallowReactive()

Vue3响应式高阶用法之shallowReactive() 文章目录 Vue3响应式高阶用法之shallowReactive()一、简介二、使用场景三、基本使用四、功能详解4.1 浅层响应4.2 性能优势 五、最佳实践及案例5.1 复杂数据结构处理5.2 确保正确的响应式转换 六、总结 注意点&#xff1a;一般不用react…