MCPcopy Create free account
hub / github.com/LjyYano/LeetCode / backtrack

Method backtrack

src/main/java/L0077_Combinations.java:38–60  ·  view source on GitHub ↗

回溯方法 @param result 存储所有组合的结果列表 @param current 当前正在构建的组合 @param start 当前可选的起始数字 @param n 最大的数字 @param k 还需要选择的数字个数

(List<List<Integer>> result, List<Integer> current, int start, int n, int k)

Source from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers 1

combineMethod · 0.95

Calls 2

addMethod · 0.45
removeMethod · 0.45

Tested by

no test coverage detected