自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 收藏
  • 关注

原创 Select Sort

#include<stdio.h>#include<iostream>#include<string>using namespace std;#define OK 1 #define ERROR -1#define MAXNUM 11typedef int Status;// use define a basic struct shape...

2018-04-06 11:47:20 474

原创 Straight Insert Sort

#include<stdio.h>#include<iostream>#include<string>using namespace std;#define OK 1 #define ERROR -1#define MAXNUM 11typedef int Status;// use define a basic struct shape...

2018-04-06 11:38:45 151

原创 Quick Sort

#include<stdio.h>#include<iostream>#include<string>using namespace std;#define OK 1 #define ERROR -1#define MAXNUM 11typedef int Status;// use define a basic struct shape...

2018-04-06 11:24:26 126

转载 Python 安装 第三方库的安装技巧

Python 安装 第三方库的安装技巧我的电脑:Windows 10 64位。 Python IDE 软件:PyCharm 2016.1.4 Python version : Python 3.5.0安装一个两条建议: 1. 使用 pip 命令行工具在线下载你需要的第三方库 2. 手动下载 第三方库,再使用 pip 命令安装1. 使用 pip 命令行工具在线下载你需要的第三方库Q: 什么是 pip...

2018-03-22 10:30:11 453 1

转载 Python数据分析

sql+数据分析

2018-03-15 20:36:40 246

转载 python操作数据库

点击打开链接

2018-03-15 20:33:14 97

转载 python解决pymssql问题

点击打开链接

2018-03-15 20:25:26 4695

转载 python 数据库

c1 = conn.cursor()c1.execute('SELECT * FROM TV')c2 = conn.cursor()c2.execute('SELECT * FROM TV WHERE salesrep =%s', Arr[i])with pymssql.connect(server, user, password, database) as conn: with...

2018-03-13 14:22:06 144

翻译 拓扑排序

//算法6.12 拓扑排序#include <iostream>using namespace std;#define MVNum 100                           //最大顶点数#define OK 1    #define ERROR 0 typedef char VerTexType;//- - - - -图的邻接表存储表示- - - - - typed...

2018-02-21 22:00:54 472

原创 迪杰斯特拉算法

// ConsoleApplication16.cpp: 定义控制台应用程序的入口点。//迪杰斯特拉算法#include "stdafx.h"#include<iostream>using namespace std;#define OK 1#define ERROR -1#define MAXINT 32767#define MAXNUM 100typedef char VerTex...

2018-02-19 20:53:48 275

原创 克鲁斯卡尔算法求最小生成树

// Keruskal#include "stdafx.h"#include<iostream>using namespace std;#define OK 1#define ERROR -1#define MAXINT 32767#define MAXNUM 100typedef char VerTexType;typedef int ArcType;typedef struct {...

2018-02-19 11:53:06 785

原创 表达式计算

#pragma once#include<iostream>using namespace std;const char oper[7] = {'+', '-', '*', '/', '(', ')', '#' };#define OK 1#define ERROR -1#define OVERFLOW -2typedef char SElemType;typedef int Stat...

2018-02-15 20:40:39 233

原创 数据结构——图之广度优先遍历算法

//图的广度优先遍历算法、#include "stdafx.h"#include<iostream>using namespace std;#define OK 1#define ERROR -1#define MAXNUM 100#define MAXINT 32767typedef int Status;typedef char VerTexType;typedef int Arc...

2018-02-13 21:00:00 743

空空如也

空空如也

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

TA关注的人

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