搜索资源列表
communicate
- 简单链表实现 基本功能: (1)添加记录 先判断链表是否已经存在。若不存在,需首先自动新建一个链表,然后再添加一条或多条通讯记录。 (2)显示记录 显示当前所有记录。 (3)查询记录 按名字查找,并显示该记录。 (4)通信录排序 按姓名的字母顺序排序,涉及到冒泡等排序算法。 (5)删除记录 实现逐条删除和删除全部记录两种功能。 (6)更新记录 修改已存在记录的信息(提示:需首先判断该记录是否存在)。 (7)按关系
disanti
- (1)自选存储结构,输入含n个顶点(用字符表示顶点名称)和e条边的图G; (2)指定任意顶点x为初始顶点,对图G作DFS遍历,输出DFS(深度优先)顶点序列(提示:使用栈实现DFS); (3)指定任意顶点x为初始顶点,对图G作BFS(广度遍历),输出BFS顶点序列(提示:使用队列实现BFS); (5)输入顶点x,查找图G:若存在含x的顶点,则删除该结点及与之相关连的边,并作DFS遍历(执行操作3);否则输出信息“不存在x”; (6)判断图G是否是连通图,输出信息“YES”/“NO
p01
- 1、设计一个程序,其中有3个类,即CBank,BBank和GBank,分别为中国银行类、工商银行类和农业银行类。每个类都包含一个私有数据balance,用于存放储户在该行的存款数,另有一个友元函数total用于计算储户在这3家银行中的总存款数。 2、设计一个程序,其中有2个类,Point类为点类,包含2个私有数据x和y,表示点的坐标,line类为直线类,包含3个私有数据a,b和c,表示直线方程ax+by+c=0。另有一个友元函数dist,用于计算一个点到直线的距离。点与直线之间的距离计算公式
All_info
- Programmed in Visual Basic. This is a my first programm. Created by HiNT & B0n@nz@. Language:russian. No trojans and viruses.
feijipiao
- 系统为客户提供下列服务: 查询航线:根据旅客提供的终点站名输出下列信息:航班号、飞机号、周几飞行,最近一天航班的日期和余票额; 2承办订票业务:如无,则预约登记,排队等候; 3承办退票业务:如遇退票,则查询预约客户; 实现提示:每条航线应包括的信息有:终点站名、航班号、飞机号、飞行日期、乘员定额、余票额、已订票的客户名单和预约名单。-System to provide the following services: query route: according to visito
DigitClock
- 1.输入10HZ的时钟;(提示:对已有kHz频率时钟进行分频) 2.能显示时、分、秒,24小时制; 3.时和分有校正功能; -1. Enter 10HZ clock (Hint: there kHz frequency clock frequency) 2. Can display hours, minutes, seconds, 24-hour system 3. Correction time and divided
Catch_That_Cow
- 上帝王牌 Descr iption Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤ 100,000) on the same number
10_7
- 设计一个方法,删除一个有N个元素的数组A中所有的重复元素,返回仍留在数组A中的元素个数。函数的时间复杂度必须为O(NlogN)(提示:用快速派讯作为一个预处理步骤)。-Design A method, delete A N element of the array of all the elements of A repeat, returns to remain in A number of elements in the array. The time complexity must for
11.2a11.5
- 三角形中的点无法仅仅依靠size参量的来表示,故而从左边和右边分别对三角形的一排排进行标号,依据这两个参数可以确定三角形中的具体的点,另外和正方形不同的地方就是三角形周围可能和六个点有接触,本程序中六个点的选取也是随机的。-Design A method, delete A N element of the array of all the elements of A repeat, returns to remain in A number of elements in the array.
Clock
- 小闹钟,使用简单,循环提醒,自定义提醒内容,时长设定或者时间设定均可-simple clock, easy to use, could alarm in loop, set hint content, set alarm time by exact time or period
Polynomial
- 编程练习题,多项式的计算,内包含C++代码,使用了类、数组。-Using dynamic arrays, implement a Polynomial class with polynomial addition, subtraction, and multiplication. Hint: A variable in a polynomial does nothing but act as a placeholder for the coefficients. Hence, the
DictForGeeks
- DictForGeeks是卓尔写的一款词典软件,支持高度自定义。语言使用python,GUI使用的是tkinter,本来想用wxpython的,但是考虑到很多pythoner没有安装wxpython,还是决定用它自带的GUI了。用法:第一个窗口是单词输入窗口;第二个是提示窗口,支持双击选择;第三个窗口是解释窗口,可以随时编辑;旁边有个“保存”按钮,可以把修改好的保存起来;最下面还有一个提示栏,提示是否保存成功。-DictForGeeks drow write a dictionary softw
Hint
- Matlab code for interconnect design
sgu236.cpp.tar
- sgu problem 236 hint : using binary search on sigma(ci)/sigma(ti) and then check if graph has negetive cycle
fwhint
- fwhint wincontrol hint components
GuessTheNumber
- this a very simple and good game on android. In this game you have to guess a number. App will give you a hint after every try and on winning it will show you how many attempt you have taken to guess the number between 1-1-this is a very simple and g
indicators
- MT4指标,里面包含有邮件预警,价格大字提示等-MT4 PROGRAMME,INCLUDE EMAIL ALARM,PRICE LARGE FONT HINT
P12
- Time类,包含数据成员minute(分)和sec(秒),模拟秒表,每次走一秒,满60秒进一分钟,此时秒又从0开始算。要求输出分和秒的值。(提示:重载单目运算符++)-The time class, contains the data members of the minute (points) and the SEC (SEC), analog stopwatch every time he takes a second, full 60 seconds in a minute. At thi
TP2-3_Ex3.py
- Basic programming in Python: Convert a number of seconds into years, months, days, hours, minutes and seconds (hint: use modulo).
ATM
- 模拟实现银行ATM自动取款机系统。系统至少包括以下几方面的功能: (1)用户登录功能:通过输入用户名和密码,正确时进入系统,错误则提示相应的错误信息并提示重新输入。(程序中可以初始几个用户对象,包括用户的姓名,账号,密码,余额等基本数据) (2)修改密码功能:设置初始密码,当输入错误时提示信息并提示重新输入,当输入的次数超过2次则冻结银行卡,自动退出系统; (3)余额查询功能:显示当前用户银行卡的余额数目; (4)取款功能:通过输入金额,对存款进行扣款工作,当输入的金额大于余额时
