自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 DSADSA

晓得撒的撒

2023-03-09 15:09:02 110

原创 数据结构作业 队列

#include <stdio.h>#include <stdlib.h>#include <assert.h>// 队列的节点struct Node{ int data; struct Node* next;};// 队首队尾指针struct Queue{ struct Node* front; struct Node* rear; int size;};void Q...

2021-11-19 09:26:55 489

原创 数据结构作业 栈的操作

#include<stdio.h>#include<stdlib.h>#define OK 1#define ERROR -1#define MAXSIZE 10typedef int Status;typedef struct Node{ int data; //结点的数据域 struct Node *next;//结点的指针域 int stacksize;}Node,*LinkList;int i=0;//记录栈中...

2021-11-19 09:24:32 1181

原创 数据结构作业 单链表

/* Project: single linkeed list (数据结构 单链表) Date: 2021-10-7 09:26:57 Author: Frank Wang InitList(LinkList &L) 参数:单链表L 功能:初始化 时间复杂度 O(1) ListLength(LinkList L) 参数:单链表L 功能:获得单链表长度 时间复杂度O(n) ListInsert(Li...

2021-11-19 09:23:15 237

原创 数据结构作业 KMP算法

#include<stdio.h>#include<stdlib.h>#include<string.h> char s[100],q[100]; int n,m; int next[100];int nextval[100];void getnext(char q[]){ int i=1;next[1]=0;int j=0; while(i<strlen(q+1)) {0 if(j==...

2021-11-19 09:21:34 255

原创 数据结构作业 蛇形填数123

1#include<bits/stdc++.h>using namespace std;//在n*n方阵里填入1,2,3,…,n*n,要求填成蛇形。#define N 1000 int a[N][N];int main(){ int n; cin >> n ; int x=0,y=n-1,num=0; a[x][y] = ++num; while(num<n*n) { while(x<...

2021-11-19 09:20:40 396

原创 数据结构作业 哈夫曼树

/*示例****哈夫曼编码****请输入结点个数:8输入这8个元素的权值(均为整形):1:272:43:874:215:26:217:18:25*/#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct{ unsigned int weight; //用来存储各个结点的权值 unsigned int parent,LChild,RChild...

2021-11-19 09:19:11 233

原创 数据结构作业 二叉树

#include <bits/stdc++.h> //万能头文件//FCA##DB###EH##GM###using namespace std;//分配空间typedef struct TNode//定义二叉树的结构体{ char data; int quan; int LTag,RTag; struct TNode *lchild,*rchild;}DogEgg,*DogSon;//给结构体起的名字DogSon pre;//线索用全局变量D...

2021-11-19 09:18:13 818

空空如也

空空如也

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

TA关注的人

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