PoeticalJustice

导航

2017年10月4日 #

矩阵运算(二维数组)

摘要: 1 package cn.bjsxt.array2; 2 /** 3 * 4 * 矩阵加法 5 * 乘法 6 * @author Administrator 7 * 8 */ 9 public class Matrix { 10 public static void print(int[][] c){ 11 //打印矩阵 12 ... 阅读全文

posted @ 2017-10-04 17:54 PoeticalJustice 阅读(828) 评论(0) 推荐(0) 编辑

练习:自己写一个容器ArrayList集合 一一数组综合练习

摘要: 1 package cn.bjsxt.myCollection; 2 3 import java.util.Arrays; 4 5 /** 6 * 天下文章一大抄,看你会抄不会抄。 7 * 模拟Stringbuilder 写一个容器 8 * 参照源码 9 * 10 * 11 * @author Administrator 12 * ... 阅读全文

posted @ 2017-10-04 16:53 PoeticalJustice 阅读(402) 评论(0) 推荐(0) 编辑