自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 python图片降噪方法汇总以及提取图片验证码

主要介绍图片常见降噪方法以及图片中数字的提取方法

2023-03-14 10:53:16 774 1

原创 LinuxC函数Popen与fgets,feof配合使用碰到的问题

Linux C语言Popen函数与fgets函数feof函数使用

2022-10-01 17:22:21 1606

原创 SourceInsight常用配置(超详细)

SourceInsight常用配置

2022-06-03 12:07:26 1924

原创 读取文件中内容并打印

#include <stdlib.h>#include <stdio.h>#include <string.h>int main(){ FILE* fp = NULL; char ch; errno_t err; err = fopen_s(&fp, 文件路径, "r+"); if (err == 0){ printf("Open File Success!\n"); } else{ printf("Can't Open File\n

2021-12-25 22:24:01 560

原创 C语言斐波那契数列

斐波那契数列递归和循环实现://递归方法#include <stdio.h>int Fib(int i){ if(i == 0 || i == 1) return i; else { return Fib(i - 1) + Fib(i - 2); }}void main(){ printf("%d",Fib(5)); while(1);}//循环方法#include <stdio.h>int Fib(int n){ if(n == 0

2021-03-31 15:32:17 102

原创 链队的基本操作

/*链队的建立和插入输出*/typedef struct node{ int data; struct node *next;}node;typedef struct linkqueue{ struct node *pfront; struct node *prear;}linkqueue;void init_queue(linkqueue *lq){ lq->pfront = NULL; lq->prear = NULL;}bool in_queue(linkqu

2021-03-29 11:29:02 82

原创 C语言链表基本操作

/*合并两个有序链表*/SLIST *add_list(SLIST *m,SLIST *n){ SLIST *head,*p,*s; head = (SLIST *)malloc(sizeof(SLIST)); p = head; while(m != NULL || n != NULL) { s = (SLIST *)malloc(sizeof(SLIST)); if(m != NULL && m->data <= n->data) { s

2021-03-25 20:02:34 163

空空如也

空空如也

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

TA关注的人

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