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

BASE

  • Insurance A Vehicle Vehicle Insured In Accident Vehicle Inspected Online fprms goto insurer Claim

    Insurance A Vehicle Vehicle Insured In Accident Vehicle Inspected Online fprms goto insurer Claim Approved Vehicle Repaired Insurer Pays All data should be saved to the data BASE

    标签: Vehicle Insurance Inspected Accident

    上传时间: 2017-09-01

    上传用户:xz85592677

  • Parallel robotic manipulators can be considered a well-established option for many different applic

    Parallel robotic manipulators can be considered a well-established option for many different applications of manipulation, machining, guiding, testing, control, tracking, haptic force feed-back, etc. A typical parallel robotic manipulator (PM) consists of a mobile platform connected to the BASE (fixed platform) by at least two kinematic chains called limbs. The mobile platform can achieve between one and three independent translations (T) and one to three independent rotations (R).

    标签: well-established manipulators considered different

    上传时间: 2017-09-03

    上传用户:moerwang

  • Per gli interessati ai metodi della compressione una vera miniera d oro, oltre 70 algoritmi all int

    Per gli interessati ai metodi della compressione una vera miniera d oro, oltre 70 algoritmi all interno di moduli BASE indipendenti consentono a questo programma di mostrare il loro utilizzo e le loro performances, ecco elencati alcuni di essi : BASE64/crc32/fibonacci/mtf/freq/adddif/bwt/fix12/fix128/flatter/ huffman/lzw/lzs/rle/lbe/hash/vbc/scrambler, e tanti tanti altri.

    标签: compressione interessati algoritmi miniera

    上传时间: 2013-12-16

    上传用户:时代电子小智

  • vc++与visio 安装VISIO office(推荐2003以上版本)必须安装visio office 否则程序无法运行 安装VisioSDK(推荐2003以上版本) 默认安装路径为<

    vc++与visio 安装VISIO office(推荐2003以上版本)必须安装visio office 否则程序无法运行 安装VisioSDK(推荐2003以上版本) 默认安装路径为<SDK> C:\Program Files\Microsoft Office\Office12\VisSDK 新建project(实例代码是新建了个MFC Dialog BASE program) 将<SDK>\Libraries\CPP\里的include目录下和sources目录下的如下文件拷贝到你的project目录里(这样可以。。)

    标签: office visio 2003 VisioSDK

    上传时间: 2013-12-25

    上传用户:大融融rr

  • as a message came into prominence with the publication in 1948 of an influential paper by Claude Sha

    as a message came into prominence with the publication in 1948 of an influential paper by Claude Shannon, "A Mathematical Theory of Communication." This paper provides the foundations of information theory and endows the word information not only with a technical meaning but also a measure. If the sending device is equally likely to send any one of a set of N messages, then the preferred measure of "the information produced when one message is chosen from the set" is the BASE two logarithm of N (This measure is called self-information). In this paper, Shannon cont

    标签: influential publication prominence message

    上传时间: 2014-01-21

    上传用户:2404

  • 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。

    #include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *BASE; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->BASE=(int *)malloc(stack_init_size *sizeof(int)); if(!s->BASE) return 0; s->top=s->BASE; s->stacksize=stack_init_size; return 1; } int Push(sqstack *s,int e) { if(s->top-s->BASE>=s->stacksize) { s->BASE=(int *)realloc(s->BASE,(s->stacksize+stackincrement)*sizeof(int)); if(!s->BASE) return 0; s->top=s->BASE+s->stacksize; s->stacksize+=stackincrement; } *(s->top++)=e; return e; } int Pop(sqstack *s,int e) { if(s->top==s->BASE) return 0; e=*--s->top; return e; } int stackempty(sqstack *s) { if(s->top==s->BASE) { return 1; } else { return 0; } } int conversion(sqstack *s) { int n,e=0,flag=0; printf("输入要转化的十进制数:\n"); scanf("%d",&n); printf("要转化为多少进制:\n"); scanf("%d",&flag); printf("将十进制数%d 转化为%d 进制是:\n",n,flag); while(n) { Push(s,n%flag); n=n/flag; } while(!stackempty(s)) { e=Pop(s,e); switch(e) { case 10: printf("A"); break; case 11: printf("B"); break; case 12: printf("C"); break; case 13: printf("D"); break; case 14: printf("E"); break; case 15: printf("F"); break; default: printf("%d",e); } } printf("\n"); return 0; } int main() { sqstack s; StackInit(&s); conversion(&s); return 0;                        }

    标签: 整数 基本操作 十进制 转化 进制

    上传时间: 2016-12-08

    上传用户:爱你198

  • 数据结构实验

    #include <iostream> #include <stdio.head> #include <stdlib.head> #include <string.head> #define ElemType int #define max 100 using namespace std; typedef struct node1 { ElemType data; struct node1 *next; }Node1,*LinkList;//链栈 typedef struct { ElemType *BASE; int top; }SqStack;//顺序栈 typedef struct node2 { ElemType data; struct node2 *next; }Node2,*LinkQueue; typedef struct node22 { LinkQueue front; LinkQueue rear; }*LinkList;//链队列 typedef struct { ElemType *BASE; int front,rear; }SqQueue;//顺序队列 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 //1.采用链式存储实现栈的初始化、入栈、出栈操作。 LinkList CreateStack()//创建栈 { LinkList top; top=NULL; return top; } bool StackEmpty(LinkList s)//判断栈是否为空,0代表空 { if(s==NULL) return 0; else return 1; } LinkList Pushead(LinkList s,int x)//入栈 { LinkList q,top=s; q=(LinkList)malloc(sizeof(Node1)); q->data=x; q->next=top; top=q; return top; } LinkList Pop(LinkList s,int &e)//出栈 { if(!StackEmpty(s)) { printf("栈为空。"); } else { e=s->data; LinkList p=s; s=s->next; free(p); } return s; } void DisplayStack(LinkList s)//遍历输出栈中元素 { if(!StackEmpty(s)) printf("栈为空。"); else { wheadile(s!=NULL) { cout<<s->data<<" "; s=s->next; } cout<<endl; } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 //2.采用顺序存储实现栈的初始化、入栈、出栈操作。 int StackEmpty(int t)//判断栈S是否为空 { SqStack.top=t; if (SqStack.top==0) return 0; else return 1; } int InitStack() { SqStack.top=0; return SqStack.top; } int pushead(int t,int e) { SqStack.top=t; SqStack.BASE[++SqStack.top]=e; return SqStack.top; } int pop(int t,int *e)//出栈 { SqStack.top=t; if(!StackEmpty(SqStack.top)) { printf("栈为空."); return SqStack.top; } *e=SqStack.BASE[s.top]; SqStack.top--; return SqStack.top; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 //3.采用链式存储实现队列的初始化、入队、出队操作。 LinkList InitQueue()//创建 { LinkList head; head->rear=(LinkQueue)malloc(sizeof(Node)); head->front=head->rear; head->front->next=NULL; return head; } void deleteEle(LinkList head,int &e)//出队 { LinkQueue p; p=head->front->next; e=p->data; head->front->next=p->next; if(head->rear==p) head->rear=head->front; free(p); } void EnQueue(LinkList head,int e)//入队 { LinkQueue p=(LinkQueue)malloc(sizeof(Node)); p->data=e; p->next=NULL; head->rear->next=p; head->rear=p; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 //4.采用顺序存储实现循环队列的初始化、入队、出队操作。 bool InitQueue(SqQueue &head)//创建队列 { head.data=(int *)malloc(sizeof(int)); head.front=head.rear=0; return 1; } bool EnQueue(SqQueue &head,int e)//入队 { if((head.rear+1)%MAXQSIZE==head.front) { printf("队列已满\n"); return 0; } head.data[head.rear]=e; head.rear=(head.rear+1)%MAXQSIZE; return 1; } int QueueLengthead(SqQueue &head)//返回队列长度 { return (head.rear-head.front+MAXQSIZE)%MAXQSIZE; } bool deleteEle(SqQueue &head,int &e)//出队 { if(head.front==head.rear) { cout<<"队列为空!"<<endl; return 0; } e=head.data[head.front]; head.front=(head.front+1)%MAXQSIZE; return 1; } int gethead(SqQueue head)//得到队列头元素 { return head.data[head.front]; } int QueueEmpty(SqQueue head)//判断队列是否为空 { if (head.front==head.rear) return 1; else return 0; } void travelQueue(SqQueue head)//遍历输出 { wheadile(head.front!=head.rear) { printf("%d ",head.data[head.front]); head.front=(head.front+1)%MAXQSIZE; } cout<<endl; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 //5.在主函数中设计一个简单的菜单,分别测试上述算法。 int main() { LinkList top=CreateStack(); int x; wheadile(scanf("%d",&x)!=-1) { top=Pushead(top,x); } int e; wheadile(StackEmpty(top)) { top=Pop(top,e); printf("%d ",e); }//以上是链栈的测试 int top=InitStack(); int x; wheadile(cin>>x) top=pushead(top,x); int e; wheadile(StackEmpty(top)) { top=pop(top,&e); printf("%d ",e); }//以上是顺序栈的测试 LinkList Q; Q=InitQueue(); int x; wheadile(scanf("%d",&x)!=-1) { EnQueue(Q,x); } int e; wheadile(Q) { deleteEle(Q,e); printf("%d ",e); }//以上是链队列的测试 SqQueue Q1; InitQueue(Q1); int x; wheadile(scanf("%d",&x)!=-1) { EnQueue(Q1,x); } int e; wheadile(QueueEmpty(Q1)) { deleteEle(Q1,e); printf("%d ",e); } return 0; }

    标签: 数据结构 实验

    上传时间: 2018-05-09

    上传用户:123456..

  • virtual decomposition control

    obot control, a subject aimed at making robots behave as desired, has been extensively developed for more than two decades. Among many books being published on this subject, a common feature is to treat a robot as a single system that is to be controlled by a variety of control algorithms depending on different scenarios and control objectives. However, when a robot becomes more complex and its degrees of freedom of motion increase substantially, the needed control computation can easily go beyond the scope a modern computer can handle within a pre-specified sampling period. A solution is to BASE the control on subsystem dynamics.

    标签: decomposition virtual control

    上传时间: 2019-09-04

    上传用户:txb96

  • VK1621B/1056B/1072/1088 体温枪/额温枪/测温枪/耳温枪显示驱动

    产品型号:VK1056B VK1056C 产品品牌:VINTEK/元泰 封装形式:SOP24 SSOP24 产品年份:新年份 联 系 人:许先生   联系手机:18898582398 原厂直销,工程服务,技术支持,价格具有优势!   VK1056B概述: VK1056B 是 56 点、 内存映象和多功能的 LCD 驱动, VK1056B 的软件配置特性使它适用于多种 LCD 应用场合,包括 LCD 模块和显示系统,用于连接主控制器和 VK1056B 的管脚只有 4 条, VK1056B 还有一个节电命令用于降低系统功耗。VK1056B封装:SOP24/SSOP24 特点: ★  工作電壓:3.0-5.0V ★  內嵌 256KHz RC oscillator ★ 可外接  32KHz 晶片或 256KHz 頻率源程                        ★  可選擇 1/2,1/3  偏压,也可選擇 1/2,1/3  1/4 的占空比 ★ 兩種蜂鳴器頻率 ★ 节电命令可用于减少功耗 ★  內 嵌 时 基 发 生 器 和 看 门 狗 定 时 器(WDT) ★ 8 个时基/看门狗定时器时钟源 ★  一个 14X4  的 LCD  驅動器 ★ 一个內嵌的 32X4  位显示 RAM 内存 ★ 四线串行接口 ★ 内片 LCD 驱动频率源 ★ 数据模式和命令模式指令 ★ 三种数据访问模式 ★  提供 VLCD  腳位可用來調整 LCD 电压 ★  此篇产品叙述为功能简介,如需要完整产品PDF资料可以联系许先生索取! ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●   产品型号:VK1072B VK1072C 产品品牌:VINTEK/元泰 封装形式:SOP28 产品年份:新年份 联 系 人:许先生   联系手机:18898582398 原厂直销,工程服务,技术支持,价格具有优势! VK1072B 替代 TM1621C AIP31621E 完美兼容 价格更低 VK1072B SOP28 VK1072B 完全替代 HT1621 更小点阵 价格更优惠 VK1072B概述: VK1072B 是一個18*4的LCD驅動器,可軟體程式控制使其適用於多樣化的LCD應用線路,僅用到3條訊號線便可控制LCD驅動器,除此之外也可介由指令使其進入省電模式.VK1072封装SOP28 特色: ★工作電壓:2.4-5.2V ★內建256KHz RC oscillator ★可選擇1/2,1/3 偏壓,也可選擇1/2,1/3或1/4的COM周期 ★省電模式, 节电命令可用于减少功耗 ★內 嵌 时 基 发 生 器 和 看 门 狗 定 时 器(WDT) ★內建time BASE generator ★18X4 LCD 驅動器VLCD 腳位可用來調整LCD輸  ★三種數據訪問模式 ★內建32X4 bit 顯示記憶體 ★三線串行接口 ★軟體程式控制 ★資料及指令模式 ★自動增加讀寫位址  ★提供VLCD 腳位可用來調整LCD輸出电压 ★  此篇产品叙述为功能简介,如需要完整产品PDF资料可以联系许先生索取! ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 产品型号:VK1088B 产品品牌:VINTEK 封装形式:QFN32 产品年份:新年份 联 系 人:许先生   联系手机:18898582398 原厂直销,工程服务,技术支持,价格具有优势!   VK1088B概述: VK1088B 是一個22*4的LCD驅動器,可軟體程式控制使其適用於多樣化的LCD應用線路,僅用到3條訊號線便可控制LCD驅動器,除此之外也可介由指令使其進入省電模式. 特色: ★ 工作電壓:2.4-5.2V     ★ 內建256KHz RC oscillator ★ 可選擇1/2,1/3 偏壓,也可選擇1/2,1/3或1/4的COM周期 ★ 省電模式 ★ 內建time BASE generator ★ 22X4 LCD 驅動器VLCD 腳位可用來調整LCD輸 ★ 三種數據訪問模式 ★ 內建22X4 bit 顯示記憶體 ★ 三線串行接口 ★ 軟體程式控制 ★ 資料及指令模式 ★ 自動增加讀寫位址 ★ VLCD 腳位可用來調整LCD輸入 ★  此篇产品叙述为功能简介,如需要完整产品PDF资料可以联系许先生索取! 产品型号:VK1621B 产品品牌:VINTEK/元泰 封装形式:LQFP48 LQFP44 SSOP48 DIP28 DICE/裸片 COB邦定片 定制COG 产品年份:新年份 联 系 人:许先生   联系手机:18898582398 工程服务,技术支持,价格具有优势! VK1621B 是128模式(32x4),内存映射和多功能液晶驱动程序。S / W的VK1621配置特性使得它适合于多种LCD应用包括液晶显示模块和显示子系统。只用三或四线的主机控制器连接VK1621之间的接口要求。VK1621包含一个电源关闭命令来降低功耗。  VK1621产品特征: ★ 工作电压:2.4V ~ 5.2V ★ 内置RC振荡器 ★ 外部的32.768kHz晶体或唤频率源的输入 ★ 1 / 2或1 / 3 偏压选择,和1 / 2或1 / 3或1 / 4液晶显示应用程序的选择  ★内部时间基准频率源  ★两个可选蜂鸣器的频率(2/3)  ★关机命令降低功耗  ★内置的时基发生器和看门狗 ★ 时基或WDT溢出输出 ★ 8种时基/定时器的时钟源 ★ 32x4 LCD驱动器 ★内置32x4位显示RAM ★ 三线串行接口 ★ 内部LCD驱动频率源  ★软件配置特征 ★ 数据模式和命令模式指令的R / W地址自动递增  ★三种数据访问模式 ★提供 VLCD引脚来调整 LCD 工作电压 ★  此篇产品叙述为功能简介,如需要完整产品PDF资料可以联系许先生索取联系电话:18898582398

    标签: 1621 1056 1072 1088 VK 额温枪 测温 显示驱动 耳温枪

    上传时间: 2020-03-16

    上传用户:szqxw1688

  • 额温枪显示屏驱动IC:VK1072C/VK1072B SOP28大量现货

    产品型号:VK1072B VK1072C 产品品牌:VINTEK/元泰 封装形式:SOP28 产品年份:新年份 联 系 人:许先生   联系手机:18898582398 原厂直销,工程服务,技术支持,价格具有优势! VK1072B 替代 TM1621C AIP31621E 完美兼容 价格更低 VK1072B SOP28 VK1072B 完全替代 HT1621 更小点阵 价格更优惠 VK1072B概述: VK1072B 是一個18*4的LCD驅動器,可軟體程式控制使其適用於多樣化的LCD應用線路,僅用到3條訊號線便可控制LCD驅動器,除此之外也可介由指令使其進入省電模式.VK1072封装SOP28 特色: ★工作電壓:2.4-5.2V ★內建256KHz RC oscillator ★可選擇1/2,1/3 偏壓,也可選擇1/2,1/3或1/4的COM周期 ★省電模式, 节电命令可用于减少功耗 ★內 嵌 时 基 发 生 器 和 看 门 狗 定 时 器(WDT) ★內建time BASE generator ★18X4 LCD 驅動器VLCD 腳位可用來調整LCD輸  ★三種數據訪問模式 ★內建32X4 bit 顯示記憶體 ★三線串行接口 ★軟體程式控制 ★資料及指令模式 ★自動增加讀寫位址  ★提供VLCD 腳位可用來調整LCD輸出电压 ★  此篇产品叙述为功能简介,如需要完整产品PDF资料可以联系许先生索取!

    标签: 额温枪 显示屏 驱动IC VK1072C VK1072B TM1621 HT1621B

    上传时间: 2020-03-16

    上传用户:szqxw1688