新人选手,初学java,图里是这么教的方法命名规则:
但是leetcode里的这些方法,都是这样的
public class Solution {
public List<List<Integer>> levelOrder(TreeNode root) {
……
}
这个levelOrder前面这个 List<List<Integer>>属于什么?
还有就是 List<List<Integer>>是什么意思?为什么外面又套了一个list?我看还有三个list套在一起的, List<List<List<Integer>>>,这又是什么意思呢?
新手码渣,往前辈们指点迷津!
迷茫2017-04-18 10:34:10
List<List<Integer>>
유형은 일반 유형
참고 자료 제공:
http://www.cnblogs.com/panjun...
http://www.infoq.com/cn/artic...
http://www.cnblogs.com/lwbqqy...
PHPz2017-04-18 10:34:10
리스트는 특정 유형의 객체를 저장하는 일반 클래스이자 컨테이너입니다. List<Integer>는 Integer 객체를 저장할 수 있는 선형 목록입니다. List>는 선형 목록이고, 각 요소는 위의 List