Java Jagged Array

前端 未结 2 1202
再見小時候
再見小時候 2020-11-28 15:21

Our homework assignment asks us to use a jagged array to store the values of a two dimensional boolean matrix. Is there a built in java class for the jagged array or am I go

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 15:46

    It actually sounds like you might want a sparse matrix implementation. You can get much better performance out of it if you are having to modify the matrix. Array copy operations are pretty expensive. Sparse matrices / arrays in Java

提交回复
热议问题