自定义博客皮肤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)
  • 资源 (2)
  • 收藏
  • 关注

原创 树状数组例题(POJ -2352)

Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star be an amount of the stars that are not higher and ...

2018-05-31 19:04:46 124

原创 结构体链表 (创建)

#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct student { int no; char name[21]; double s[3]; double ave; double sum; }stu; typedef stru...

2018-05-23 23:23:09 4533

原创 链表 (删除特定元素)

#include <stdio.h> #include <stdlib.h> typedef struct node { int date; struct node *next; } lnode; void creatlist(lnode *h,int n) { lnode *p,*r; r=h; int i,x; for(...

2018-05-22 23:18:02 435

原创 树状数组(区间更新)HDU1556

#include <iostream> #include <cstdio> #include <cstring> using namespace std; int n; int tree[100005]; int lowbit(int i) { return i&(-i); } void update(int i,int x) { wh...

2018-05-22 23:11:46 162

原创 链表 (已排好序 插入一个元素仍有序)

#include <stdio.h> #include <stdlib.h> typedef struct node { int date; struct node *next; }lnode; void creatlist(lnode *h,int n)//尾插法创建链表 { lnode *p,*r; int i,x; r=h; ...

2018-05-22 15:10:39 1999

navicat150_premium_cs_x64.zip

navicat专业版安装包

2021-07-29

基于MATLAB的混凝土桥梁路面裂缝识别系统.zip

基于MATLAB的混凝土桥梁路面裂缝识别系统,有GUI界面 有测试集,可用于毕业设计参考

2021-07-29

空空如也

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

TA关注的人

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