搜索资源列表
javajdTwoDi
- 二维数组的鞍点实验,是一个试验的题目,包括源代码和项目分析。是初学者不可多的实例。-two-dimensional array of saddle point experiment is a test of topics, including the source code and project analysis. Beginners are not many examples.
StudentGrades
- 学生成绩评定应用程序,声明并操作二维数组!
erweishuzhu
- java与c#中定义二维数组,使用二维数组的区别
Mouse
- Mouse走迷宫是循环求解的基本类型,我们在二维数组中用2来表示迷宫的墙壁,使用1来表示老鼠的行走路径,并用程序求出从入口到出口的距离。
找出一个二维数组的鞍点
- 找出一个二维数组的鞍点,即该位置上的元素在该行上最大、在该列上最小(也可能不存在鞍点)。,Two-dimensional array to find a saddle point, that is, the position of the elements in the bank' s largest and the smallest in the series (also saddle point may not exist).
MyJavaText
- 用二维数组记录房间管理信息 search all:查询所有房间的状态 in 1202 tangliang:姓名为tangliang的客人入住1202房间 out 1202:1202房间退房 quit:退出程序 说明: 1)该习题主要考察的知识点:控制台输入、循环控制、数组的使用,方法调用等。 2)酒店房间的状态可以用一个二维数组来存放,如果有客人已经入住,则存放该客人的姓名,如果没有客人入住,则存放null值。-Room with a two-dimensional
readfile
- 将文件"F:/ml-data_0/ua.base"按行读出,文件中数据的存放形式 *为用户号(user), 电影号(movie),rate(用户对电影的评分) 时间戳(timestampe). 将文件按行读出,并 将前三列数据解析出来,从文件读到二维数组UIarray[][]中。-read a file in Line from disk to a array
statistics
- * 统计一个二维数组中元素的总数,不为0的元素的个数,以及元素为 * 5和1的元素的个数,并将元素为5和1的总个数占数组中元素总个数 * 的比率计算出来。-statistic
putkey
- 将二维数组中按列读取,统计出每列中相同元素下,的行号。并以该 *列元素为Hashtable中的"关键值"Key,将相关行号保持到vector中,再将该 * vector作为"值"value,完成数据的提取。-extract special elements form a array
java
- 里面包含了很多程序,包括斐波那契数列,还有很多一维数组和二维数组的最大,最小输出。-Which contains a lot of procedures, including the Fibonacci sequence, there are many one-dimensional array and two-dimensional array of maximum and minimum output.
eglish
- 设计一个造成矩阵类Matrix,包含一个元素类型为int的二维数组,分别设计一个静态方法和实例方法把矩阵转置,分别设计静态方法和实例方法实现二个矩阵相加、相乘。重写方法toString(),使其能输出此矩阵。-english.txt
javacode
- 布局与组键大小问题、定义接口与接口的继承、面板的基本使用、事件驱动器的编程、二维数组的输入与显示-Group key layout and the size of the problem, define interfaces and interface inheritance, the basic use of panels, event-driven programming device, two-dimensional array of input and display
HotelMangement
- 一个简单的酒店管理平台,酒店管理系统控制台版本 10层 12房间/层--》二维数组 输入search可以查询全部房间的状态 输入in 输入姓名房间号zhangsan 102显示张三入住102 输入out 102显示退房 输入quit退出系统-A simple hotel management platform, hotel management system console version of the 10-story 12 room/floor- " two-di
Main
- 附件中演示了java中线程的创建和使用,所实现的功能是使用线程实现求取二维数组中的最大值-Java in the annex demonstrates thread creation and use of the function is achieved using two-dimensional array of thread to achieve the maximum strike
JAVAcodefans.net
- 与数组相关的Java例子代码,比如测试数组、划分成绩等级、从方法中返回数组、二分查找法、求二维数组的长度、-Associated with an array of Java code examples, such as testing the array, divided into Grade, from the method returns an array, binary search, find the length of two-dimensional array,
com
- 1.理解数组在Java中是复合数据类型 2.掌握一维、二维数组在Java中的实现方法(创建、实例化、初始化) 3.掌握利用for循环对数组进行遍历的方法 4.掌握java.util.Arrays类当中与数组操作相关的方法 -1. Understanding Arrays in Java, is a complex data type 2. Master the one-dimensional, two-dimensional array in Java, the implemen
arraylist
- java二维数组的特点初始化,定义,使用。-the characteristics of two-dimensional array java initialize, define and use.
(java)
- 走迷宫游戏!计算机解迷宫通常用的是“穷举求解”方法,即从入口出发,顺着某一个方向进行探索,若能走通,则继续往前进;否则沿着原路退回,换一个方向继续探索,直至出口位置,求得一条通路。假如所有可能的通路都探索到则未能到达出口,则所设定的迷宫没有通睡。可以二维数组存储迷宫数据,通常设定入口点的下标为(1,1),出口点的下标为(n,n)。为处理方便起见,可以迷宫的四周加一圈障碍。对于迷宫任一位置,均可约定有东、南、西、北四个方向可通。 -Maze game! Computer Solutions maz
Andian
- /** * 二维数组的鞍点 * (行上最大,列上最小) * 思想:先找到每行上的最大值,保存在一维数组上b[i]。 * b[0]对应的那列最大值的行号为0, * b[1]对应的那列最大值的行号为1 */-/**** Two-dimensional array of the saddle point (the line' s largest and column minimum)* thinking: first find the maximum on e
maopao
- 实现一维数组 二维数组以及自定义输入进行排序 -Achieve one-dimensional array of two-dimensional array, and custom input sort