47.排序II 1.跟46题一样只不过加一个树层去重 class Solution(object):def backtracking(self,nums,path,result,used):# recursion stopif len(path) == len(nums):# collect our setresult.append(path[:])return for i in range(
Day26 - Day30 Day26(1999年Text3) Very few writers on the subject have explored this distinction – indeed, contradiction – which goes to the heart of what is wrong with the campaign to put computers
1. 单元测试Junit 1.1 什么是单元测试?(掌握) 1.2 Junit的特点?(掌握) 1.3 基本用法:(掌握) 实际开发中单元测试的使用方式(掌握) public class TestDemo {public int addMethod(int a,int b){return a+b;}} public class Main {@Testpublic
目录 引言一、热浪二、信使三、香甜的黄油四、最小花费 引言 今天刷题刷的是单源最短路问题,也就是图论中的搜索的问题,这个问题还是非常常考的,其实模板只要背熟了,理解到位了,剩下的主要是建图和一些细节的问题,除了背模板理解原理,再就是多刷题、多见题了,加油! 一、热浪 标签:单源最短路 思路: s p f a spfa spfa算法,可参考博客最短路问题,这种单源最短路