搜索资源列表
assign4
- 第1部分 该纳契系列:0,1 ,2,3,5,8,13,21,...。开始的条款0和1,并有 每一个成功的财产一词,是前两个条件的总和。编写一个非递归 功能纳契(n)到显示的前n个Fibonacci数。观看停止对样品标志 在最后显示的数字输出(它不是逗号)。编写一个简短的UNIX shell脚本来运行 您的斐波那契程序。 第2部分 编写一个C程序,使用UNIX进程管理工具。您将使用fork()函数 产卵的三子进程。每个子进程将使用execlp()函数来运行
shuxingzi
- 本源代码使用C语言编写,是对编译原理中属性字设计的实现。-Source code using the C language, is compiled character design principles in the property achieved.
doc
- ⑴ 自定义磁盘文件管理的数据结构; ⑵ 能够自由创建、修改、删除文件; ⑶ 文件具有一定自定义的属性; ⑷ 能够显示当前系统文件的状态。-⑴ Custom disk file management data structure ⑵ the freedom to create, modify and delete files ⑶ file has a custom property ⑷ can display the status of the current system fi
visKDTree
- KD树的程序,实现从2维到k维的数据检索。kd树(k维搜索树)是把二叉树搜索树推广到多维数据的一种主存数据结构。kd树是一个二叉树,他的内部节点由一个相关联的属性a和一个值v,它将数据点分成两个部分:a值小于v的部分和a值大于等于v的部分。由于所有的维的属性在层间循环,所以树在不同层上的属性是不同的。-KD tree program, from a 2-D to k-dimensional data retrieval. kd Tree (k-dimensional search tree) i
Parking-lot-problems
- 关于停车场停车问题的管理,利用队列的性质就一辆车进停车场后的停车位,停车时间,需交停车费,以及停车场空闲车位的管理等问题-Questions about the management of parking lot, use queue of property is a car into the parking lot after the parking space, stop time, pay parking spot, and free parking management
Stxllrare
- 建立一个通讯录的类note,该类中的属性有以下几项:String name,phone,MobilePhone,zip,address,Email 分别表示:姓名,固定电话,手机号,邮编,地址,电子邮邮邮件地址。方法有两个:Setnote()给属性赋初值的函数,方法show()显示出来一条通讯记录。 程序源码使用了ObjectInPutStream与ObjectOutPutStream这两个文件输入 -Class note to create an address book, class a
Heap-sort
- 堆排序 堆排序利用了大根堆(或小根堆)堆顶记录的关键字最大(或最小)这一特征,使得在当前无序区中选取最大(或最小)关键字的记录变得简单。 (1)用大根堆排序的基本思想 ① 先将初始文件R[1..n]建成一个大根堆,此堆为初始的无序区 ② 再将关键字最大的记录R[1](即堆顶)和无序区的最后一个记录R[n]交换,由此得到新的无序区R[1..n-1]和有序区R[n],且满足R[1..n-1].keys≤R[n].key ③由于交换后新的根R[1]可能违反堆性质,故应将当前无序区
To-Miss-Our-Children-Time-DP
- /*hdu4001To Miss Our Children Time DP 每块积木有四个参数a(长),b(宽),c(高),d(属性) d==0 它下面的积木为X a>=X.a b>=X.b d==1 a>=X.a b>=X.b&&(a>X.a||b>X.b) d==2 a>X.a&&b>X.b 所以先按长从小到大 再宽从小到大 属性从大到小排序 f[i]表示以第i个积木为顶的已搭积木的最大高度 */-/* Hdu400
Score-backpack
- 分数背包的实现,在基础背包的前提下,增加分数属性,实现背包问题-The realization of the score backpack to increase the score property, under the premise of basic backpack, knapsack problem
libshorttext-1.0.tar
- Introduction LibShortText is an open source tool for short-text classification and analysis. It can handle the classification of, for example, titles, questions, sentences, and short messages. Main features of LibShortText include It is mo
labview
- 本系统由主对话框模块、系统配置模块、仿真算法模块、曲线输出模块等四大模块组成。 主对话框模块:VC++设计界面的优越性更体现在其对话框的设计,所以本程序选择基于对话框的Windows程序(MFC微软基础类风格)。由于VC++6.0提供了大量的控件,用户只需用鼠标将需要的控件拖到用户区的位置即可。 属性表模块:设置了对个对象的属性,每个属性页对应一个对话框,所以设计了四个属性页:CPageDHL、CPageCJ、CPageQK、CPageSmith,这四个属性页类分别对应:单回路控制、串级
Student-information
- 《学生信息管理系统的实现》包括学号号等一系列属性,对其进行增删除和信息修改等作用-" Student Information Management System to achieve" a series of numbers, including school property, increase its role such as delete and modify information
Root-of-AVL-Tree
- 网易云课堂-陈越、何钦铭-数据结构-2016春 PTA-04-树5 Root of AVL Tree 编译器:python2-An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one if at any time they differ by more than on