虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

ANDROID-BT汇总

  • labview常用工具包汇总

    打开Pdf,里面附有各个模块的链接,直接从官网上下载

    标签: labview 工具包

    上传时间: 2020-05-09

    上传用户:飞在空中的小师父

  • Arduino+and+Android+using+MIT+app

    MIT App Inventor is an innovative beginner’s introduction to programming and app creation that transforms the complex language of text-based coding into visual, drag-and- drop building blocks. The simple graphical interface grants even an inexperienced novice the ability to create a basic, fully functional app within an hour or less.

    标签: Arduino Android using and MIT app

    上传时间: 2020-06-09

    上传用户:shancjb

  • 二叉树子系统

    #include<stdio.h> #define TREEMAX 100 typedef struct  BT { char data; BT *lchild; BT *rchild; }BT; BT *CreateTree(); void Preorder(BT *T); void Postorder(BT *T); void Inorder(BT *T); void Leafnum(BT *T); void Nodenum(BT *T); int TreeDepth(BT *T); int count=0; void main() { BT *T=NULL; char ch1,ch2,a; ch1='y'; while(ch1=='y'||ch1=='y') { printf("\n"); printf("\n\t\t             二叉树子系统"); printf("\n\t\t*****************************************"); printf("\n\t\t           1---------建二叉树            "); printf("\n\t\t           2---------先序遍历            "); printf("\n\t\t           3---------中序遍历            "); printf("\n\t\t           4---------后序遍历            "); printf("\n\t\t           5---------求叶子数            "); printf("\n\t\t           6---------求结点数            "); printf("\n\t\t           7---------求树深度            "); printf("\n\t\t           0---------返    回            "); printf("\n\t\t*****************************************"); printf("\n\t\t      请选择菜单号 (0--7)"); scanf("%c",&ch2); getchar(); printf("\n"); switch(ch2) { case'1': printf("\n\t\t请按先序序列输入二叉树的结点:\n"); printf("\n\t\t说明:输入结点(‘0’代表后继结点为空)后按回车。\n"); printf("\n\t\t请输入根结点:"); T=CreateTree(); printf("\n\t\t二叉树成功建立!\n");break; case'2': printf("\n\t\t该二叉树的先序遍历序列为:"); Preorder(T);break; case'3': printf("\n\t\t该二叉树的中序遍历序列为:"); Inorder(T);break; case'4': printf("\n\t\t该二叉树的后序遍历序列为:"); Postorder(T);break; case'5': count=0;Leafnum(T); printf("\n\t\t该二叉树有%d个叶子。\n",count);break; case'6': count=0;Nodenum(T); printf("\n\t\t该二叉树总共有%d个结点。\n",count);break; case'7': printf("\n\t\t该树的深度为:%d",TreeDepth(T)); break; case'0': ch1='n';break; default: printf("\n\t\t***请注意:输入有误!***"); } if(ch2!='0') { printf("\n\n\t\t按【Enter】键继续,按任意键返回主菜单!\n"); a=getchar(); if(a!='\xA') { getchar(); ch1='n'; } } } } BT *CreateTree() { BT *t; char x; scanf("%c",&x); getchar(); if(x=='0') t=NULL; else { t=new BT; t->data=x; printf("\n\t\t请输入%c结点的左子结点:",t->data);         t->lchild=CreateTree(); printf("\n\t\t请输入%c结点的右子结点:",t->data);         t->rchild=CreateTree();     } return t; } void Preorder(BT *T) { if(T) { printf("%3c",T->data); Preorder(T->lchild); Preorder(T->rchild); } } void Inorder(BT *T) { if(T) { Inorder(T->lchild); printf("%3c",T->data); Inorder(T->rchild); } } void Postorder(BT *T) { if(T) { Postorder(T->lchild); Postorder(T->rchild); printf("%3c",T->data); } } void Leafnum(BT *T) { if(T) { if(T->lchild==NULL&&T->rchild==NULL) count++; Leafnum(T->lchild); Leafnum(T->rchild); } } void Nodenum(BT *T) { if(T) { count++; Nodenum(T->lchild); Nodenum(T->rchild); } } int TreeDepth(BT *T) { int ldep,rdep; if(T==NULL) return 0; else { ldep=TreeDepth(T->lchild); rdep=TreeDepth(T->rchild); if(ldep>rdep) return ldep+1; else return rdep+1; } }

    标签: 二叉树 子系统

    上传时间: 2020-06-11

    上传用户:ccccy

  • PID算法汇总

    PID详细教程,有做控制相关的小伙伴可以借鉴参考一下,有一定帮助

    标签: c++ PID

    上传时间: 2020-06-30

    上传用户:lzp962485607

  • #SFML —简单快速的多媒体库

    #SFML —简单快速的多媒体库 SFML是一种简单,快速,跨平台和面向对象的多媒体API。它提供对窗口,图形,音频和网络的访问。它是用C ++编写的,并且具有针对各种语言(例如C,.Net,Ruby,Python)的绑定。 ##作者   -Laurent Gomila-主要开发人员(laurent@sfml-dev.org)   -Marco Antognini-OS X开发人员(hiura@sfml-dev.org)   -Jonathan De Wachter — Android开发人员(dewachter.jonathan@gmail.com)   -Jan Haller(bromeon@sfml-dev.org)   -Stefan Schindler(tank@sfml-dev.org)   -LukasDürrenberger(eXpl0it3r@sfml-dev.org)   -binary1248(binary1248@hotmail.com)   -阿图·莫雷拉(Artur Moreira)(artturmoreira@gmail.com)   -Mario Liebisch(mario@sfml-dev.org)   -SFML社区的许多其他成员 ## 下载 您可以在[SFML的网站](https://www.sfml-dev.org/download.php)上获得最新的官方版本。您还可以从[Git存储库](https://github.com/SFML/SFML)获取当前的开发版本。 ##安装 按照[tutorials](https://www.sfml-dev.org/tutorials/)的说明进行操作,SFML支持的每个平台/编译器都有一个。 ## 学习 有很多学习SFML的地方:   * [官方教程](https://www.sfml-dev.org/tutorials/)   * [在线API文档](https://www.sfml-dev.org/documentation/)   * [社区Wiki](https://github.com/SFML/SFML/wiki/)   * [社区论坛](https://en.sfml-dev.org/forums/)([法语](https://fr.sfml-dev.org/forums/)) ##贡献 SFML是一个开源项目,它需要您的帮助才能继续发展和改进。如果您想参与其中并提出一些其他功能,提交错误报告或提交补丁,请查看[贡献准则](https://www.sfml-dev.org/contribute.php)。

    标签: SFML 多媒体

    上传时间: 2021-01-25

    上传用户:

  • HTML5 版手机过关游戏消灭星星源代码

    消灭星星网页游戏源码,基于html5的小游戏,可直接在Android 或 IOS手机系统中运行。这款消灭小星星游戏被很多编程语言仿写,记得之前有一个版本是VB版的,同样做的很精彩。   这款小星星游戏,是闯关类休闲益智游戏,玩时候有背景音乐,很刺激。下一关比上一关需要得到更多的分数,分数达不到就失败了,界面和用色很活泼,让人一看就想玩一玩。

    标签: HTML5_CSS3源码

    上传时间: 2021-03-22

    上传用户:18754771937

  • Android相册

    安卓源码,利用paging实现,内含RecycleView 的使用,动态分页加载,点击图片查看高清图并提供下载,下载后自动将下载目录添加到手机相册等相关功能

    标签: Android Paging

    上传时间: 2021-07-06

    上传用户:wufeng1205

  • 光电烟雾传感器专利分析

    光电烟雾传感器专利分析。对全球的光电烟雾传感器专利进行了详细分析。汇总形成了技术矩阵。

    标签: 光电 传感器 烟雾 专利分析

    上传时间: 2021-08-21

    上传用户:wechat_61211871b92f6

  • FireMonkey开发技术简明手册中文版

    详细讲解Firemonkey架构的技术开发手册 RAD XE 用户可使用 Delphi、C++ 开发 Firemonkey 应用程序 支持快速开发 Linux、Windows、 Android 平台 APP 应用

    标签: FireMonkey 开发技术 手册

    上传时间: 2021-08-31

    上传用户:kagmai

  • 毕业论文-基于Arduino的温度测试系统设计

    毕业论文-基于Arduino的温度测试系统设计摘要在物质文化水平逐渐提高的社会背景下,智能家居逐渐兴起,现如今已经具有一定的规模。基于arduino的数据采集端以及基于Android的数据接收终端是本文的研究对象,全文设计了智能家居的一个子系统——温度测试系统。该基于arduino的温度测试系统主要涉及了以下几个领域:Android 平台的软件开发、Arduino 平台的软硬件构成、蓝牙通信的简单应用、温度数据采集实际操作。该系统主要由Arduino UNO主控板、Arduino Xbee V5 传感器扩展板、DS18B20 数字温度传感器、Bluetooth V3蓝牙通信模块、Android终端机构成。以蓝牙作为媒介,通过Arduino组件和 Android组件的连接,完成了从传感器收集数据传输到终端机的过程。本课题设计温度测试系统,操作简单,界面简洁,测试结果观测很直接,整个系统运行稳定流畅。本温度测试系统也可用于其他很多行业,应用范围很广泛,非常值得进一步开发与升级。关键词 智能家居;Arduino;Android;温度测试

    标签: arduino 温度测试系统

    上传时间: 2021-10-16

    上传用户:jason_vip1