这是本文档旧的修订版!
下载:数据与字符串
package cn.edu.bjut.chapter5; public class Array1DTester { public static void main(String[] args) { int a[] = new int[5]; for (int i = 0; i < a.length; i++) { a[i] = i; } for (int i = a.length - 1; i >= 0; i--) { System.out.println("a[" + i + "] = " + a[i]); } int[] b = new int[] { 4, 6, 8, 32 }; for (int i = 0; i < b.length; i++) { System.out.println("b[" + i + "] = " + b[i]); } } }
package cn.edu.bjut.chapter5; public class MinMax { public static void main(String[] args) { int maxVal, submaxVal; int a[] = { 8, 50, 20, 7, 81, 55, 76, 93 }; if (a[0] > a[1]) { maxVal = a[0]; submaxVal = a[1]; } else { maxVal = a[1]; submaxVal = a[0]; } for (int i = 2; i < a.length; i++) { if (a[i] > maxVal) { submaxVal = maxVal; maxVal = a[i]; } else if (a[i] > submaxVal) { submaxVal = a[i]; } } System.out.println(maxVal + "\t" + submaxVal); } }
package cn.edu.bjut.chapter5; public class ExpandArray { static int[] expand(int[] m) { int[] n = new int[m.length * 2]; for (int j = 0; j < m.length; j++) { n[j] = m[j]; } return n; } static int[] expand2(int[] m) { int[] n = new int[m.length * 2]; System.arraycopy(m, 0, n, 0, m.length); return n; } public static void main(String[] args) { int[] a = new int[] { 4, 6, 8, 32 }; int[] b = expand(a); int[] c = expand2(a); for (int i = 0; i < b.length; i++) { System.out.println(b[i]); } for (int i = 0; i < c.length; i++) { System.out.println(c[i]); } } }
package cn.edu.bjut.chapter5; public class ArrayAssignment { public static void main(String[] args) { int[] a = { 2, 5, 8, 25, 36 }; int[] b = { 90, 3, 9 }; System.out.println(a.length + "\t" + b.length); b = a; System.out.println(a.length + "\t" + b.length); for (int i = 0; i < a.length; i++) { System.out.print(a[i] + " "); } System.out.println(); for (int i = 0; i < b.length; i++) { System.out.print(b[i] + " "); } System.out.println(); } }
package cn.edu.bjut.chapter5; public class ArrayPassPara { public static int add(int a, int b) { a += 5; b += 6; return (a + b); } public static void add(int[] a) { for (int i = 0; i < a.length; i++) { a[i] += 2; } } public static void main(String[] args) { int[] a = new int[] { 4, 6, 8, 32 }; add(a[0], a[1]); for (int i = 0; i < a.length; i++) { System.out.println(a[i]); } add(a); for (int i = 0; i < a.length; i++) { System.out.println(a[i]); } } }
package cn.edu.bjut.chapter5; public class Student { private String name; private char gender; private int age; private double[] scores; public Student(String name, char gender, int age, double[] scores) { this.name = name; this.gender = gender; this.age = age; this.scores = scores; } public String getName() { return name; } public void setName(String name) { this.name = name; } public char getGender() { return gender; } public void setGender(char gender) { this.gender = gender; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public double[] getScores() { return scores; } public void setScores(double[] scores) { this.scores = scores; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(name + "\t" + gender + "\t" + age); for (int i = 0; i < scores.length; i++) { sb.append("\t" + scores[i]); } return sb.toString(); } }
package cn.edu.bjut.chapter5; public class ObjectArrayTester { public static void modifyAge(Student stu) { stu.setAge(21); } public static void main(String[] args) { Student[] students = new Student[3]; students[0] = new Student("li", 'F', 19, new double[] {89, 86, 69}); students[1] = new Student("he", 'M', 18, new double[] {90, 83, 76}); students[2] = new Student("zhang", 'M', 20, new double[] {78, 91, 80}); for (int i = 0; i < students.length; i++) { System.out.println(students[i]); } modifyAge(students[0]); System.out.println(students[0]); } }
package cn.edu.bjut.chapter5; public class Matrix { private double[][] values; private int nrows, ncols; public Matrix(int nrows, int ncols) { this.nrows = nrows; this.ncols = ncols; this.values = new double[nrows][ncols]; } public Matrix(double[][] values) { this.nrows = values.length; this.ncols = values[0].length; this.values = values; } public Matrix add(Matrix mat) { if (nrows != mat.nrows || ncols != mat.ncols) { return null; } double[][] newValues = new double[nrows][ncols]; for (int i = 0; i < nrows; i++) { for (int j = 0; j < ncols; j++) { newValues[i][j] = values[i][j] + mat.values[i][j]; } } return (new Matrix(newValues)); } public Matrix substract(Matrix mat) { if (nrows != mat.nrows || ncols != mat.ncols) { return null; } double[][] newValues = new double[nrows][ncols]; for (int i = 0; i < nrows; i++) { for (int j = 0; j < ncols; j++) { newValues[i][j] = values[i][j] - mat.values[i][j]; } } return (new Matrix(newValues)); } public Matrix multiplicate(Matrix mat) { if (ncols != mat.nrows) { return null; } double[][] newValues = new double[nrows][mat.ncols]; for (int i = 0; i < nrows; i++) { for (int j = 0; j < mat.ncols; j++) { double sum = 0; for (int k = 0; k < ncols; k++) { sum += values[i][k] * mat.values[k][j]; } newValues[i][j] = sum; } } return (new Matrix(newValues)); } @Override public String toString() { StringBuilder sb = new StringBuilder(); for (int i = 0; i < nrows; i++) { for (int j = 0; j < ncols; j++) { sb.append("\t" + values[i][j]); } sb.append("\n"); } return sb.toString(); } }
package cn.edu.bjut.chapter5; public class MatrixTester { public static void main(String[] args) { double[][] values1 = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } }; double[][] values2 = { { 9, 8, 7 }, { 6, 5, 4 }, { 3, 2, 1 } }; Matrix mat1 = new Matrix(values1); Matrix mat2 = new Matrix(values2); System.out.println("matrix1: "); System.out.println(mat1); System.out.println("matrix2: "); System.out.println(mat2); System.out.println("matrix1 + matrix2: "); System.out.println(mat1.add(mat2)); System.out.println("matrix1 - matrix2: "); System.out.println(mat1.substract(mat2)); System.out.println("matrix1 * matrix2: "); System.out.println(mat1.multiplicate(mat2)); } }
package cn.edu.bjut.chapter5; public class MainTester { public static void main(String[] args) { int[] a = new int[args.length]; for (int i = 0; i < args.length; i++) { a[i] = Integer.parseInt(args[i]); } int sum = 0; for (int i = 0; i < a.length; i++) { sum += a[i]; } System.out.println(sum); } }
专利申请号(Application No) | 申请日期(Application Date) | IPC分类号 | CPC分类号 | Position | Value |
---|---|---|---|---|---|
14725838 | 2015-05-29 | A23B 5/04, A23B 5/045 | A23B 5/04, A23B 5/45, A23L 15/20 | F | I |
14814205 | 2015-07-30 | A61H 33/00, C01B 33/107, E04B 1/84 | A61H 33/6063, A61H 33/6042 | F | I |
15189723 | 2016-06-22 | D04B 1/00 | B65H2301/44514, C01B 33/1071, F16F 15/2, H01L 27/14641 | L | A |
14711011 | 2015-05-13 | B32B 17/10, B32B 27/32 | G06F 3/485 | L | A |
14515267 | 2014-10-15 | F16F 15/02, G09G 5/34, G06F 3/0485 | A01B 15/06, A01B 15/06 | L | I |
评论