解题思路:
注意事项:注意二位数组边界,内外边界
参考代码:
import java.util.*; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int m = scanner.nextInt(); int n = scanner.nextInt(); int[][] arr1 = new int[m][n]; for(int i = 0;i<m;i++){ for(int j = 0;j<n;j++){ arr1[i][j] = scanner.nextInt(); } } int r = scanner.nextInt(); int s = scanner.nextInt(); int[][] arr2 = new int[r][s]; for(int i = 0;i<r;i++){ for(int j = 0;j<s;j++){ arr2[i][j] = scanner.nextInt(); } } int sum = Integer.MAX_VALUE; int ans1 = 0,ans2 = 0; for(int i = 0;i<m-r+1;i++){ for(int j = 0;j<n-s+1;j++){ int temp = 0; for(int y = 0;y<r;y++){ for(int x = 0;x<s;x++){ temp += Math.abs(arr2[y][x]-arr1[i+y][j+x]); } } if(temp<sum){ sum = temp; ans1 = i; ans2 = j; } } } for(int i = 0;i<r;i++){ for(int j = 0;j<s;j++){ System.out.print(arr1[i+ans1][j+ans2]+" "); } System.out.println(); } } }
0.0分
0 人评分
十->二进制转换 (C++代码)(零和负数需要特殊处理)浏览:1135 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:549 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:695 |
【回文数(二)】 (C++代码)浏览:932 |
C二级辅导-统计字符 (C语言代码)浏览:528 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:1072 |
三角形 (C++代码)递推浏览:825 |
WU-C语言程序设计教程(第三版)课后习题12.1 (C++代码)浏览:1024 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:701 |
1157题解浏览:769 |