
数据结构
坚定亦唯美
热爱IT行业,一起加油!
展开
-
c字符串的拼接与拷贝
#include "stdafx.h"#include"stdio.h"#include"stdlib.h"#include"string.h"#include<iostream>using namespace std;void str_cpy(char *str1, char *str2);int strlen(char *str){ int count = 0; while (*s...原创 2018-04-12 19:43:02 · 317 阅读 · 0 评论 -
kd—tree算法实现
本文介绍一种用于高维空间中的高速近期邻和近似近期邻查找技术——Kd-Tree(Kd树)。Kd-Tree,即K-dimensional tree,是一种高维索引树形数据结构,经常使用于在大规模的高维数据空间进行近期邻查找(Nearest Neighbor)和近似近期邻查找(Approximate Nearest Neighbor),比如图像检索和识别中的高维图像特征向量的K近邻查找与匹配。本文首先介...转载 2018-04-27 16:00:41 · 956 阅读 · 0 评论 -
单向链表的介绍及实现
1.单链表的简单介绍 &n...转载 2019-09-03 20:47:39 · 278 阅读 · 0 评论