英文: generic misunderstanding when tying to add to list 问题 以下是您要求的代码部分的中文翻译: 这是一个通配符问题。 我的目的是创建一个包含具有...
相同值的单元格数量使用广度优先搜索
英文: Number of cells with same value Using bfs 问题 public int find_cells(int[][] matrix, int row, int ...
不兼容的类型:char[] 无法转换为CharSequence。
英文: incompatible types: char[] cannot be converted to CharSequence 问题 class Word { String data; bool...
IndexMinPQ的目的是Sedgwick和Wayne的算法4。
英文: IndexMinPQ purpose algorithms 4 by Sedgwick and Wayne 问题 我对IndexMinPQ数据结构的用途不太清楚。这里提供了一个实现:Index...
图传递性 Java
英文: Graph Transitivity Java 问题 我正在使用自定义图形来表示一组数据,如图所示: 我已经创建了几种方法,允许我填充这个结构。这种表示方法的主要目标是能够快速判断特定路径是否...
使用Java通过堆栈(LinkedList)实现的表达式树如下,但是它存在错误:
英文: Implemented expression tree as follows in java using stacks(LinkedList), but it has errors 问题 以下...
如何创建一个数组的ArrayList
英文: How to creat an ArrayList of array 问题 我想在Java中创建一个数组列表的数组。 所以我这样声明它: ArrayList arr = new ArrayLi...
为什么这会给我一个空指针异常?
英文: Why is this giving me NullPointerException? 问题 我正在创建一个逐字回文("yes I can, can I yes?"),如下所示...
在Java中是否本地实现了不相交集合数据结构?
英文: Is the disjoint-set data structure implemented natively in Java? 问题 我在Java中搜索了不相交集数据结构的本地实现。但我没有...
比较二维数组中的元素,并将其存储在一个包含元组的映射中。
英文: Compare elements of 2d Array to each-other and store this in a map with tuple 问题 import java.uti...
29