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

BT

  • This guide is an attempt to compile a lot of that information in here and dummy it down. Perhaps it

    This guide is an attempt to compile a lot of that information in here and dummy it down. Perhaps it s a fairly common show, perhaps not. It might have even been a show that you taped. Whatever the case, you want to share it with others bur aren t quite sure how. This guide should be your answer. This guide is geared towards posting a show at SharingTheGroove.org. The instructions contained within are for that site. Other sites hosting BT shows may have slightly different procedures for getting the torrent to them. However, torrent creation will be the same. While this guide is being written with audio concerts in mind, the same holds true for the video section of The Groove.

    标签: information Perhaps attempt compile

    上传时间: 2013-12-19

    上传用户:zsjzc

  • kad 协议的说明文档

    kad 协议的说明文档,英文版的,对emule、BT的学习和开发很有帮助

    标签: kad 协议 文档

    上传时间: 2017-05-12

    上传用户:阿四AIR

  • <Linux c编程实战>童永清。上的代码

    <Linux c编程实战>童永清。上的代码,BT下载软件的开发,Linux下开发的,供大家参考

    标签: Linux lt gt c编程

    上传时间: 2014-05-31

    上传用户:zgu489

  • 使用delphi语言

    使用delphi语言,实现BT下载功能,希望大家满意。

    标签: delphi 语言

    上传时间: 2013-12-19

    上传用户:lht618

  • p2p仿真

    p2p仿真,java写的,能够设置参数,模拟BT下载

    标签: p2p 仿真

    上传时间: 2017-08-18

    上传用户:xz85592677

  • MSP-TEST44X 学习板光盘资料及实验说明 本学习板是按照教育大纲

    MSP-TEST44X 学习板光盘资料及实验说明 本学习板是按照教育大纲,采纳国内外许多单片机实验仪的优点,保持了传统机的实验 项目,增加了以实用技术为主的许多实验。实验内容涉及到端口,时钟,FLASH 读写,看 门狗,硬件乘法器,TIMER_A_操作,TIMER_A ,ADC&BT&lcd,通讯操作(232,485, SPI),键盘操作(独立按键,行列按键),LED 显示,LCD 点阵操作,扩展 DATA FLASH 操作, EEPROM 共 14 个例程,采用 C 和汇编两种语言形式。学习版硬件平台以 MSP430F449 为核 心,使用了 MSP430F449 内部的绝大多数资源,配合 FET 仿真调试&编程工具,可方便的 实现开发,在线调试与编程下载。为了便于大家查找学习板的资料及便捷的观看实验指导书, 特作此说明。

    标签: MSP-TEST 44 光盘 实验

    上传时间: 2017-09-27

    上传用户:拔丝土豆

  • The digital Video Standard

    The digital Video Standard according to ITU-R BT. 601/656 有关接口的协议的大概描述

    标签: ITU-R BT. 601/656

    上传时间: 2015-12-21

    上传用户:dxw2006

  • WM-BAC-BM-19

    这是一款USI生产的三合一WIFI+BT+FM模块

    标签: WIFI模块

    上传时间: 2016-02-26

    上传用户:milan11000

  • 无线电CW通联

    无线电CW通联 基本Q短语,通联实例 A: CQCQCQ DE BA4ALC/5 BA4ALC/5 BA4ALC/5 PSE K B:BA4ALC/5 DE BD4IZL BD4IZL K A:BD4IZL DE BA4ALC/5 GM TNX FER CALL DR OM UR RST 559 55N K B:RR BA4ALC/5 DE BD4IZL GM DR OM TNX 55N RPRT UR 599 5NN FB MY NAME IS YU YU QTH JINAN JINAN BA4ALC/5 DE BD4IZL K A: DR YU OM TNX FB RPRT OP JACK JACK QTH NINGBO NINGBO WX HR IS FINE ES WARM TEMP 20C 20C HW? DE BA4ALC/5 K B:R DR JACK OM WX CLOUDY CLOUDY ES TEMP 15C 15C BT RIG FT80C FT80C ANT DIPOLE DP PWR 100WATTS 1TTW BA4ALC/5 DE BD4IZL K A: BD4IZL DE BA4ALC/5 MY RIG IS IC746PRO IC746PRO ES PWR 100W 1OOW BT ANT 2 ELE YAGI 2ELE YAGI 12MH TNX FER NICE QSO QSL VIA BURO HPE CUAGN BD4IZL DE BA4ALC/5 73 73 GL ES GB TU TU SK.. B:TNX FB CW QSO QSL QRZ.COM CUAGN BA4ALC/5 DE BD4IZL 73 DR JACK TU SK.. A:. B:.

    标签: 无线电 CW

    上传时间: 2019-03-05

    上传用户:shuyinglee

  • 二叉树子系统

    #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-10

    上传用户:ccccy