花了两个小时读明白题,五分钟写代码 class Solution { public int[][] floodFill(int[][] image, int sr, int sc, int newColor) { if(…
标签:算法
算法题 Day1 时间复杂度
转自于 https://zhidao.baidu.com/question/10758328.html 1、时间复杂度 (1)时间频度 一个算法执行所耗费的时间,从理论上是不能算出来的,必须上机运行测试才能知道。但我们不…
leetcode551_学生出勤记录
给定一个字符串来代表一个学生的出勤记录,这个记录仅包含以下三个字符: ‘A’ : Absent,缺勤 ‘L’ : Late,迟到 ‘P’ : Pre…
剑指offer---斐波那契数列
剑指offer—斐波那契数列 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。n<=39 博客中代码均在牛客C++11(clang++ 3.9)中通过 我们在第…
五大常用算法总结
引言 据说有人归纳了计算机的五大常用算法,它们是贪婪算法,动态规划算法,分治算法,回溯算法以及分支限界算法。虽然不知道为何要将这五个算法归为最常用的算法,但是毫无疑问,这五个算法是有很多应用场景的,最优化问题大多可以利用…
【leetcode】#4 Median of Two Sorted Arrays【Array】【Hard】
4. Median of Two Sorted Arrays There are two sorted arrays nums1 and nums2 of size m …
copying a param of torch.Size([128]) from checkpoint, where the shape is torch.Size([1, 128])解决方式
关于torch的在加载bn_inception、x_inception时出现copying a param of torch.Size([128]) from checkpoint, where the shape is…
数组-(Remove Element)移除指定数字返回新的数组
''' Given an array and a value, remove all occurrences of that value in place and return the new length. The o…
贪心算法应用-哈夫曼编码
学习哈夫曼编码,最大的收获是学习了贪心算法的实现套路:每次的选择都是局部最优解。但是贪心算法不能保证最后得到整体最优解。 public class HuffmanTree { public static &…
蓝桥杯(java)个人赛真题:哪天返回
哪天返回 小明被不明势力劫持。后被扔到x星站再无问津。小明得知每天都有飞船飞往地球,但需要108元的船票,而他却身无分文。 他决定在x星战打工。好心的老板答应包食宿,第1天给他1元钱。 并且,以后的每一天都比前一天多2元…
CCF201612-2 工资计算
#include <bits/stdc++.h> #define _ ios_base::sync_with_stdio(0);cin.tie(0); using namespace std; int mai…
go快速排序
/** 快速排序 */ func QuickSort(nums []int, start, end int) { if start < end { i, j := start, end mid := nums[(s…