description: 179 Largest Number 22.9% Medium Given a list of non negative inte…
分类:未分类
Ceres-Solver学习笔记(2)
先从简单的开始学习。 1.继承SizedCostFunction,构造CostFunction #include <vector> #include "ceres/ceres.h" #include "glo…
选择排序Python代码及注释
#Author:Anthony def findSmallest(arr):#寻找最小值 smallest=arr[0]#初始默认0索引位置的值为最小值 smallest_index=0#索引 for i in rang…
ubuntu tensorflow gpu 安装过程
转载自 https://blog.csdn.net/qq_35976351/article/details/79325476
冒泡、选择、快速、插入、希尔、归并排序算法的小结
–插入排序 //直接插入排序 时间复杂度为 O(n^2) private static void directSort(int[] arr,int len) { for(int i=1;i<len;i+…
priority_queue&queue使用实例
priority_queue: 合并果子 #include<bits/stdc++.h> //有些OJ&版本不兼容,需使用iostream&queue using namespace std;…
从hash算法到java hashcode()的作用
之前写过两篇关于hashcode()作用的文章,现在看来是非常片面的。 知乎的一个问题什么是哈希算法?里面有一个ID叫蒋又新的用户说的给了我很多启发,虽然我不完全认同的他的观点,特别是——这个HASH算法不是大学里数据结…
[leetcode]367. Valid Perfect Square
Given a positive integer num, write a function which returns True if num is a perfect square else False. Note:…
排课研究
转载自:http://www.cnblogs.com/wifi/articles/2126379.html 自动排课算法分析 1 绪 论 1.1课题背景与研究意义 1.2课题的应用领域 1.3 课…
变量的三种命名方法
1、引言 随着计算机技术的不断发展,计算机计算能力的提升催生了大量大型软件的出现,大型软件的代码量动辄成千上万行,甚至数十万行。随着代码量的指数级增长,以前未曾注意的“小”问题也明显被放大。比如代码中的变量命名,这属于我…
python获取指定文件夹下面的所有的文件名称
path = "/tmp/pycharm_project_683/task_1/" + my_type + '/' print(path) files = os.listdir(path)