ChampionNan
码龄5年
  • 7,697
    被访问
  • 2
    原创
  • 1,609,577
    排名
  • 1
    粉丝
  • 0
    铁粉
关注
提问 私信
  • 加入CSDN时间: 2017-12-06
博客简介:

ChampionNan的博客

查看详细资料
个人成就
  • 获得0次点赞
  • 内容获得1次评论
  • 获得4次收藏
创作历程
  • 2篇
    2019年
  • 15篇
    2018年
TA的专栏
  • c++
    1篇
  • c
    14篇
  • 计算机知识积累
    3篇
  • c程序设计语言
    1篇
兴趣领域 设置
  • 人工智能
    机器学习深度学习神经网络tensorflow图像处理
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

FUSE相关资料

1.http://www.voidcn.com/article/p-tvbeqqlm-nw.html2.https://blog.csdn.net/yeruby/article/details/419781993.https://github.com/promovicz/rtos/blob/master/fat/fat16.c4.https://github.com/COSI-Lab/CS4...
转载
发布博客 2019.06.08 ·
159 阅读 ·
0 点赞 ·
0 评论

KM算法的操作问题汇总

1.要注意公式的下角标啊~2.S时刻在变化,一定记得每次只增加一个点3.在每次选择匹配的时候,都要直接按照可增轨来匹配
原创
发布博客 2019.01.08 ·
381 阅读 ·
0 点赞 ·
0 评论

2.2棋盘

#include<stdio.h>#include<math.h>int main(){ int cases; char begin[3],end[3]; scanf("%d",&cases); int x,y; while(cases--){ scanf("%s%s",begin,end); ...
转载
发布博客 2018.07.18 ·
120 阅读 ·
0 点赞 ·
0 评论

小金库—有密码,添账,列单,按日期、ID查询,删除的功能(初始密码为123456,可更改)

#include#include #include //问题:清除小金库进入不了函数,删除记录,新小金库// #includelong size;struct LogData{ long logid;char logdate[11];char lognote[15];double charge; double balance; };
转载
发布博客 2018.01.24 ·
261 阅读 ·
0 点赞 ·
0 评论

矩阵乘法——可变矩阵

#includeint main(){ int m,s,n,i,j,z; printf("输入3个参数:"); scanf("%d%d%d",&m,&s,&n); int A[100][100]={0},B[100][100]={0},C[100][100]={0}; printf("输入A矩阵数:"); for(i=0;im;i++)
转载
发布博客 2018.01.24 ·
332 阅读 ·
0 点赞 ·
0 评论

计时——运用循环语句

#include #include #include int main() { clock_t start_t,end_t; start_t=clock(); int hour,minute,second; while(1) { if(getch()==' ') { end_t=clock();
原创
发布博客 2018.01.24 ·
335 阅读 ·
0 点赞 ·
0 评论

计时——运用goto

#include#include#include#includeint main(){ int hour,minute,second; clock_t startTime,endTime; printf("start
"); a:startTime=clock(); if(getch( )==' ') { endTime=
转载
发布博客 2018.01.24 ·
155 阅读 ·
0 点赞 ·
0 评论

寻找100到200的素数

#include #includeint main(){ int m,i,k,h=0,leap=1; printf("
"); for(m=101;m201;m++) { k=sqrt(m+1); for(i=2;i<=k;i++) { if(m%i==0)leap=0;break;
转载
发布博客 2018.01.24 ·
188 阅读 ·
0 点赞 ·
0 评论

数字字符串转为相应的浮点数

#include #includedouble atof(char s[]){ double sum,power; int i,sign; for(i=0;isspace(s[i]);i++); sign=(s[i]=='-')?1:-1; if(s[i]=='+'||s[i]=='-')i++; for(sum=0;isdigit(s[i])
转载
发布博客 2018.01.24 ·
1578 阅读 ·
0 点赞 ·
0 评论

将数字作为字符串打印

#includevoid printed(int n){ if(n0){ putchar('-'); n=-n;} if(n/10)printed(n/10); else putchar(n%10+'0');}int main(){ int n; scanf("%d",&n); printed(n); return
转载
发布博客 2018.01.20 ·
507 阅读 ·
0 点赞 ·
1 评论

结构体输出链表

includeincludedefine LEN sizeof(struct Student)struct Student { long num; float score; struct Student *next; }; int n; struct Student *creat(void) { struct Student *head
转载
发布博客 2018.01.20 ·
592 阅读 ·
0 点赞 ·
0 评论

结构体指针做函数参数

includeincludedefine N 3int main() { struct Student stu[N]; struct Student *p=stu; void input(struct Student stu[]); struct Student max(struct Student stu[]); void prin
转载
发布博客 2018.01.20 ·
1288 阅读 ·
0 点赞 ·
0 评论

编写可变参数的函数

#include#includevoid minprintf(char *fmt,...){ va_list ap; char *p,*sval; int ival; double dval; va_start(ap,fmt); for(p=fmt;*p;p++) { if(*p!='%'){
转载
发布博客 2018.01.20 ·
189 阅读 ·
0 点赞 ·
0 评论

删除文章中的注释

#include int state; int c1,c2; void change_state(int c); int main(int argc, const char * argv[]) { int c; state = 0; c1 = 0; c2 = 0; while ((c=getchar())!=EO
转载
发布博客 2018.01.20 ·
212 阅读 ·
0 点赞 ·
0 评论

水仙花数

#includeint main(){ int i,j,k,n; printf("water flower numbers are:
"); for(n=100;n1000;n++) { i=n/100; j=(n/10)%10; k=n%10; if(n==i*i*i+j*j*j+k*k*k)
转载
发布博客 2018.01.20 ·
124 阅读 ·
0 点赞 ·
0 评论

自己写的有关字符串的库函数

#include #include#includevoid strcpy(char *s,char *t){ while(*s++=*t++); } int strcmp(char *s,char *t){ for(;*s==*t;s++,t++) { if(*s=='\0')return 0; } return *s-*t
转载
发布博客 2018.01.20 ·
273 阅读 ·
0 点赞 ·
0 评论

c++文件练习1

#include#include#include#includeusing namespace std;int main(){ fstream iofile("seq_data.txt",ios_base::in|ios_base::app); ofstream outfile("seq_base.txt",ios_base::app); int num_tri
转载
发布博客 2018.01.20 ·
181 阅读 ·
0 点赞 ·
0 评论
加载更多