登录
首页 » Windows开发 » 这是一个堆栈的程序

这是一个堆栈的程序

于 2022-05-15 发布 文件大小:3.91 kB
0 285
下载积分: 2 下载次数: 1

代码说明:

这是一个堆栈的程序-This is a stack of procedures

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 一个简单的记事本程序,和windows的差不多,windows有的功能这个程序也有,但还是有不足之处望高手指教...
    一个简单的记事本程序,和windows的差不多,windows有的功能这个程序也有,但还是有不足之处望高手指教-A simple Notepad program, and the windows almost, windows and some features of this procedure have, but there are still inadequacies in expert Zhi Jiao Wang
    2023-01-28 18:30:04下载
    积分:1
  • Make icon for yahoo chat. It s great for you.
    Make icon for yahoo chat. It s great for you.
    2022-10-23 18:20:04下载
    积分:1
  • 给定的字母表A 由26 个小 写英文字母组成A={a,b,…,z}。该字母表产生的升序字符串是指字符串中字母按照从左到 右出现的次序与字母在字母表中出现...
    给定的字母表A 由26 个小 写英文字母组成A={a,b,…,z}。该字母表产生的升序字符串是指字符串中字母按照从左到 右出现的次序与字母在字母表中出现的次序相同,且每个字符最多出现1 次。例如, a,b,ab,bc,xyz 等字符串都是升序字符串。现在对字母表A 产生的所有长度不超过6 的升序 字符串按照字典序排列并编码如下。 1 2 … 26 27 28 … a b … z ab ac … 对于任意长度不超过6 的升序字符串,迅速计算出它在上述字典中的编码。 -Given the alphabet A by the 26 lowercase letters of the alphabet composed of A = (a, b, ..., z). Generated by the alphabet ascending string refers to the letter string in accordance with the order from left to right appears in the alphabet and letters appearing in the same order, and each character appears a maximum of 1 times. For example, a, b, ab, bc, xyz, etc. are ascending string string. Alphabet A have now all the length of not more than 6 strings of ascending order in accordance with the dictionary and coding sequence is as follows. 1 2 ... 26 27 28 ... ab ... z ab ac ... for any length of not more than 6 strings of ascending quickly calculate it in the dictionary encoding.
    2023-06-07 02:40:04下载
    积分:1
  • 聊天室演示程序的源代码程序,界面简单。与客户和美国
    myChat聊天室演示程序源代码,界面简洁。带客户端和服务端,全部程序源码在里面。学习网络编程特别好。-myChat chat room demo program source code, simple interface. With a client and server, all program source code inside. Learning Network program particularly well.
    2023-03-12 10:55:03下载
    积分:1
  • 通过7个实例来讲解opengl的入门知识。
    通过7个实例来讲解opengl的入门知识。-7 through opengl examples to explain the entry of knowledge.
    2022-11-03 16:20:02下载
    积分:1
  • 语音通信控件
    VSession语音通信控件适用于VC++、VB、 dot NET平台、C++Builder、Delphi、易语言及网页应用程序等常见开发平台。您只要先在系统中安装控件(双击开发包中的文件“ 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-02-04 18:05:48下载
    积分:1
  • 一个PE文件查看器,可以查看PE文件的详细信息
    一个PE文件查看器,可以查看PE文件的详细信息-A PE File Viewer, you can view PE file details
    2022-01-25 15:48:44下载
    积分:1
  • 在C语言的学习和编程实践过程中,我用Visual C++6.0编写了一个报时程序,即用定时启动播放器并播放歌曲的办法来实现报时的功能。我认为这个思想可以用在气象
    在C语言的学习和编程实践过程中,我用Visual C++6.0编写了一个报时程序,即用定时启动播放器并播放歌曲的办法来实现报时的功能。我认为这个思想可以用在气象业务的自动控制和数据的自动传输中,程序的实质是:定时启动并控制其它EXE程序。本程序还实现了如金山词霸一样将程序图标添加到系统的托盘中,使程序显得具有一定的专业水准。 第一次使用本软件需预设报时时刻,并选择自己喜欢的播放器和曲目。可以设置8个不同的报时时刻,并可随意取消任意时刻的报时。报时播放2分钟后自动挂断,5分钟后重新报时一次。报时歌曲的格式和曲目任意选择,只要所选折的播放器支持歌曲的格式即可。另外,界面的上方始终显示系统当前的日期和时间。 -err
    2022-09-01 18:00:02下载
    积分:1
  • Description: 采用邻接表表示有向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列,...
    Description: 采用邻接表表示有向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列,边的输入按照边的顶点序号从小到大的顺序排列,如下图的边的输入顺序为0 1,0 2,0 3,1 2,1 3,2 4,3 4共七条边,邻接表的边结点采用头插法。本输入样例中所用的图如下所示: Input Format: 第一行输入两个值,第一个是图中顶点的个数,第二个是图中边的条数 第二行输入各顶点的信息,即输入每个顶点字符 第三行开始输入每条边,每条边的形式为两个顶点的序号,中间以空格隔开,输入完一条边换行 Output format: 首先输出图的顶点信息,输出完毕换行 接着输出图的邻接表,格式为首先输出第一个顶点,接着输出该顶点的所有的临界点的序号,换行,然后输出下一个顶点及邻接点,以此类推 接下来一行输出从图的第一个顶点开始进行深度优先遍历的序列,中间以空格隔开,输出完毕换行 最后一行输出从图的第一个顶点开始进行广度优先遍历的序列,中间以空格隔开,输出完毕换行 -Description: Adjacency list using said directed graph to complete the map creation, map of the depth-first traversal, breadth-first graph traversal operations. In which vertex information is character, the graph vertices in order arranged by character number, while the input side of the vertex according to serial number from small to large order, the following graph of the input side of the order of 0 1,0 2,0 3,1 2,1 3,2 4,3 4 a total of seven edge, the edge-node adjacency list using the first interp
    2022-01-28 23:09:39下载
    积分:1
  • stoking files folders desktops
    stoking files folders desktops
    2022-06-12 05:01:17下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载