联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 数据结构(123) 

[数据结构] python-data-structure-cn

Introduction 1.介绍 1.1.目标 1.2.快速开始 1.3.什么是计算机科学 1.4.什么是编程 1.5.为什么要学习数据结构和抽象数据类型 1.6.为什么要学习算法 1.7.回顾Python基础 2.算法分析 2.1.目标 2.2.什么是算法分析 2.3.大O符号 2.4.一个乱序字符串检查的例子 2.5.Python数据结构的性能 2.6.列表 2.7.字典 2.8.总结 3.基本数据结构 3.1.目标 3.2.什么是线性数据结构 3.3.什么是栈 3.4.栈的抽象数据类型 3.5.Python实现栈 3.6.简单括号匹配 3.7.符号匹配 3.8.十进制转换成二进制 3.9.中缀前缀和后缀表达式 3.10.什么是队列 3.11.队列抽象数据类型 3.12.Python实现队列 3.13.模拟:烫手山芋 3.14.模拟:打印机 3.15.什么是Deque 3.16.Deque抽象数据类型 3.17.Python实现Deque 3.18.回文检查 3.19.列表 3.20.无序列表抽象数据类型 3.21.实现无序列表:链表 3.22.有序列表抽象数据结构 3.23.实现有序列表 3.24.总结 4.递归 4.1.目标 4.2.什么是递归 4.3.计算整数列表和 4.4.递归的三定律 4.5.整数转换为任意进制字符串 4.6.栈帧:实现递归 4.7.介绍:可视化递归 4.8.谢尔宾斯基三角形 4.10.汉诺塔游戏 4.11.探索迷宫 4.12.动态规划 4.13.总结 5.排序和搜索
Classic books on Python data structure (2020-07-14, Python, 5071KB, 下载0次)

http://www.pudn.com/Download/item/id/1594720047642356.html

[数据结构] training

某企业将挑选一批新员工进行培训,遵循以下规则: 将所有员工排成1个圈,从12点位置开始编号为1,逆时钟方向编号到N,第N号员工在第1号的左手边 两位培训官开始选择员工,培训官甲从1号开始逆时钟方向数,数到第k号员工停下;培训官乙从N号开始顺时钟方向数,数到第m号员工停下 被选中的第k号和第m号员工不是同一人,两人同时送往制造培训 被选中的第k号和第m号员工是同一人,将一人送往检测培训 接着继续往下数,培训官甲同样数到k就停止,培训官乙同样数到m就停止,重复上述的选择 输入 在一行输入一个3个整数n、k、m,3个参数互不相等,6<n<100,1<k<10,1<m<10, 分别表示n个员工,培训官甲每次数k个,培训官乙每次数m个, 输出 请用队列实现上述选择,并按选择顺序每行分别输出先甲后乙的选择结果
A enterprise will choose a batch of new staff training, follow the following rules: Will all employees lined up in a circle, from 12 o clock position began to Numbers for 1, counter-clockwise direction Numbers to N, N th staff in the no. 1 on the left hand side Two training officer begin to choose employees, training officer from a first counter-clockwise direction number, number to the first k, staff stop Training officer b, beginning the clock from N direction number, number to the first m employees, stop Of the selected the first k number and the first m workers are not the same number, two men also sent to manufacture training Of the selected the first k number and the first m, is the same person employees, will be a man sent to test training Then continue to count, training the same number to k a stop, training officer b also count to m stops, and repeat the choice input In a line of input a three integer n, k, m, three parameters are equal, 6 < n < 100, 1 < < < 1 (2011-10-25, Visual C++, 1048KB, 下载4次)

http://www.pudn.com/Download/item/id/1679789.html

[数据结构] a

企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10 ;利润高    于10万元,低于20万元时,低于10万元的部分按10 提成,高于10万元的部分,可可提    成7.5 ;20万到40万之间时,高于20万元的部分,可提成5 ;40万到60万之间时高于    40万元的部分,可提成3 ;60万到100万之间时,高于60万元的部分,可提成1.5 ,高于    100万元时,超过100万元的部分按1 提成,从键盘输入当月利润I,求应发放奖金总数? 程序分析:请利用数轴来分界,定位。注意定义时需把奖金定义成长整型。      
Corporate bonuses based on profit commission. Profit (I) less than or equal to 10 million, money can be raised 10 high-profit $ 100,000, less than 20 million, less than 10 million part of the 10 commission, more than 10 million parts, put cocoa To 7.5 200000-400000 between, more than 20 million part, can be 5 commission 400000-600000 is higher than between Part of $ 400,000, can be 3 commission 600000-1000000 between, more than 60 million part, can commission of 1.5 , higher than the 1 million yuan, more than 1 million parts by 1 commission, monthly profits from the keyboard input I, the total demand to be bonuses? Program analysis: Please use a few axes to boundaries, location. Note that the definition needs to grow up bonus define an integer. (2011-10-14, C/C++, 2KB, 下载2次)

http://www.pudn.com/Download/item/id/1668441.html
总计:123