登录
首页 » Fortran » 9

9

于 2014-01-24 发布 文件大小:1805KB
0 195
下载积分: 1 下载次数: 3

代码说明:

  一些有趣的小程序,包括利用链表和文件对数据进行排序(Some interesting little program, including the use of the list and sort the data file)

文件列表:

10
..\1.txt,206,2013-12-19
..\10.dsp,3199,2013-12-19
..\10.dsw,527,2013-12-19
..\10.f90,714,2013-12-19
..\10.opt,43520,2013-12-29
..\10.plg,773,2013-12-19
..\2.txt,160,2013-12-19
..\Debug
..\.....\10.exe,483363,2013-12-19
..\.....\10.ilk,372860,2013-12-19
..\.....\10.obj,4489,2013-12-19
..\.....\10.pdb,713728,2013-12-19
..\.....\2 (2).exe,471078,2013-12-19
..\.....\2 (2).ilk,375180,2013-12-19
..\.....\2 (2).obj,2546,2013-12-19
..\.....\2 (2).pdb,746496,2013-12-19
..\.....\DF60.PDB,33792,2013-12-19
8
.\8.dsp,3248,2013-12-03
.\8.dsw,525,2013-12-03
.\8.f90,3448,2013-12-06
.\8.opt,43520,2014-01-01
.\8.plg,781,2013-12-06
.\Debug
.\.....\8.exe,483361,2013-12-06
.\.....\8.ilk,384016,2013-12-06
.\.....\8.obj,10460,2013-12-06
.\.....\8.pdb,754688,2013-12-06
.\.....\DF60.PDB,33792,2013-12-06
.\.....\main.exe,544806,2013-12-02
.\.....\main.ilk,425316,2013-12-02
.\.....\main.obj,10011,2013-12-02
.\.....\main.pdb,746496,2013-12-02
.\.....\sub1.obj,2564,2013-12-03
.\sub1.f90,497,2013-12-03
9
.\9.dsp,3187,2013-12-12
.\9.dsw,525,2013-12-12
.\9.f90,1403,2013-12-16
.\9.opt,43520,2013-12-27
.\9.plg,764,2013-12-26
.\Debug
.\.....\9.exe,507937,2013-12-26
.\.....\9.ilk,407492,2013-12-26
.\.....\9.obj,5520,2013-12-26
.\.....\9.pdb,746496,2013-12-26
.\.....\circle.mod,1167,2013-12-26
.\.....\cone.mod,2882,2013-12-26
.\.....\DF60.PDB,33792,2013-12-26

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

发表评论

0 个回复

  • 语法分析正确后就可以求值了,求值时用到一个操作堆栈和操作符堆栈,以及一个算符优先表(存储了运算符之间的优先关系),具体细节可以阅读源码。...
    语法分析正确后就可以求值了,求值时用到一个操作数堆栈和操作符堆栈,以及一个算符优先表(存储了运算符之间的优先关系),具体细节可以阅读源码。-syntax analysis is correct after it evaluates the value used for a number of operations and the operator stacks stack, and an operator priority list (stored Operators relations between the priority), specific details can be read source.
    2023-02-02 19:30:03下载
    积分:1
  • 实现堆栈先入后出的功能
    堆栈是一种执行“先入后出”算法的存储器。数据一个一个顺序的存入(也就是压入——push)存储区中。有一个地址指针总是指向最后一个压入堆栈的数据所在的数据单元,存放这个地址的指针的寄存器叫做堆栈指示器。开始放入数据的单元叫做“栈底”,最后放入的数据的单元叫做“栈顶”。数据一个一个地存入,这个过程叫做“压栈”。在压栈的过程中,每有一个数据压入堆栈,就放在和前一个单元相连的后面的一个单元中,堆栈指示器中的地址自动加1。读取这些数据时,按照堆栈指示器中的地址读取数据,堆栈指示器的地址数自动减1,这个过程叫做“弹出——pop”。如此,就可以实现了“先入后出”的原则。
    2022-02-14 16:34:28下载
    积分:1
  • 以一个Maze(m, n)的长方阵表示迷宫, 迷宫的入口是Maze(1,1), 出口是Maze(m, n), Maze(i,j)等于0表示通路, Maze(i,...
    以一个Maze(m, n)的长方阵表示迷宫, 迷宫的入口是Maze(1,1), 出口是Maze(m, n), Maze(i,j)等于0表示通路, Maze(i,j)等于1表示障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。各个命令以及相关数据的输入格式如下: 输入迷宫:C,接下来一行是m n,其中m是迷宫矩阵行数,n是迷宫矩阵列数,接下来的m行数据是迷宫矩阵,每行n个值,表示一个m*n的迷宫矩阵 求迷宫的一条通路:Q 当输入的命令为E时,程序结束-With a Maze (m, n), said the long square maze, the maze entrance is a Maze (1,1), exports is the Maze (m, n), Maze (i, j) is equal to 0, said channel, Maze (i, j) is equal to 1, said barrier. Designing a program, for any set of the maze, find a path from the entrance to the export, or come to the conclusion there is no path. The various commands and data input format is as follows: Enter the Labyrinth: C, followed by his party mn, where m is the maze of matrix rows, n is a maze of matrix columns, the next line of data is a maze m matrix, each row n- value, indicating an m* n matrix of the labyrinth a maze of pathways: Q when the input command for the E, the end of the process
    2023-04-15 19:50:03下载
    积分:1
  • exceltodb_fcn函实现的功能是从Excel spreadshe读取
    函数ExceltoDB_Fcn实现的功能是从excel表格读取数据到数据库DB中。-Function ExceltoDB_Fcn realize the function is to read data from excel spreadsheet to the database in the DB.
    2022-03-17 18:53:57下载
    积分:1
  • 黑白棋(othello)示例算法,TC实现,提供交互界面功能
    黑白棋(othello)示例算法,TC实现,提供交互界面功能-reversi (othello) algorithm for example, TC achieved, providing interface function
    2022-07-06 17:31:26下载
    积分:1
  • Ex3
    c++实现的静态链表 可以从屏幕输入来构建静态链表 数据结构重要的部分(c++ implemented statically linked list can be input from the screen to the important part to build a static linked list data structure)
    2012-11-27 15:19:25下载
    积分:1
  • 基于VISAUL C++开发的 关键路径求解 属于
    基于VISAUL C++开发的 关键路径求解 属于数据结构-Based on VISAUL C++ Developed to solve the critical path data structure belonging to
    2022-02-26 06:25:12下载
    积分:1
  • 一个用来检查重复性的存储过程
    一个用来检查数据重复性的存储过程-one used to check the repeatability of data storage process
    2022-11-03 15:50:03下载
    积分:1
  • 实时曲线类的改进增加功能: 1)采样存盘和加载 2)演示程序中可以实现图形的打印预览和打印功能,曲线从原点开始...
    实时曲线类的改进增加功能: 1)采样数据存盘和加载 2)演示程序中可以实现图形的打印预览和打印功能,曲线从原点开始-Improvement of real-time curve of increasing the number of functional categories: 1) sampling data to disk and load 2) presentation graphics program can print and print preview function, curve from the origin to start
    2023-04-16 14:55:04下载
    积分:1
  • deduplication
    C语言实现的simhash算法,用于文章查重!(Simhash algorithm C language, and re-check for the article!)
    2020-07-01 01:20:02下载
    积分:1
  • 696516资源总数
  • 106648会员总数
  • 8今日下载