E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
inte
7-6 列出连通集 (25分)
defineMax10typedefstructGnode*ptrtoG;structGnode{intnv,ne;intG[Max][Max];};intstate[Max]={0};ptrtoGcreate(intN,
intE
WhlittLou
·
2020-08-14 14:49
02-线性结构1 一元多项式的乘法与加法运算
intcoefficient;intexponent;structnode*next;}PolyNode,*Polynomial;PolynomialReadPoly();voidAttach(intc,
inte
asunamashiro
·
2020-08-14 13:47
中国大学MOOC-陈越
何钦铭-数据结构-2015秋
线性链表的合并
两个链表头节点分别是La,Lb一、将所有在Lb中,不在La中的数据元素插入到La中intLocateElem(List*head,
inte
){//查找在链表中有没有数据域是e的节点,有的话返回1,否则0List
your legend
·
2020-08-14 13:19
php函数error_reporting
2E_WARNING(
inte
weixin_34194317
·
2020-08-14 12:23
迪杰特斯拉算法
#include#includeusingnamespacestd;intmain(){intinf=99999999;intn,m;//n顶点个数,m边的条数scanf("%d%d",&n,&m);
inte
wfe123456
·
2020-08-14 08:46
交换排序之快速排序原理、源码及时间、空间复杂度
源码尽可能地减少递归调用的次数//quick_sorttemplateintquick_sort(T*t,ints,
inte
){intcompare
scuyxi
·
2020-08-14 07:27
基本算法
C语言数据结构循环队列的相关操作(创建、出队、入队、取对头元素)
defineMAXSIZE1024typedefstructseq_queue{elementdata[MAXSIZE];intrear;//队尾intfront;//对头}Seq_Queue;Seq_Queue*creat_seqqueue();//循环队列的创建
inte
@future
·
2020-08-14 07:08
数据结构
c语言
leetcode 581. 最短无序连续子数组 排序nlogn vs O(n)解法
classSolution{public:intfindUnsortedSubarray(vector&nums){vectornn(nums);sort(nn.begin(),nn.end());ints=0;
inte
DUT_LYH
·
2020-08-14 06:17
#
Leetcode
老旧的桥题解
对于每一个,找出在第i(1=2;i--){//从m座桥一直建到第二座桥
inte
=FindSe
lpc大菜逼
·
2020-08-14 05:16
并查集
算法
Cisco Packet Tracer 实现路由之间Vlan三个实验
注意点一:PC机需要设置IP还有下面的子网掩码然后在路由器设置如下(括号里面的是全名,可以输出简写):enable:进入特权模式conf(configure)term(terminal)://进入全局模式
inte
初学者_小铭
·
2020-08-14 05:22
基本软件使用
线段树练习1
l表示墙的长度1usingnamespacestd;structnode{intx,y;boolcover;}a[1000011];intl,n,x1,y1;voidinsert(intp,intb,
inte
SSL_HJQ
·
2020-08-14 05:17
线段树
给定二叉树的前序和中序,判断是否可以构成一颗二叉树,如果可以输出后序
intpre[kMaxN]={0};intin[kMaxN]={0};intpost[kMaxN]={0};intn=0;boolConstruct(intps,intpe,intis,intie,ints,
inte
bobten2008
·
2020-08-14 04:24
杂
扩展欧几里德算法解线性方程ax+by=c [模板]
b){x=1;y=0;returna;}
inte
=exgcd(b,a%b,x,y);intkkz=x;x=y;y=k
ShinyaLicone
·
2020-08-14 04:19
扩展欧几里德算法
单臂路由
SW1的配置:vlanbat1020
inte
0/0/1portlink-typeaccessportdefaultvlan10
inte
0/0/2portlink-typeaccessport
梦回西游戏天真~
·
2020-08-14 01:28
硬币游戏
]}//即分为的两种情况:A先取2个,或者先取1个#include#include#defineN2005usingnamespacestd;inta[N];intdp[N];intsum(ints,
inte
yuanba_xs
·
2020-08-13 23:43
动态规划
图的最短路径算法(二)-任意节点最短路径
多个节点之间的最短路径#include//依次判断节点i,j之间只允许经过节点1,2,3...n所获得的最短路径//类似于动态规划的思想intmain(){
inte
[10][10],k,i,j,n,m,
烟雨流年
·
2020-08-13 23:46
C++
算法
【java.lang.IndexOutOfBoundsException(越界)异常】- toIndex = 200数组截取异常
maxIndex:strings.size();Listlist=strings.subList(0,maxIndex);for(Integerinteger:list){System.out.println(
inte
凯TechnologyLife
·
2020-08-13 21:45
有问题的一天
Warning: Using a password on the command line
inte
使用zabbix自带模板对mysql进行监控时,发现mysql5.6以上版本在使用mysqladmin时会发出警告:“Warning:Usingapasswordonthecommandlineinterfacecanbeinsecure.”。这样zabbix服务端获取数值的时候,会带有该字符串,导致报错。最后实验成功的方法是:将mysqladmin的警告信息重定向到/dev/null,忽略掉告警
weixin_33701617
·
2020-08-13 21:18
C语言调用汇编和汇编调用C语言
在汇编里面,用EXPORT把C语言定义的函数名引进来,再开始编写函数名开始的段#includeexternintsum(inta,intb,intc,intd,
inte
,intf);intmain(){
zhj失落之地
·
2020-08-13 20:14
Linux相关
杭电 2037(C)
=EOF&&n){//输入时间intti[100][2]={0},sum=0,min=0,temp;
inte
=1;for(inti=0;iti[i+1][0]){//比较前
阿雨_
·
2020-08-13 18:21
最小花费
#include#include#includeusingnamespacestd;#defineMAX100010intx,y;charstr[MAX];intgetfinal(
inte
){for(inti
Think_Idea
·
2020-08-13 15:55
贪心
关于二分查找的几个分类应用
#includeusingnamespacestd;
inte
1(inta[],intn,intval)//二分查找val是否在数组里,不在返回-1{intl=0,r=n-1;while(l>1);if(
li_heidaner
·
2020-08-13 15:52
二分查找
unity工具————网络判断
NetworkReachability.ReachableViaLocalAreaNetwork;}}//是否是移动网络publicstaticboolIs4G{get{returnApplication.
inte
骚年狠冲洞
·
2020-08-13 15:44
初级
Unity
ACPI电源状态/CPU工作状态
1992年1月,微软(Microsoft)与英特尔(
Inte
Mcdull28
·
2020-08-13 15:31
BIOS
C语言函数调用过程的汇编分析
下面一段C程序:intbar(intc,intd){
inte
=c+d;returne;}intfoo(inta,intb){returnbar(a,b);}intmain(void){foo(2,3);
diyudong4681
·
2020-08-13 13:58
杭电HDUacm2037
#include#includeusingnamespacestd;structtime{ints;
inte
;booloperator<(consttime&A)const{returne
aigui1439
·
2020-08-13 12:18
两个数值的交换
1:一般来讲,都会使用中间变量进行赋值交换来完成源代码如下:#includeintmain(){inta,b;
inte
=1;//引用中间变量,在进行初始化.printf("请输入两个整数:\n");scanf_s
老鸟Frank
·
2020-08-13 11:24
数据结构 矩阵的快速转置 矩阵相乘(行逻辑连接顺序表)
快速转置#include#includeusingnamespacestd;classnum{public:intx,y;
inte
;introw,col;}a[100000],b[100000];intsum
ACM2272902662
·
2020-08-13 11:44
数据结构学习
leetcode 1014.最佳观光组合
代码示例:classSolution{publicintmaxScoreSightseeingPair(int[]A){intans=
Inte
zhu_r_h
·
2020-08-12 18:10
可爱宝宝做leetcode
C#结构体和字节数组的转换
中可以很方便的把一个char[]数组转换为一个结构体,而在C#却不能直接把byte数组转换为结构体,要在C#中发送结构体,可以按以下方法实现:(1)定义结构体://命名空间usingSystem.Runtime.
Inte
超人
·
2020-08-12 17:11
c#
byte
object
struct
string
null
MYSQL 中判断2个逗号分割的字符串是否有交集
DROPFUNCTIONIFEXISTS`
INTE
_ARRAY`;delimiter//--集合交集检查函数--@paramlongtextsetAA集合如"1,3,5,9"--@paramlongtextsetBB
shinekrad
·
2020-08-12 17:54
MYSQL
arduino学习笔记七 数码管、按键
数码管在使用时请接一定的电阻,以免数码管造成不必要的牺牲这里数码管a、b、c、d、e、f、g、dp段分别对应端口7.6.5.11.10.8.9.4inta=7;intb=6;intc=5;intd=11;
inte
甜航一直在
·
2020-08-12 17:43
笔记
单片机
arduino
小白的算法实战(二):交通灯问题
includeusingnamespacestd;classNode{public:intcolor;stringname;Node(){color=0;}};intmain(){inti,j,cnt_color=1,cnt_v=0;
inte
啥都不会的小白
·
2020-08-12 16:05
算法实战
MYSQL 中判断2个逗号分割的字符串是否有交集
使用存储过程:DROPFUNCTIONIFEXISTS`
INTE
_ARRAY`;delimiter//--集合交集检查函数--@paramvarchar(255)setAA集合如"1,3,5,9"--@
齐玉林
·
2020-08-12 16:54
sql
配置mstp实现负载均衡
在eNSP中新建如下拓扑步骤:1.关闭连接主机的端口的生成树协议:sw1,sw2,sw3
inte
0/0/3stpdisableinte0/0/4stpdisable2.创建vlan:sw1,sw2,sw3vlanbatch10203
weixin_34415923
·
2020-08-12 13:50
递归下降语法分析程序
include#include#includechara[50],b[50],d[200],e[10];charch;intn1,i1=0,flag=1,n=5;inttotal=0;/*步骤计数器*/
intE
weixin_34101229
·
2020-08-12 13:52
链路聚合实验
拓扑图SW3配置vlan10
inte
0/0/5portlink-typeaccessportdefaultvlan10//端口类型为access,划分为vlan10inteth-trunk1//创建聚合端口
zzzf98
·
2020-08-12 12:14
华为 eNSP MSTP实验
目的:VLAN10与VLAN20可以实行互访,拓扑图如下所示:LSW1上的设置:[SW1]vlanbat1020[SW1]
inte
0/0/1[SW1-Ethern
富士山fy
·
2020-08-12 11:48
实验
应对steamVR 软件报错306的问题
电脑配置:i3-4代,双显卡NVIDIAGT620;
inte
无所事事的我
·
2020-08-12 09:01
pixhawk无人机
图的三种表示方法 邻接矩阵,邻接表,邻接表改进版 及其优劣分析(附代码)
表示顶点i和j是相邻的,即i和j之间有一条边A[i][j]=0表示顶点i和j是不相邻的,即i和j之间有没有边#include#definemax10usingnamespacestd;intV;//顶点个数
intE
De_hua_1
·
2020-08-12 00:36
数据结构c++
c++部落问题
UnionFindSet(intn){nums=n;_init_();};void_init_(){parent_=vector(nums+1,1);root_=vector(nums+1,-1);}intFind(
inte
小蛋白是我的最爱
·
2020-08-12 00:44
c++
h3c vrrp 备份小实验
h3cvrrp小实验R1:[r1]
inte
1.10[r1-Ethernet1.10]vlan-typedot1qvid10[r1-Ethernet1.10]ipadd192.168.10.124[r1-
weixin_34050427
·
2020-08-11 23:34
ArrayList解析
importjava.util.stream.StreamSupport;publicinterfaceListextendsCollection{//获取元素个数,如果超过Integer.MAX_VALUE返回
Inte
笑strive
·
2020-08-11 23:31
Java
进阶知识
Pandas数据处理基础7
例如,我们使用Pandas数据处理基础6中的插值后的数据df_interpolate绘制线形图df_
inte
阳光下的米雪
·
2020-08-11 22:02
Pandas数据处理
python
可视化
C语言实现图的邻接矩阵和邻接表存储
C语言实现图的邻接矩阵和邻接表存储,其中包含如下函数:CreateMat(MatGraph&g,intA[MAXV][MAXV],intn,
inte
):由边数组A、顶点数n和边数e创建图的邻接矩阵g。
mencre
·
2020-08-11 22:37
#
数据结构
两个多项式相加的程序(链表)
intn);3、创建两个多项式相加的函数polypointerPolyAdd(polypointera,polypointerb);其中,PolyAdd函数调用函数polypointerAttach(
inte
NancyNancy_
·
2020-08-11 21:44
数据结构
思科针对用户的一些安全小特性
端口安全可以将端口学习MAC地址的数量做出限制可以限制哪些mac地址可以接入本端口SW3(config)#
inte
0/0SW3(config-if)#switchportmodeaccess注意:动态端口不允许配置端口安全
DREW(德鲁)
·
2020-08-11 13:26
技术大咖会
带头节点的双链表及其基本操作(Java实现)
publicclassDbNode{protectedinte;protectedDbNodenext;protectedDbNodeprevious;publicDbNode(){}publicDbNode(
inte
一念花开12138
·
2020-08-11 12:36
数据结构与算法
带头节点的单链表及其基本操作(Java实现)
packagelwh.linearlist.linklist;publicclassNode{protectedinte;protectedNodenext;publicNode(){};publicNode(
inte
一念花开12138
·
2020-08-11 12:35
数据结构与算法
AT89C51 与 AT89S51/52 的区别
所以我整理了一份关于这方面的资料.这里,初学者要澄清单片机实际使用方面的一个产品概念,MCS-51单片机是美国
INTE
公司于1980年推出的产品,典型产品有8031(内部没有程序存储器,实际使用方面已经被市场淘汰
gmcxsqjh
·
2020-08-11 11:42
嵌入式系統
c
工作
编程
产品
存储
加密
上一页
18
19
20
21
22
23
24
25
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他