自定义博客皮肤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)
  • 资源 (1)
  • 收藏
  • 关注

原创 Bellman-Ford——C++实现版

// Bellman_Ford.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define MAX_VALUE 1000using namespace std;struct Edge{ int Begin; int End; int Weight; int Pre;};struct MGraph

2015-11-18 12:34:19 1577

原创 Dijkstra算法——C++实现版

// Dijkstra.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define MAX_VALUE 1000using namespace std;struct MGraph{ int *edges[MAX_VALUE]; int iVertexCount, iEdageCount;};voi

2015-11-16 21:18:29 940 1

原创 Floyd算法——C++实现版

// Floyd.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define MAX_VALUE 1000#define MAX_VERTEX_COUNT 20 using namespace std;struct MGraph{ int *edges[MAX_VALUE]; int iVertexC

2015-11-16 16:40:51 7238 2

原创 KMP算法——C++实现版

// KMP.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define I_N_MAX 10000using namespace std;void KmpSearch(char[], char[], int[]);void GetNextval(char[], int next[]);int mai

2015-11-13 22:52:55 2486 2

Pycharm5汉化补丁

Pycharm5 汉化补丁 将resources_cn.jar文件复制到 (PATH)\PyCharm 5\lib目录

2016-03-29

空空如也

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

TA关注的人

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