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

Next-generation

  • Description: This program demonstrates a half-duplex 9600-baud UART using // Timer_A3 using no XTAL

    Description: This program demonstrates a half-duplex 9600-baud UART using // Timer_A3 using no XTAL and an external resistor for DCO ROSC. DCO used for // TACLK UART baud generation. The program will wait in LPM4, echoing back // a received character using 8N1 protocol. On valid RX character, the // character is echoed back. // Using a 100k resistor on ROSC, with default DCO setting, set DCOCLK ~ 2MHz. // ACLK = n/a, MCLK = SMCLK ~2MHz DCOCLK

    标签: using demonstrates Description half-duplex

    上传时间: 2014-01-14

    上传用户:cuiyashuo

  • Findstr.cpp运行结果: GetNext-IndexKMP的结果: 输入主串s:acabaabcaabaabcac 输入模式串t:abaabcac 主串s长=17 模式串t长=8

    Findstr.cpp运行结果: GetNext-IndexKMP的结果: 输入主串s:acabaabcaabaabcac 输入模式串t:abaabcac 主串s长=17 模式串t长=8 next[0]=-1 next[1]=-1 next[2]=0 next[3]=0 next[4]=1 next[5]=-1 next[6]=0 next[7]=-1 next[8]=0 模式串在主串的位置从第10个字符开始 GetNext-IndexKMP的结果: next[1]=0 next[2]=1 next[3]=1 next[4]=1 next[5]=2 next[6]=1 next[7]=1 模式串在主串的位置从第10个字符开始 GetNextVal-IndexKMP的结果: next[1]=0 next[2]=1 next[3]=1 next[4]=0 next[5]=2 next[6]=1 next[7]=1 模式串在主串的位置从第10个字符开始 GetNext-IndexKMP的结果: next[1]=0 next[2]=1 next[3]=1 next[4]=1 next[5]=2 next[6]=1 next[7]=1 模式串t在主串s中的位置从第10个字符开始 IndexBF的结果: 模式串t在主串s中的位置从第10个字符开始

    标签: acabaabcaabaabcac GetNext-IndexKMP abaabcac Findstr

    上传时间: 2013-12-25

    上传用户:璇珠官人

  • The Robotics Toolbox provides many functions that are useful in robotics such as kinematics, dyn

    The Robotics Toolbox provides many functions that are useful in robotics such as kinematics, dynamics, and trajectory generation. The Toolbox is useful for simulation as well as analyzing results from experiments with real robots.

    标签: kinematics functions Robotics provides

    上传时间: 2013-12-17

    上传用户:cx111111

  • 我所采用的内存管理思想是链表管理思想

    我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为 struct node { char* p int memosize int flag struct node* next } 这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为一个标志量,表示内存块是否被占用。用 1 和 0 来表示被占用和不被占用。next 表示下一个结点的首地址。 内存管理包括一个分配内存的mm_request(unsigned int)函数,一个初始化所要管理的内存的mm_init()函数,一个空闲列表排序函数sort(),一个释放内存的mm_release(void* )函数和一个判断内存是否被占用的IsFree(int)函数。

    标签: 内存管理

    上传时间: 2016-07-06

    上传用户:qunquan

  • package query public class LinkQuery { private Node front private Node vear public Link

    package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("队是空的,无法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }

    标签: private public Node LinkQuery

    上传时间: 2016-07-08

    上传用户:天诚24

  • The Rails Cookbook is is packed with the solutions you need to be a proficient developer with Rails,

    The Rails Cookbook is is packed with the solutions you need to be a proficient developer with Rails, the leading framework for building the new generation of Web 2.0 applications. Recipes range from the basics, like installing Rails and setting up your development environment, to the latest techniques, such as developing RESTful web services. Topics include: . Modeling data with the ActiveRecord library . Setting up views with ActionView and RHTML templates . Building your application s logic into ActionController . Testing and debugging your Rails application . Building responsive web applications using JavaScript and Ajax . Ensuring that your application is security and performs well . Deploying your application with Mongrel and Apache . Using Capistrano to automate deployment . Using the many Rails plugins Working with graphics

    标签: Rails with proficient developer

    上传时间: 2013-12-23

    上传用户:pkkkkp

  • 此软件功能强大 It operates in the highly ompetitive UK banking sector against ...barcode reader to reduce h

    此软件功能强大 It operates in the highly ompetitive UK banking sector against ...barcode reader to reduce human errors in the ordering process. - The ...co-generation and unit- testing of client and server components of the

    标签: ompetitive operates banking against

    上传时间: 2014-11-29

    上传用户:huyiming139

  • Space-Time Processing for CDMA Mobile Communications.Written for research students and design engine

    Space-Time Processing for CDMA Mobile Communications.Written for research students and design engineers, this book addresses many basic questions related to the use of space-time processing in CDMA-based third-generation systems

    标签: Communications Space-Time Processing for

    上传时间: 2014-01-13

    上传用户:cooran

  • 操作系统课程设计_进程调度演示源程序 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct

    操作系统课程设计_进程调度演示源程序 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct node { char name[10] /*进程标识符*/ int prio /*进程优先数*/ int round /*进程时间轮转时间片*/ int cputime /*进程占用CPU时间*/ int needtime /*进程到完成还要的时间*/ int count /*计数器*/ char state /*进程的状态*/ struct node *next /*链指针*/ }PCB

    标签: include typedef stdlib string

    上传时间: 2016-08-09

    上传用户:凤临西北

  • KMP算法的思想一般数据结构书都有讲

    KMP算法的思想一般数据结构书都有讲,KMP算法本身与求next数组的算法很类似,无符号整型数据与整型数据比较大小

    标签: KMP 算法 数据结构

    上传时间: 2016-08-12

    上传用户:lifangyuan12