搜索资源列表
WalkInTheMazeAS2
- 小迷宫,利用vc++编的,利用数组实现,有动画效果。-small maze, using vc series, the use of the array, and it is animation.
zhaoyingN!
- 用数组实现的N!算法,可以算2000多,希望大家喜欢-achieve with the array of N! Algorithms can count more than 2,000, hope you like
lwork
- 一个学生成绩编辑程序,本程序设计优缺点: 采用数组实现各项功能,简洁易懂,便于操作。功能包括: 1. 建立文件:能建立多个文件保存不同数据;载入:可从现有任意文件中载入数据;保存:可将输入的数据保存到现有文件中,建议新建文件,否则会覆盖原文件中数据。 2. 增加或删除学生数据,按学号查学生姓名、成绩(包括平均成绩),求总平均成绩和各科平均成绩。 3. 有各种排序功能:按学号排序、平均成绩排序、某门课成绩排序。 4. 不及格类统计:统计考试有不及格的学生、指定课程有不及格的学生
3
- 里面包含三个源码,1,两种排序方法及折半查找,2,数组实现两个矩阵相乘。3,找鞍点(我源码有限,也只能上传一些简单一点的)
inform
- 本程序是学生基本信息管理系统,主要是用面向对象类的思想,通过结构体数组,实现 软件协会信息的建立,查找,插入,删除,修改,输出等功能。
jtfaxt
- 主要用结构体数组实现,用结构体表示每项记录,数据为:编号、车牌号、车主姓名、性别、违章情况、违章时间、地点。 设计各个函数,分别实现以下功能: (1)录入:完成违章信息的输入; (2)删除:完成违章信息的删除; (3)修改:允许对已经录入的数据重新进行编辑、修改; (4)显示:显示所有违章的信息; (5)查询: a. 按车牌号查找违章记录,如果记录超过5次打印警告信息; b. 按车主姓名查找违章记录;
Matrix
- 矩阵计算程序,实现矩阵的常规计算,矩阵类似于数组形式访问和计算。
lab3_1
- a) 分别以左和右对齐方式输出整数,域宽为12; b) 以八进制、十进制、十六进制输入/输出整数; c) 实现浮点数的指数格式和定点格式的输入/输出,并指定精度,按实际情况进行调整,直到满意为止; d) 把字符串读入字符型数组变量中,从键盘输入,要求输入串的空格也全部读入,以回车换行符结束; -a) to the left and right, respectively, the alignment of the output integer, the domain width
Dynamic_Array
- 用C#实现动态数组的几种方法及其性能比较。-With C# Realize several dynamic array methods and their performance comparison.
ConsoleApplication1
- c#排序算法用类Icomparable实现数组排序!-c#排序算法用类Icomparable实现数组排序
xuanze
- 本程序通过选择排序算法的特点,实现数组的选择排序.. 大家进行参考. -This procedure by selecting the characteristics of sorting algorithm, the realization of the choice of array to sort. . We conduct reference.
lianbiao
- 数组采用有序顺序表进行各种运算。并实现各种功能,如删除一个数。-Ordered arrays using a variety of computing the order of the table. And achieve a variety of functions, such as to delete a number.
5080309283_1
- 建立一个队列,实现先进先出。使用的是数组,而不是链表。-The establishment of a queue, to achieve FIFO. Using an array instead of linked lists.
perm
- C#实现的数组全排列,并且可以把每个排列输出-C# perm
3-2
- 利用动态数组实现矩阵的加法和减法运算-The use of dynamic array realization of matrix addition and subtraction
C18
- Windows应用程序中的数据控件 BindingSourceArray 绑定数组数据源的案例。 BindingSourceDataSet 绑定DataSet数据源的案例。 DataGridViewEdit Windows中的数据显示控件实现编辑的案例。 DataGridViewRowCol 读取数据控件中的行和列的案例。 DataGridViewSample 数据视图使用案例。 DataGridViewWebService 数据视图与Web服务结合
byte
- 在写C#TCP通信程序时,发送数据时,只能发送byte数组,处理起来比较麻烦不说,如果是和VC6.0等写的程序通信的话,很多的都是传送结构体,在VC6.0中可以很方便的把一个char[]数组转换为一个结构体,而在C#却不能直接把byte数组转换为结构体,要在C#中发送结构体,可以按以下方法实现: -Writing C# TCP communication program, send data, send the byte array can only handle up and not s
cards
- 用数组实现一个应用程序,它负责在一个扑克牌游戏中发牌,应用程序显示一个WPF窗体,它模拟向4个玩家发一副扑克牌。-Using arrays to achieve an application, which is responsible for the licensing of a poker game, the application displays a WPF form, which simulates the four players sent a poker
Integer-screening
- C#数组实现筛选出小于等于任意指定数且可被3、7整除的正整数。-C# array implementation out less than or equal to any specified number and positive integer divisible by 3, 7.
YUANDAIMA
- 用二维数组实现矩阵转置,希望初学者能学到一些东西-#include <stdio.h> #define ROW 3 #define COL 4 main() { int matrixA[ROW][COL],matrixB[COL][ROW] int i,j clrscr() printf( Enter elements of the matrixA, ) printf( d* d:\n ,ROW,COL) for( i=0 i<