自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 利用python简单制作一个图云

import jiebafrom matplotlib import pyplot as pltimport wordcloudfrom PIL import Imageimport numpy as np#r''单引号里面不需要转义path = r'D:\Pycharm\.idea\frist_YF_project\Expy'font = r'C:\Windows\Fonts\simsun.ttc'#电脑自带的字体def tcg(texts): cut = jieba.cu.

2021-06-08 19:49:37 1134 1

原创 2021-05-26

python爬虫爬取腾讯招聘网的职位招聘数据(个人学习记录)很常规的爬取数据然后数据分析,重要部分是在url的分析上,no picture say a j8下图为该url的分析:后期如果需要爬取更多数据,可以加多线程或者修改参数pagesizeimport requests,reurl = "https://careers.tencent.com/tencentcareer/api/post/Query?timestamp=1621962191550&countryId=.

2021-05-26 01:56:48 88

原创 2021-05-23

C语言学生管理系统链表实现(个人学习记录)#include"stdio.h"#include"stdlib.h"#include"malloc.h"#include"string.h"#define LEN sizeof (struct stu)#define ctu struct stustruct stu //这里使用stu命名{ int num=0; char name[10]; int score=0; struct stu *next; }; ctu*crea

2021-05-23 12:40:15 59

原创 2021-05-22

循环队列源文件(学习记录)#include"stdio.h"#include"stdlib.h"#define M_S 6 typedef struct queue{ int a[M_S]; int front; int rear; }queue;int initqueue(queue *p){ p->front=p->rear=0; return 1; }int queuelength

2021-05-22 23:44:05 65

原创 2021-05-22

顺序栈的源文件(学习记录)#include"stdio.h"#include"stdlib.h"#include"malloc.h" typedef int Elemtype;#define STACK_INIT_SIZE 20#define STACKINCREAMENT 10typedef struct{ Elemtype *top; Elemtype *base; int stacksize;} sqstack; void Initstack(sqstack *s)

2021-05-22 23:37:15 67

空空如也

空空如也

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

TA关注的人

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