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

Next

  • To use the ATLTrace tool: Debug an MFC or ATL project select Start from the Debug menu. Selec

    To use the ATLTrace tool: Debug an MFC or ATL project select Start from the Debug menu. Select MFC/ATL Trace Tool in the Tools menu. Expand the tree control list in the Trace List window. Here you will see the running application, any modules within that application, and the trace categories for each module. Customize, for each process, module, and category, which information is displayed in the output window. The Trace level control in the Process group is related to the ATLTRACE2 level only those ATLTRACE2 messages with a level equal to or greater than the setting in the Trace level control will be displayed in the output window. Select Apply to put your settings into effect. You can save your settings, and load them the Next time you debug the application use the Save and Load buttons.

    标签: Debug the ATLTrace project

    上传时间: 2014-01-15

    上传用户:wfl_yy

  • 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *

    编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *Next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩由键盘输入,一共n个节点。 (2).编写函数void print(struct student *head),输出链表,格式每行一个结点,包括学号,姓名,分数。 (3).编写函数struct student * merge(struct student *a,struct student *b), 将已知的a,b两个链表 按学号升序合并,若学号相同则保留成绩高的结点。 (4).编写函数struct student * del(struct student *a,struct student *b),从a链表中删除b链表中有 相同学号的那些结点。 (5).编写main函数,调用函数creat建立2个链表a,b,用print输出俩个链表;调用函数merge升序合并2个 链表,并输出结果;调用函数del实现a-b,并输出结果。 a: 20304,xxxx,75, 20311,yyyy,89 20303,zzzz,62 20307,aaaa,87 20320,bbbb,79 b: 20302,dddd,65 20301,cccc,99 20311,yyyy,87 20323,kkkk,88 20307,aaaa,92 20322,pppp,83

    标签: student struct score long

    上传时间: 2016-04-13

    上传用户:zxc23456789

  • This little Program allows you to send commands to the CardReader (CT-BCS) or to the Card itself. F

    This little Program allows you to send commands to the CardReader (CT-BCS) or to the Card itself. First you will be ask to what Port the Reader is connected (0=COM1, 1=COM2). Then the Class-Byte (CLA), Instruction-Byte (INS), Parameter 1 (P1), Parameter 2 (P2). If wou don愒 want to send Parameter 3 (P3) press Ctrl-d (^d). If you enter a number then you have to the Bytes of the Datafield. After the last Byte of the Datafield is entered the whole APDU is send the replay is displayed. After that you can send the Next APDU.

    标签: CardReader the commands to

    上传时间: 2016-04-23

    上传用户:nanxia

  • This will sample all 8 A/D-channels. The result will be send out via UART1 and can be seen within

    This will sample all 8 A/D-channels. The result will be send out via UART1 and can be seen within any terminal-program (9600 Baud). With each pressed key the Next channel will be converted. No interrupts are used.

    标签: will D-channels sample result

    上传时间: 2016-04-23

    上传用户:wxhwjf

  • 字符匹配中的KMP算法

    字符匹配中的KMP算法,计算Next值实现部分。

    标签: KMP 字符 算法

    上传时间: 2016-04-25

    上传用户:hewenzhi

  • 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

    上传用户:璇珠官人

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

    我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(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

  • 操作系统课程设计_进程调度演示源程序 #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