#include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h> #include<io.h> #include<math.h> #include<process.h> #include<conio.h> #define m 100 #define OK 1 typedef Int Status typedef char TElemType /*树元素的类型*/ Int t=35 Int n=20 Int h=14 Int u=2 Int leaf=0,non_l_leaf=0,non_r_leaf=0,root=0 /*各种结点数*/ char le[m],l[m],r[m],ro[m] /*用与存放各种结点*/ typedef struct BiTNode/*定义二叉树*/
上传时间: 2013-12-15
上传用户:liansi
输入四个点,判断此四点是否可形成一个平行四边形。 程序中描述了一个抽象数据类型Vector2D,表示一个向量。具有(x,y)两个值。其本身具有减另一个向量(minus(Vector2D)),判断自身是否为零向量(iszero()),与另一个向量对应值y,x乘积之差(inner(Vector2D))。由于两个向量平行,则乘积之差x1*y2-x2*y1=0。点A,B,C,D四点组成平行四边形的条件是AB//CD,BC//DA且各个向量皆不为零向量。 首先声明四个向量。向量i获得值的方法是由getPoInt(Int i)获得。然后根据Vector2D重载后的toString()函数将各个向量输出查看。最后判断此四点是否可组成平行四边行。
标签: 输入
上传时间: 2016-04-30
上传用户:qq521
CRC16算法的Java实现,使用方法如下: CRC16 crc16 = new CRC16() byte[] b = new byte[] { // (byte) 0xF0,(byte)0xF0,(byte)0xF0,(byte)0x72 (byte) 0x2C, (byte) 0x00, (byte) 0xFF, (byte) 0xFE, (byte) 0xFE, (byte) 0x04, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 } for (Int k = 0 k < b.length k++) { crc16.update(b[k]) } System.out.prIntln(Integer.toHexString(crc16.getValue())) System.out.prIntln(Integer.toHexString(b.length))
上传时间: 2014-12-20
上传用户:ve3344
linux 下串口编程 #include <stdio.h> /*标准输入输出定义*/ #include <stdlib.h> /*标准函数库定义*/ #include <unistd.h> /*Unix标准函数定义*/ #include <sys/types.h> /**/ #include <sys/stat.h> /**/ #include <fcntl.h> /*文件控制定义*/ #include <termios.h> /*PPSIX终端控制定义*/ #include <errno.h> /*错误号定义*/ /***@brief 设置串口通信速率 *@param fd 类型 Int 打开串口的文件句柄 *@param speed 类型 Int 串口速度 *@return void*/
标签: include stdlib linux stdio
上传时间: 2014-01-18
上传用户:xjz632
#include <reg52.h> #include <stdio.h> #include <string.h> #define uchar unsigned char #define uInt unsigned Int #define isp_iap_byte_read 0x1 #define isp_iap_byte_program 0x2 #define isp_iap_sector_erase 0x3 #define wait_time 0x1
上传时间: 2016-05-18
上传用户:agent
五子棋小游戏#include<stdlib.h> #include<time.h> #include<stdio.h> #include<conio.h> Int chess[169]={0} /*棋盘*/ struct chess_t/*作为辅助,即是作为建意*/ { char attack /*攻防用的,0表示守,1表示攻*/ Int j /*作为优先级用*/ }chess_a[169]
上传时间: 2016-05-18
上传用户:anng
//*********主机代码****** #include <reg51.h> #include "Clicent_Setting.h" #include "LCD_Funtion.h" #include "Futions.h" #include "Host_Interrupt_Funtion.h" Int num1=1 //从机数码管起始数 Int num2=0 Int num3=1
标签: include Clicent_Setting LCD_Funt reg
上传时间: 2016-05-27
上传用户:王者A
这是一个D系列触摸屏程序,这个是TOUCH 8x10D(Int)产品的程序
上传时间: 2016-06-02
上传用户:playboys0
这是一个D系列触摸屏程序,这是一个型号为Touch15x20D(Int)型号的程序
上传时间: 2016-06-02
上传用户:894898248
c++图书管理系统 include <iostream> #include <iomanip> #include <string> #include <fstream>//输入/输出文件流类 using namespace std const Int Maxr=100 //最多的读者 const Int Maxb=100 //最多的图书 const Int Maxbor=5 //每位读者最多借五本书 //读者类,实现对读者的信息的描述
上传时间: 2013-12-18
上传用户:拔丝土豆