自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (2)
  • 收藏
  • 关注

原创 哈希函数的简单应用

#include <assert.h>#include <string.h>#include <string>#include <stdio.h>using namespace std;map<std::string, URLInfo> urllib;/** * 初始化:使用初始化指令让系统重新完成初始化,内部URL记录...

2019-05-17 21:04:01 502

转载 我常用的功能与文件读写

读文件:loadNumbers(const char* fileName){ if (fileName[0] == 0) return E002; ifstream infile(fileName); if (!infile.is_open()) { return E003; } Number tem;string s; while (getline(infile, s...

2019-05-15 22:29:41 225

原创 STL之map常用功能

#include <string.h>#include <map>#include <stdio.h>#include <fstream>#include <algorithm>#include <vector>using namespace std;map<long,Number> nu...

2019-05-15 14:43:03 160

原创 c++常用数组功能函数

vector查找排序读文件#include <vector>#include <fstream>#include <algorithm>#include <functional>#include <iostream>using namespace std;vector<Number> num;struct...

2019-05-14 20:02:14 2428

Python正则表达式和爬虫基础

爬取电影信息,正则表达式进行匹配,提取出有用信息后排序输出

2019-04-13

指纹定位算法仿真matlab代码

算法是建立在离线传播模型下,不考虑多径效应,反射,折射等对信号强度有损耗的情况,算法中选用了NN,KNN,WKNN等几种常用的指纹定位算法。

2019-04-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除