自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 资源 (5)
  • 收藏
  • 关注

原创 数据结构实验之排序三:bucket sort

点击打开链接#include #include using namespace std;int a[500];int main(){    int x,n;    while(~scanf("%d",&n))    {        memset(a,0,sizeof(a));        for(int i=0;i       

2016-12-14 18:33:09 243

原创 数据结构实验之排序二:交换排序

点击打开链接数据相等的时候不交换; 快排完成的数组不能再统计冒泡的次数#include #include using namespace std;int a[1100000],b[1100000],num1,num2,n;void qsort(int a[110000],int l,int r){    int i = l,j = r;    i

2016-12-14 18:31:59 335

原创 一趟快排

点击打开链接A一趟快排不继续调用本身进行左右排序#include #include using namespace std;int a[1100000];void qsort(int a[1100000],int l,int r){    int i = l,j = r;    int x = a[l];    if(l>=r) retu

2016-12-14 18:31:10 275

原创 数据结构实验之排序三:bucket sort

点击打开链接#include #include using namespace std;int a[500];int main(){    int x,n;    while(~scanf("%d",&n))    {        memset(a,0,sizeof(a));        for(int i=0;i        {     

2016-12-14 18:28:28 191

原创 数据结构上机测试1:顺序表的应用

点击打开链接

2016-08-23 17:34:18 209

原创 约瑟夫问题

点击打开链接#include #include #include struct node{    int data;    node *next;};struct node *creat(int n){    node *p,*tail,*head;    p= new node;    p->next = NULL;    p->data

2016-08-23 17:08:50 169

原创 数据结构实验之链表九:双向链表

点击打开链接#include#includestruct node{    int data;    struct node *next,*prior;};struct node *creat_desq(int n);void search(struct node *head,int n);int main(){    struct node

2016-08-23 17:07:17 216

原创 数据结构实验之链表三:链表的逆置

点击打开链接#include #include struct node{    int data;    struct node * next;};//顺序建立链表struct node  *creatw(){    int a ;    struct node  *head,*p,*tail;    head=(struct node

2016-08-23 16:25:17 225

原创 数据结构实验之链表七:单链表中重复元素的删除

点击打开链接#include #include #include using namespace std;typedef int element;struct node{    element data;    node *next;};element n;struct node *Creat(int n){    struct node *

2016-08-23 16:19:45 260

原创 有序链表的归并

点击打开链接#include #include struct node{    int data;    struct node *next;};//顺序创建链表struct node *creatw(int n){    struct node *head,*tail,*p;    int i;    head = (struct no

2016-08-23 16:08:12 388

客户关系管理系统

客户关系管理系统,基于web服务器,使用javaweb语言。课程设计资料

2018-09-15

石油大学(复试)资料

里面有石油大学(华东)的资料,是计算机与通信工程学院的考生的必备

2019-04-26

Java web主页面

这是用Javaweb写的主页面,界面美观友好。是用最基本的JavaScript写的,代码容易理解,希望对大家有帮助

2018-07-02

Calculator-白橙色计算器.rar

用Android编写的小型简单计算器,有简单的编程基础就可以看懂,设计到的代码不多,自己读,百度搜索就可以看懂。

2019-09-03

网上书店book

网上书店,基于tomcat服务器,javaweb,课程设计资料。

2018-09-15

空空如也

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

TA关注的人

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