自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

saber_jk的博客

一个学生的学习记录

  • 博客(3)
  • 收藏
  • 关注

原创 多项式计算//线性表练习

/*完成度 1系数&指数输入并创立多项式 2多项式形式输出 3多项式相加 4多项式相减 5多项式乱序输入整理 6带入x的值并计算 7多项式乘法 */ #include #include struct term{ float coe; int index; struct term * next; }formu1,formu2, *p, *p1,result; int mai

2017-11-18 09:33:55 269

原创 离散事件模拟——银行队列问题//数据结构作业

//银行——离散事件模拟 #include<stdio.h> #include<stdlib.h> struct event{ int type,occurtime,money;//type为0,到达;为1,离开窗口;occurtime为0到600; }ev1,ev2; struct eventnode{ int type; int occurt...

2017-11-18 09:30:01 1093

转载 huffman实现文件压缩

//mark一下#include #include #include #include struct head{ unsigned char b; long count; /*the frequency*/ long parent,lch,rch; char bits[256]; }header[5

2017-11-18 09:26:05 448 1

空空如也

空空如也

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

TA关注的人

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