xy66
码龄5年
关注
提问 私信
  • 博客:22,877
    22,877
    总访问量
  • 30
    原创
  • 1,028,538
    排名
  • 6
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:湖北省
  • 加入CSDN时间: 2019-10-12
博客简介:

weixin_45742613的博客

查看详细资料
个人成就
  • 获得11次点赞
  • 内容获得1次评论
  • 获得83次收藏
  • 代码片获得161次分享
创作历程
  • 15篇
    2022年
  • 1篇
    2021年
  • 15篇
    2020年
成就勋章
TA的专栏
  • 计算机组成原理
    1篇
  • 计算机网络
    6篇
  • 数据结构
    9篇
  • web前端
    13篇
兴趣领域 设置
  • 网络空间安全
    系统安全web安全安全架构
创作活动更多

HarmonyOS开发者社区有奖征文来啦!

用文字记录下您与HarmonyOS的故事。参与活动,还有机会赢奖,快来加入我们吧!

0人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

计算机系统层次结构

考研
原创
发布博客 2022.08.02 ·
3699 阅读 ·
1 点赞 ·
1 评论 ·
16 收藏

应用层知识点

考研
原创
发布博客 2022.07.22 ·
586 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

传输层知识点

考研
原创
发布博客 2022.07.22 ·
864 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

网络层知识

考研
原创
发布博客 2022.07.21 ·
527 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

数据链路层知识点

考研
原创
发布博客 2022.07.18 ·
514 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

物理层知识点

物理层知识点
原创
发布博客 2022.07.09 ·
258 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

计算机网络体系结构

计算机网络
原创
发布博客 2022.07.04 ·
517 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

折半查找(数组)

#include<iostream>using namespace std;int Search(int n[],int s){ int low = 0, high = 9, mid; while (low <= high) { mid = (low + high) / 2; if (n[mid] == s) return mid; else if (n[mid] > s) high = mid - 1; else low = mid
原创
发布博客 2022.05.26 ·
98 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

图的定义,遍历操作

#include<iostream>#define MaxVertexNum 100using namespace std;typedef struct { char Vex[MaxVertexNum];//顶点表 int Edge[MaxVertexNum][MaxVertexNum];//邻接矩阵 int vexnum, arcnum;//顶点数,弧数}MGraph;typedef struct ArcNode {//边表结点 int adjvex;//弧指向顶点的
原创
发布博客 2022.05.26 ·
86 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

栈的遍历(递归)

#include<iostream>#define MaxSize 50using namespace std;typedef struct BiTNode { int data; struct BiTNode* lchild, * rchild;}BiTNode,*BiTree;typedef struct Queue { int front, rear; int data[MaxSize];}Queue;void visit(BiTNode* T);void Init
原创
发布博客 2022.05.26 ·
636 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

栈的括号匹配

#include<iostream>#define MaxSize 50using namespace std;typedef struct { char data[MaxSize]; int top;}SqStack;void InitStack(SqStack& S){ S.top = -1;}bool Push(SqStack& S,char x){ if (S.top == MaxSize - 1) return false; S.da
原创
发布博客 2022.05.13 ·
107 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

循环队列基本操作

#include<iostream>#define MaxSize 50using namespace std;typedef struct { int data[MaxSize]; int front, rear;}SqQueue;void InitQueue(SqQueue& Q){ Q.rear = Q.front = 0;}bool isEmpty(SqQueue& Q){ if (Q.rear = Q.front) return true
原创
发布博客 2022.05.13 ·
76 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

顺序栈基本操作

#include<iostream>#define MaxSize 50using namespace std;typedef struct { int data[MaxSize]; int top;}SqStack;void InitStack(SqStack& S){ S.top = -1;}bool StackEmpty(SqStack& S){ if (S.top == -1) return true; else return fals
原创
发布博客 2022.04.29 ·
68 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

链表基本操作

#include<iostream>using namespace std;typedef struct LNode { int data; struct LNode* next;}LNode,*LinkList;//带头结点头插法LinkList HeadInSert(LinkList& L){ LNode* p; int x; cin >> x; L = (LinkList)malloc(sizeof(LNode)); L->next
原创
发布博客 2022.04.29 ·
514 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

顺序表基本操作

#include<iostream>#define MaxSize 50using namespace std;typedef int Elemtype;typedef struct { int data[MaxSize]; int length;}SqList;void InitList(SqList& L){ for (int i = 0; i < MaxSize; i++) L.data[i] = 0; L.length = 0;}void
原创
发布博客 2022.04.29 ·
62 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

一元多项式表示相加

例子:A=7+3x+9x8+5x17A = 7+3x+9x^8+5x^17A=7+3x+9x8+5x17B=8x+22x7−9x8B = 8x+22x^7-9x^8B=8x+22x7−9x8#include <iostream>#include <malloc.h>using namespace std;typedef struct Term{ float coef;//x前面的系数 int expn; //x的次方数 struct Term *next;}
转载
发布博客 2021.10.05 ·
118 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

3D柴犬旋转相册

3D柴犬旋转相册(一心想成为铲屎官的我,看到这个网上的教程就立马做了个,嘿嘿嘿)首先三个文件放在一个文件夹里html代码如下<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title>css-3d旋转</title> <link rel="stylesheet" href="css/style.css" /> </head>
原创
发布博客 2020.11.18 ·
224 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

css水平与垂直导航栏

css水平与垂直导航栏理解皆在代码中水平:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style>
原创
发布博客 2020.11.17 ·
523 阅读 ·
0 点赞 ·
0 评论 ·
6 收藏

Html5将视频设置为背景并加上音频

Html5将视频设置为背景<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> vide
原创
发布博客 2020.11.17 ·
2444 阅读 ·
6 点赞 ·
0 评论 ·
15 收藏

利用css设置背景图片(一张图片)

利用css设置背景图片<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style type="text/css">
原创
发布博客 2020.11.17 ·
2298 阅读 ·
4 点赞 ·
0 评论 ·
6 收藏
加载更多