- 博客(7)
- 收藏
- 关注
原创 C++面试问题
malloc/free与new/delete的区别与联系malloc/free 是c/c++标准的库函数,需要\color{red}{需要}需要头文件支持;而new/delete是c++的操作符,无需\color{red}{无需}无需头文件支持new建立的是一个对象,所以它做两件事,一是分配内存,二是调用类的构造函数\color{red}{调用类的构造函数}调用类的构造函数;同样,delete会调用类的析构函数和释放内存。而malloc和free只是分配和释放内存new可自己计算类型的大小,返回.
2022-01-17 15:35:23 112
转载 堆排序思想及C++实现
构造一个小顶堆,取堆顶数字(也就是最小值)再将剩下的数字构建一个小顶堆,取堆顶数字(也就是剩下值当中的最小值)重复以上操作,直到取完堆中的数字,最终得到一个从小到大排序的序列...
2020-09-28 21:04:50 120
原创 快速排序思想及C++实现
快速排序的思想step 1. 通过一趟排序把数据分成两部分,其中\color{red}{其中}其中一部分的所有数据都要比另一部分的所有数据小,基准数据(枢轴)排在这两个子序列的中间step 2.int partition(int array[], int low, int high){ int pv = array[low]; while(low < high){ while(low < high && array[high] >= pv) --hi
2020-09-21 19:18:29 160
翻译 CNN分类FashionMNIST
Define the network architecture始终以相同方式工作的任何层或函数,例如预定义的激活函数,都可以出现在 __init __ 或 forward 函数中。实际上经常可以看到在 __init __ 中定义的卷积层和池化层,以及 forward 中定义的激活函数。import torch.nn as nnimport torch.nn.functional as Fclass Net(nn.Module): def __init__(self):
2020-09-09 11:00:22 595
翻译 ORB特征提取与配准
Loading Images and Importing Resources%matplotlib inlineimport cv2import matplotlib.pyplot as plt# Set the default figure sizeplt.rcParams['figure.figsize'] = [20,10]# Load the training imageimage = cv2.imread('./images/face.jpeg')# Convert the
2020-08-31 18:14:12 1863 1
翻译 K均值聚类(k-means clustering)用于图像分割
A lab finished in Udacity Computer Vision Nanodegree. K均值聚类(k-means clustering)是一种非监督学习(unsupervised learning)方法,也就是说无需使用标签数据1、Import resources and display imageimport numpy as npimport matplotlib.pyplot as pltimport cv2%matplotlib inline# Rea
2020-08-28 12:45:51 840
转载 图像轮廓检测(Find Contours)
这是我在Udacity Computer Vision Nanodegree中完成的一个简单的图像分割小Lab,主要基于python和OpenCV,觉得很有意思,记录一下Import resources and display imageimport numpy as npimport matplotlib.pyplot as pltimport cv2%matplotlib inline# Read in the imageimage = cv2.imread('images/thu
2020-08-26 11:44:55 685
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人