自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Windows上的 java-web配置 与链接mysql数据库

,,m

2021-04-02 20:56:11 232 1

原创 Windows mysql的安装

关于 Windows 初学者 Mysql的安装 Mysql 的安装 百度搜索Mysql找到有关Mysql Commulty Server 的链接 找到对应自己机器的mysql软件 Windows 可以选择MSI安装 这个安装会简便许多 不需要手动设置环境变量 上方的是现在mysql安装下载器 下方的则是下载完全的mysql安装包 可以脱机安装 如果网速可以 推荐使用下方的安装方法 如果网速不行 那选哪个都慢的一批 链接:https://pan.baidu.com/s/1EKLA_BBjd1j8Ax

2021-01-13 12:16:13 136

原创 利用队列 树的中、后序 转树的层序遍历 BFS------PTA天梯团体赛L2-006

#include <iostream> #include <queue> using namespace std; struct imformation{ int start; int end; }; int check(int start,int end,int *mid,int* after,int n){//n->after start,end->mid int index; int result =1; for(

2020-11-08 21:07:15 120

原创 Mac上萌新学习python爬虫使用pycharm导入pyecharts库时遇到的一些问题

from urllib import request from urllib import parse from http.cookiejar import CookieJar import requests from bs4 import BeautifulSoup from pyecharts.charts.basic_charts.bar import Bar from pyecharts import options as opts headers={ 'User-Agent':'M

2020-06-19 11:29:02 1932

原创 求助!!pta 数据结构 哈利波特的考试

#include<stdio.h> #include<stdlib.h> int map[101][101]={0}; int Data[101]={0};//已标记 int done[101]={0};//已操作 int lenth[101]={0};//记录顶点路径长 int sum[101]={0};//每次遍历最远路径 int check1(int N){ int i; for(i=1;i<=N;i++){ if(Data[i]==0.

2020-05-25 21:51:06 259

原创 简单的转义举例

#include<stdio.h> int main(){ printf("printf(\"Hello, world!\\n\");"); return 0; } 题目原意打印 printf(“Hello, world!\n”); 这一整个语句 其中打印的" 会使编译器在printf语句何处结束产生歧义 包括不需要打印的\n. 需要用\转义 众人皆知的小技巧 但容易忽视 ...

2020-05-15 22:32:50 276

原创 pta数据结构-中国mooc邻接矩阵解法之一

#include<stdio.h> #include<stdlib.h> //vertex 顶点 edge 边 struct map{//图 栈 队列 边节点的定义 int data[10][10]; }; struct stack{ int Ver1,Ver2; struct stack*next; }; struct line{ in...

2020-05-01 13:04:42 165

原创 平衡搜索树 c

#include<stdio.h> #include<stdlib.h> struct tree{ int data; struct tree*left,*right; int height; }; int GetHeight(struct tree*p){ if(!p) return 0; else ...

2020-04-25 14:13:23 141

原创 堆排序的整体法判断-c

#include<stdio.h> #include<stdlib.h> struct heap{ int *data; int maxlenth,lenth; }; struct heap*Creat(int MaxLenth){//lenth为下标,当前为0 当输入数据后,下标为最后一个元素的下标 struct heap*p; p=...

2020-04-14 14:53:35 234

原创 堆的插入排序法 C

#include<stdio.h> #include<stdlib.h> struct heap{ int *data; int maxlenth,lenth; }; struct heap*Creat(int MaxLenth){//lenth为下标,当前为0 当输入数据后,下标为最后一个元素的下标 struct heap*p; p=(...

2020-04-14 14:47:51 263

原创 判断不同输入序列是否为同一棵二叉搜索树的方法之一

#include<stdio.h> #include<stdlib.h> //flag 1 :未路过 0已路过 struct tree{ int data; struct tree *left ,*right; int flag; }; struct tree *newnode(int n){//建立头结点 struct tree*p; ...

2020-04-11 13:55:49 288

原创 树的同构判断

中国慕课–树的同构判断 #include<stdio.h> #include<stdlib.h> struct tree{ char node; int left,right; }t1[10],t2[10]; int buildtree(struct tree*t){//建树,把读入的数据,存入结构体数组,方便后续读入。 //个人认为这里创建数组比创建聊...

2020-04-10 16:46:34 401

原创 树结构用队列完成的层序遍历

#include<stdio.h> #include<stdlib.h> struct tree{ int data;// [树的结构] struct tree *left,*right; }; struct line{ struct tree*link; struct line *next;...

2020-04-04 22:29:43 254

原创 2020.3.28关于中序算法转后序(不含括号)的初步思路与代码

把中序算法转化为后序算法的初步思路 代码如下: #include<stdio.h> #include<stdlib.h> struct list { char fu[10]; int top; }; struct list* Creat() { struct list* p; p=(struct list *)malloc(sizeof(struct list)); p-&...

2020-03-28 00:23:41 245

空空如也

空空如也

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

TA关注的人

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