会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
霖霖的信箱
博客园
首页
新随笔
联系
订阅
管理
[置顶]
Linux常用命令
摘要: 1.文件颜色的代表含义 蓝色表示目录 绿色表示可执行文件 红色表示压缩文件 浅蓝色表示链接文件 灰色表示其他文件 红色闪烁表示链接的文件有问题了 黄色表示设备文件,包括block、char、fifo 2.关机/重启 shutdown -h now 立即关机 shutdown -h 5 5分钟后关机
阅读全文
posted @ 2023-08-08 15:55 霖霖的信箱
阅读(183)
评论(0)
推荐(0)
2022年7月31日
Java高级
摘要: 抽象类和抽象方法 1.定义 随着继承层次中一个个新子类的定义,类变得越来越具体,而父类则更一般,更通用。 类的设计应该保证父类和子类都能够共享特征。 有时候将一个父类设计的非常抽象,以至于他都没有具体的实例,这样的类叫做抽象类。 优势:不能被实例化 2.abstract修饰类:抽象类 抽象类不能实例
阅读全文
posted @ 2022-07-31 20:32 霖霖的信箱
阅读(83)
评论(0)
推荐(0)
2022年7月19日
数据结构 一元多项式加减法计算器
摘要: #include <iostream> using namespace std; struct Node//定义双向链表,方便降幂输出 { int C; int index; struct Node*prior; struct Node*next; }; void init(struct Node*
阅读全文
posted @ 2022-07-19 09:09 霖霖的信箱
阅读(297)
评论(0)
推荐(0)
数据结构 图
摘要: #include<iostream> using namespace std; #define MaxInt 32767 #define MVNum 100 int i,j,k; typedef struct { char vexs[MVNum];//顶点表 int arcs[MVNum][MVNu
阅读全文
posted @ 2022-07-19 09:07 霖霖的信箱
阅读(189)
评论(0)
推荐(0)
数据结构 栈与队列
摘要: #include<iostream.h> #include<stdlib.h> #include<math.h> #define MAXSIZE 20 #define ERROR 0 #define OVERFLOW 0 #define OK 1 typedef int SElemType; typ
阅读全文
posted @ 2022-07-19 09:06 霖霖的信箱
阅读(23)
评论(0)
推荐(0)
数据结构 二叉树
摘要: #include<iostream> using namespace std; typedef struct Node{ char data; struct Node *lchild,*rchi ld; }BTreeNode,*BTree; void InitBT(BTree &BT)//初始化二叉
阅读全文
posted @ 2022-07-19 09:06 霖霖的信箱
阅读(27)
评论(0)
推荐(0)
数据结构 单链表
摘要: #include<iostream.h> #define null 0; #define OK 1; #define ERROR 0; typedef int Status; typedef struct Node{//定义单链表存储结构 int data; struct Node *next; }
阅读全文
posted @ 2022-07-19 09:04 霖霖的信箱
阅读(145)
评论(0)
推荐(0)
数据结构 顺序表
摘要: #include<iostream.h> #include<stdlib.h> #define max 20 typedef struct{//储存结构 int key; char other; }elemtype; typedef struct{ elemtype *elem; int lengt
阅读全文
posted @ 2022-07-19 09:03 霖霖的信箱
阅读(149)
评论(0)
推荐(0)
2022年7月17日
渐变色搭配网站(模仿)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi
阅读全文
posted @ 2022-07-17 22:53 霖霖的信箱
阅读(152)
评论(0)
推荐(0)
搭配色轮播(CSS进阶版本)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi
阅读全文
posted @ 2022-07-17 10:41 霖霖的信箱
阅读(105)
评论(0)
推荐(0)
下一页
公告