孤岛violet
孤岛violet
全部文章
分类
argmax(1)
backpack(1)
bitset(1)
CS231n(1)
Decorator(1)
for语句(1)
Git(2)
Lenet-5(1)
linux(1)
MFC(1)
observer(1)
OpenCV(14)
ps(1)
qsort(1)
Qt(4)
RandomState(1)
slam(1)
strategy设计模式(1)
TCP(1)
TensorFlow(1)
Ubuntu(1)
useradd(1)
vector(1)
二分查找(1)
位运算(1)
凯撒加密(1)
函数指针(1)
刷题(1)
匈牙利命名法(1)
句柄(1)
图像分类(1)
归并排序(1)
感知机(1)
未归档(145)
用户权限(1)
终端(1)
计算机视觉入门(1)
设计模式(1)
软链接(1)
选择排序(1)
递归(1)
遍历像素(1)
归档
标签
去牛客网
登录
/
注册
孤岛violet
见自己,见世界,见众生。
全部文章
(共203篇)
使用copy()、ostream_iterator和reverse_iterator实现正反向输出
迭代器是STL算法的接口,而指针是迭代器,所以STL算法可是实现指针来对基于指针的非STL容器进行操作,例如数组。 #include <iostream> #include <vector> #include <iterator> int main() { ...
2019-03-15
0
445
库函数qsort、bsearch、snprintf
1.qsort库函数——快速排序(D&C) void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void , const void)) base – 指向要排序的数组的第一个元素的指...
qsort
bsearch
snprintf
2019-03-13
0
527
快速排序模板
提高编程能力:了解主要思想——>模板题——>重复3~5次 题目 给定你一一个长度为n的整数数列。 请你使用快速排序对这个数列按照从小到大进行排序。 并将排好序的数列按顺序输出。 输入格式 输入共两行,第一行包含整数n。 第二行包含n个整数(所有整数均在1~10范围内),表示整个数列...
2019-02-04
0
671
递归
Loops may achieve a performance gain for your program. Recursion may achieve a performance gain for your programmer. Choose which is more important in...
递归
2019-02-04
0
459
选择排序
# Finds the smallest value in an array def findSmallest(arr): # Stores the smallest value smallest = arr[0] # Stores the index of the smallest v...
选择排序
2019-02-03
0
454
二分查找
def binary_search(list, item): # low and high keep track of which part of the list you'll search in. low = 0 high = len(list) - 1 # While you...
二分查找
2019-02-03
0
387
git创建和合并分支
branch(分支) 参考:廖雪峰git教程 Git鼓励大量使用分支: 查看分支:git branch 创建分支:git branch <name> 切换分支:git checkout <name> 创建+切换分支:git checkout -b <name...
Git
branch
2019-02-03
0
403
Git学习笔记
git学习总结 笔记来源于廖雪峰的Git教程。 真的很庆幸活在这个时代,知识的获取不再变得复杂,而是保持一颗永远追逐的心! 0.工作区和暂存区 工作区(Working Directory) 在电脑中看到的文件夹就是工作区 版本库(Repository) 工作区有一个隐藏目录.git...
git
2019-02-03
0
426
一款类似于mac dock栏的windows软件
原文链接:一款类似于mac-dock栏的windows软件 一款类似于mac-dock栏的windows软件 软件名称叫 Winstep Nexus Ultimate 软件链接如下: 链接:https://www.lanzous.com/i1xnevc 密码:5vsy 安装破解方法 ...
2019-01-29
0
647
hexo 给自己的博客添加萌物
1.获取 在自己的hexo目录下打开git添加 npm install --save hexo-helper-live2d 2.选择自己喜欢的萌物 live2d-widget-model-chitose live2d-widget-model-epsilon2_1 live2d-widge...
2019-01-29
0
665
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页