摘要:
1.在数组中查找指定元素 import java.util.ArrayList; public class Main { public static void main(String[] args) { ArrayList objArray = new ArrayList(); ArrayList 阅读全文
摘要:
今天在写数据结构实验四的报告 阅读全文
摘要:
1.删除数组元素 Java 的数组是固定长度的,无法直接删除,我们可以通过创建一个新数组,把原始数组中要保留的元素放到新数组中即可: import java.util.Arrays; public class RunoobTest { public static void main(String[] 阅读全文
摘要:
今天有本专业的交流会,对java web技术有了更深刻的理解,并且看了数据库的增删改查案例。 阅读全文
摘要:
今天看了人口普查系统的代码。 阅读全文
摘要:
1.数组获取最大和最小值 import java.util.Arrays; import java.util.Collections; public class Main { public static void main(String[] args) { Integer[] numbers = { 阅读全文
摘要:
今天写了建模的实验报告 阅读全文
摘要:
编程实现:以邻接表的存储方式,创建一个有向网,顶点为字符型。 #include #include using namespace std; const int N=1010; struct arc{ int e; arc* next; int w; }; struct { int n,m; char 阅读全文
摘要:
编程实现:以邻接矩阵的存储方式,创建一个有向图,顶点为字符型。 #include #include using namespace std; const int N=1010; struct { int n,m; char vers[N]; bool arcs[N][N]; }gra; int fi 阅读全文
摘要:
1.获取数组长度 public class Main { public static void main(String args[]) { String[][] data = new String[2][5];//利用堆创建一个二维数组 System.out.println("第一维数组长度: " 阅读全文