自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 IIC通信详解

IIC通信详解

2021-12-22 18:48:34 232

原创 Linux系统编程入门学习笔记5-文件IO

Linux系统编程入门学习笔记-文件IO

2021-12-06 09:33:06 745

原创 双向循环链表

一位叫贾老师写的,没有了联系方式放在只是方便自己看若有缘再见联系删除#include <stdio.h>#include <stdlib.h>#include <string.h>//功能:安全检查宏//@x:要检查的变量//@opt:操作符: ==,<,>//@y:要检查的值; if(NULL == p) { printf("p is null\n"); return -1; }//@z:返回值 SYSERR(NULL,==,

2021-11-09 17:12:43 215

原创 双向循环链表、冒泡、选择排序

#include<stdio.h>#include<stdlib.h>typedef struct node{ int data; struct node *nex; struct node *pre;}NODE;void Add_HData(NODE*,int);void Show_tdata(NODE*head);void Sort_the_bubbling(NODE*head);void Show_hdata(NODE*head);void s

2021-11-09 14:48:04 575

原创 冒泡选择排序

#include <stdio.h>//打印void show(int *a,int length){ int i,j; for(i=0;i<length;i++) { printf("a[%d]=%d\n",i,a[i]); } printf("------show end--------------------\n");}//冒泡排序 降序void maopao_sort(int *a,int length){ int i,j,temp; for

2021-11-09 14:36:58 44

原创 Linux设备驱动之字符设备驱动

转载https://www.linuxprobe.com/linux-device-driver.html

2021-11-07 11:09:33 86

空空如也

空空如也

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

TA关注的人

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