搜索资源列表
Mysplit
- 种子填充算法用来在封闭曲线形成的环中填充某中颜色,在这里我们只填充黑色。种子填充其实上是图形学中的算法,其原理是:准备一个堆栈,先将要填充的点push进堆栈中;以后,每pop出一个点,将该点涂成黑色,然后按左上右下的顺序查看它的四个相邻点,若为白(表示还没有填充),则将该邻点push进栈。一直循环,直到堆栈为空。此时,区域内所有的点都被涂成了黑色。这里,我们自己定义了一些堆栈的数据结构和操作,实现了堆栈的初始化、push、pop、判断是否为空、及析构。 -seed filling algorit
bi_tree
- 本程序包括三个功能:按前序遍历的方式创建二叉树、前序遍历显示二叉树、完全二叉树的判断。其中,#表示空树-the procedures include three functions : preorder ago by the creation of binary tree, the former preorder shows binary tree, complete binary tree judgment. Of these, # empty tree
acfl
- 给定一个上下文无关文法的n条产生式规则,编程判断该文法对应的语言是否为空。若为空,则输出yes,否则输出no。-given a context-free grammar n production rules, the judgment of the programming language grammar counterparts whether empty. If empty, the output yes, or no output.
学生通讯录系统
- 一个学生通讯录系统 用C++做的 有以下功能:能查看所有成员的名单。 能增加、删除、修改一位成员的资料。 能查询成员资料。 能清空通讯录。,Address book system with a student C++ to do the following functions: can view a list of all members. Can add, delete, modify a member' s information. Members to query information
dengluxitong
- 输入用户名,密码 进行登录 b.只有用户名、密码都不为空的情况下,提交页面(使用Javascr ipt脚本验证) c.如果当前页面是由checklogin.jsp重定向过来的,进行相关信息的显示 c.1 用户名不存在 c.2 密码错误 c.3 用户超过5次登录,锁定该页面,禁止用户登录30分钟后,开放(可以客户端实现[比较麻烦]/也可服务器端实现[容易]) -Enter the user name, password to
T2_USB_IN
- CY7C68013A提供的端口FIFO的读写操作,与普通FIFO读写操作方式一样。CY7C68013A为每个端口提供了“空”标志、“满”标志和“ 可编程级”标志。FPGA检测这些信号,用于控制读写的过程-CY7C68013A available port FIFO read and write operations, and general FIFO read and write operations the same way. CY7C68013A for each port provide
abc
- 关于数据结构入门的源码关于数据结构入门的源码-#include<iostream> using namespace std template<class T> class list{ private: int n int max_size T*data public: list(int max_list_size=10) ~list(){delete [] data } bool empty
zhancaozuo
- 栈操作的正确性 Time Limit:1000 ms | Memory 对输入序列执行一组栈操作,判断操作是否正确。 Input 每行是一个测试用例,表示一个操作序列。操作序列由P和Q两个符号组成,P表示入栈,Q表示出栈。操作序列长度不超过1000。 Output 对每个操作序列,若操作序列正确,即操作结束时栈中刚好为空,则输出Y; 若操作序列有错误,如栈空时执行出栈操作,或操作结束时栈中不空,则输出N。 -The correctness of the
HumanSystem
- 根据企业对人事管理的要求,本系统可以实现以下目标: 操作简单方便、界面简洁美观。 在查看员工信息时,可以对当前员工的家庭情况、培训情况进行添加、修改、删除的操作。 方便快捷的全方位数据查询。 按照指定的条件对员工进行统计。 可以将员工信息以表格的形式插入到Word文档中。 实现数据库的备份、还原及清空的操作。 由于该系统的使用对象较多,要有较好
fifo_internet
- 一个同步FIFO的例子。通过读写指针控制FIFO的空和满-A synchronous FIFO example through reading and writing pointer control FIFO empty and full
CooperativeCommunication
- 1. 研究空时分组码的编译码原理及算法; 2. 研究了几种不同的协作分集系统模型和协作分集协议; 3. 将空时分组码编译码器与协同通信用硬件描述语言Verilog实现,并在ISE集成环境中综合仿真,结果正确后下载到FPGA电路板上; 4. 用示波器观察输出数据是否正确,验证空时分组码协同通信的性能。 -1. Decoding Principles of space-time block codes and algorithms 2. Study several differen
not-null-check
- c#进行非空验证,有助于登录或填写信息时数据字段为空时报异常.-The c# non-empty validation helps Login or fill out the information when the data field is empty Times abnormal.
linkqueue
- 链式队列是一种特殊的线性表,它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作。进行插入操作的端称为队尾,进行删除操作的端称为队头。队列中没有元素时,称为空队列。一般队列的存储结构是顺序存储,当队列的存储结构是链式存储结构时(即队列中每个元素都包含一个指向其后继的指针,最后一个元素指针为null),就是链式队列,和链栈同理。-A queue is a special kind of linear form, it only allows the front end
ps2
- ps2接口是目前最常见的鼠标接口,最初是IBM公司的专利,俗称“小口”。这是一种鼠标和键盘的专用接口,是一种6针的圆型接口。但鼠标为空脚。PS/2接口的传输速率比COM接口稍快一些,而且是ATX主板的标准接口,是目前应用最为广只使用其中的4针传输数据和供电,其余2个泛的鼠标接口之一-PS2 interface is by far the most common mouse interfaces, the original is IBM s patent, commonly known as "s
Desktopf
- 从输入的二叉排序树中删除一个结点。通过考虑该节点分别是叶节点,或只有左子树或右子树,或左右子树全不为空的状况-From the input binary sort tree to remove a node. By considering the node is a leaf node, respectively, or only a left subtree or right subtree, or left and right subtrees whole situation is not
build-empty-linear-form
- 数据结构空线性表的建立,并附上基本功能:初始化、插入、删除(严格)-Build data structures empty linear form, attach basic functions: initialization, insert, delete (strict)
Python
- Python学习笔记第二版 pdf电子书,全书介绍了Python基础环境,内置类型、表达式、函数、迭代器、模块类和异常等方面的知识。只所以取名为学习笔记,主要是不适合做⼊ 入⻔ 门课程使⽤ 用,所有内容都假定读者有 "⾜ 足够" 的编程基矗我原本也没打算把它写成正式读物,最主要的⽤ 用途还是个⼈ 人备忘罢了。-Python study notes pdf ebook second edition, the book intr
rstest
- 导入dib的空文件,可以省一些时间-Dib' s import empty file
queue
- 这个程序的功能是实现链式队列的基本操作,包括入队,出队,销毁,清空。初学者可以看看。-The functionality of this program is to realize the basic operations of chain queue, including team, the team, to destroy, to empty.Beginners can look at.
1
- this is c example . if you see my c code , you are surprise. because this is empty source. haha joke. see it that
