本文转自:https://www.cnblogs.com/lxk2010012997/p/5221963.html 类加载器的层次结构: 引导类加载器(bootstrap class loader) 用来加载java的核心库(JAVA_HOME/jre/lib/rt.jar,或sun.boot.cl ...
分类:
编程语言 时间:
2020-06-28 00:33:39
阅读次数:
106
/*增设tag数据,区分队满队空*/ #include<stdio.h> #define MaxSize 10 typedef char ElemType; typedef struct { ElemType data[MaxSize]; int front,rear,tag; }SqQueue; ...
分类:
其他好文 时间:
2020-06-27 20:16:37
阅读次数:
60
/*增设表示元素个数的数据*/ #include<stdio.h> #define MaxSize 10 typedef char ElemType; typedef struct { ElemType data[MaxSize]; int front,rear; int size; }SqQueu ...
分类:
其他好文 时间:
2020-06-27 19:54:01
阅读次数:
66
1、与HTML结合方式 1.内部JS 定义<script> 标签体内就是js代码 2.外部JS 定义<script> 通过src属性引入外部的js文件 JS存放位置会影响执行顺序 2、注释 1.单行 // 多行 /**/ 快捷键 ctrl+shift+/ 3、数据类型: 1. number:数字 整 ...
分类:
编程语言 时间:
2020-06-27 13:17:39
阅读次数:
81
1. 头结点表示链表中第一个结点的存储位置 2. 最后一个结点的存储位置为空(NULL); #ifndef __LINKLLIST_H__ #define __LINKLLIST_H__ #define TRUE 1 #define FALSE 0 #define OK 1 #define ERRO ...
分类:
编程语言 时间:
2020-06-27 09:33:53
阅读次数:
60
EasyX Library for C++ (Ver:20190415(beta)) http://www.easyx.cn EasyX.h 1 #pragma once 2 3 #ifndef WINVER 4 #define WINVER 0x0400 // Specifies that the ...
分类:
其他好文 时间:
2020-06-26 22:19:47
阅读次数:
157
##FileReader的方法与属性 |方法名|参数|描述| | | | | |readAsText|(file,encoding)|以文本文件的方式来读取,其中encoding参数指定读取该文件时所用的字符集,该参数的默认值是UTF-8| |readAsBinaryString|(file)|以二 ...
分类:
Web程序 时间:
2020-06-26 22:14:30
阅读次数:
58
题目 https://www.luogu.com.cn/problem/P1991 分析 本题使用kruskal算法,再能保证所有的节点都能够被连接的情况下,将构成最小生成树的边的长度入队进行排列,除去可以使用卫星电话的节点(就是除去排在前面最长的边)输出最长的边 至于添加边的话,要添加不同节点之间 ...
分类:
其他好文 时间:
2020-06-26 18:10:15
阅读次数:
64
1 #define Max 50 2 #define ElemType int 3 #define OK 1 4 using namespace std; 5 6 typedef struct Stack //顺序栈的定义 7 { 8 int data[Max]; 9 int top; 10 }St ...
分类:
其他好文 时间:
2020-06-26 18:02:19
阅读次数:
49
一、第六章内容小结 本章内容思维导图 1. 邻接矩阵储存 1 #define MVNum 100 //最大顶点数 2 typedef char VerTexType;//假设顶点的数据类型为字符型 3 typedef int ArcType;//假设边的权值类型为整型 4 5 typedef str ...
分类:
其他好文 时间:
2020-06-26 16:49:04
阅读次数:
61