前台 function encode64(input) { var output = ""; var base = new Base64(); var output = base.encode(input); return output; } function Base64() { // private property _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=&q…
问题来源于leetcode上的两道题 Path Sum I && II,分别写了两个dfs. void dfs(TreeNode node , int sum , ArrayList<Integer> curPath) void dfs(TreeNode node , int sum , boolean ifExist) 问题:在1号中我可以在方法中修改curPath,在结束函数调用时,变量修改仍然生效. 在2号问题中,我即使在函数中修改了ifExist,结束函数调用时,变…