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
whi
南唐后主李煜《相见欢》的英文版
Inthenightandreticence,uptothewestpavillionalong,
whi
AA奶茶
·
2020-07-11 15:52
Python3中的while循环语句
语句块,可以在这里嵌套嵌套while循环iftest:break#跳出整个循环语句,跳出最近的外层循环iftest:continue#结束本次循环,不会执行后面的语句了(statements2),循环来到
whi
python编程汇
·
2020-07-11 08:11
python
#
python基础
矩阵的回旋打印
;intc=count*count;//横向坐标累加器intj=0;//纵向坐标累加器intk=0;//横纵向控制,1为横向,-1为纵向intm=1;//坐标累加器,1为递增,-1为递减intn=1;
whi
baitiandeye
·
2020-07-11 02:52
java知识点缀
string
class
c
Linked List Cycle - 循环链表
给出一个链表,判断他是否是一个循环链表(不开辟多余的内存空间进行解决,意思是在利用链表本身的特性进行解决问题)分析:我们可以开辟两个指针节点,一个快的节点,每次跳跃两步,一个慢的节点,每次跳跃一步,然后进行一个
whi
郑明明
·
2020-07-11 00:58
PAT 7-31 C语言练习题
输入格式:在一行内给出一个自然数N0(N0intcal(intn){intsum=0;
whi
yuge_jiayou
·
2020-07-10 20:03
练习题
PAT
C
如何读取一行不定数量的输入
看下面这段程序intuy;
whi
寒羽一身待芊芊
·
2020-07-10 20:43
c++相关
Synchronized和ReentrantLock
publicclassTicketimplementsRunnable{//当前拥有的票数privateintnum=100;publicvoidrun(){
whi
SDY_0656
·
2020-07-10 19:59
java,NIO,UDP协议网络通信DEMO
dc.configureBlocking(false);Scannerscanner=newScanner(System.in);ByteBufferbuffer=ByteBuffer.allocate(1024);//
whi
三井08
·
2020-07-09 08:05
C语言学习记录——逻辑语句
表达式)多路分支选择{case常量1:语句1;//break;break作用是使流程转到switch语句的末尾(即右花括号处)case常量2:语句2;//break;default:n+1}3.循环语句
whi
提着斧头去挖矿
·
2020-07-09 07:46
C语言
老师想知道从某某同学当中,分数最高的是多少,现在请你编程模拟老师的询问。当然,老师有时候需要更新某位同学的成绩. 输入描述:
newArrayList();//将成绩存入动态数组中for(inti=0;i
whi
犀牛先生
·
2020-07-09 04:35
Java编程练习
编程
java 用数组编写一个简单的学生管理系统
(System.in);System.out.print("请输入学生总人数");intcount=scn.nextInt();Student[]students=newStudent[count];
whi
y_aaaa
·
2020-07-09 02:16
图的遍历(PTA题目解答)
){test[i]=1;for(intj=0;j>n;cin>>e;vector>res(n,vector(n,0));vector>dfs_num;vectordfs_sub;intcount=0;
whi
jikiy9
·
2020-07-09 01:15
c++
linux服务器巡检脚本
bashBLK='[1;30m'RED='[0;31m'YEL='[0;33m'BLU='[0;34m'CYN='[0;96m'GRN='[0;32m'RES='[0;0m'BLD='[1m'#
WHI
你似北风
·
2020-07-08 22:55
libev学习系列之四:ev_loop事件循环
例子一、前言这个是基于官网资料以及这里https://segmentfault.com/a/1190000006173864基本上ev_loop你可以理解为一个大的循环,之前我们需要自己在线程里创建一个
whi
xiaoyaoyou.xyz
·
2020-07-08 19:19
网络编程
libev学习
商城系统:包含用户注册/用户登陆/商品浏览/我的购物车功能.
returnarg()returnreturninnerdefregister():
whi
weixin_30588675
·
2020-07-08 14:16
python 循环结构
forcins:语句块列表遍历循环foriteminls:语句块文件遍历循环fi表示文件的标识符,line表示文件中的每一行forlineinfi:语句块无限循环表达式,直到条件不满足的时候,才不执行语句块
whi
二仪式
·
2020-07-08 11:45
python
一个小球,从高为H的地方下落,下落弹地之后弹起高度为下落时的一半, 比如第一次弹起高度为H/2,如此往复,计算从小球H高度下落到第n次弹地 往返的总路程。
includeusingnamespacestd;doublefun(intn){if(n==1)return1;elsereturnfun(n-1)+1/pow(2,n-2);}intmain(){intn;doubleH;
whi
老鼠哎大米
·
2020-07-08 08:08
水题
数学知识
Python代码结构
python允许下面用法:1
whi
Kichlvichn·хуту
·
2020-07-08 03:39
Python
Tomcat源码编译、调试
详见(http://tomcat.apache.org/
whi
Phostern
·
2020-07-07 19:30
java快速读取zip包中指定文件的字节流
ZipEntryentry;//得到zip包中文件ZipFilezf=newZipFile("d:\\a.zip");Enumerationenu=zf.entries();
whi
lgjbd
·
2020-07-07 13:53
网易面试题 int a=123 转换成 321 整数翻转问题
classSolution{public:intreverse(intx){constintint_max=0x7fffffff;constintint_min=0x80000000;longlonganwser=0;
whi
github_27372715
·
2020-07-07 08:37
java
012 C语言基础
='\0')num++;
whi
PYGY
·
2020-07-07 07:22
Map的常用方法
遍历Map的常用方法:1.通过entrySet,效率高Mapmap=newHashMap();Iteratoriter=map.entrySet().iterator();
whi
6默默Welsh
·
2020-07-07 03:11
[2016/7/11]判断两个正数是否互质:欧几里得算法(辗转相除法)
判断是否互质代码如下:(如果求最大公因数,输出b即可)boolisrp(inta,intb){if(a==1||b==1)//两个正整数中,只有其中一个数值为1,两个正整数为互质数returntrue;
whi
zzuRingo
·
2020-07-07 01:06
2018年北邮计算机院复试上机题目
0usingnamespacestd;constintmaxn=100;intA[maxn];intmain(){intT;cin>>T;while(T--){longlongintn,sum=0;inti=0;cin>>n;
whi
Redemption1997
·
2020-07-07 00:32
北邮研究生复试上机
ERROR: No matching distribution found for botocore 1.17.0,=1.16.19 boto3-pytorch_transformer
(fromboto3->pytorch_transformers)、报错后,去https://pypi.org/project/botocore/#modal-close下载最新的botocore的.
whi
Rachel_Q
·
2020-07-06 23:25
debug
Leetcode 84. 柱状图中最大的矩形
(Len,0),R(Len,0);for(inti=0;iheights[i]){intx=sta.back();sta.pop_back();R[x]=i-1;}sta.push_back(i);}
whi
Bendaai
·
2020-07-06 20:10
leetcode--003. Longest Substring Without Repeating Characters
132msclassSolution{public:intlengthOfLongestSubstring(strings){setS;intL=0,R=0,n=s.length();intans=0;
whi
exmy
·
2020-07-06 20:03
leetcode
LeetCode Week2: Maximum Subarray、Merge k Sorted Lists
一、MaximumSubarray题目描述:Findthecontiguoussubarraywithinanarray(containingatleastonenumber)
whi
qy05
·
2020-07-06 17:48
LeetCode
【Educational Codeforces 】Round 66 (Rated for Div. 2).B Catch Overflow!
include#include#include#include#definelllonglongusingnamespacestd;constllinf=4294967296;intmain(){//coutS;
whi
红点雷龙XL
·
2020-07-06 06:16
Codeforce
二叉树的中序遍历----递归、循环,以及空间复杂度的优化 O(1)---线索二叉树
root->left);coutvalright);}}循环:voidpre(TreeNode*root){if(root==NULL)return;stackp;TreeNode*node=root;
whi
古城白衣少年i
·
2020-07-06 06:21
数据结构
每日一题——从尾到头打印链表
;intvalue;}publicclassPrintListReverse_06{publicvoidreverse(LinkNodeheadNode){Stackstack=newStack();
whi
寻玉儿
·
2020-07-06 04:21
BZOJ5123 线段树的匹配(树形dp)
include#include#includeusingnamespacestd;#definelllonglong#defineP998244353chargetc(){charc=getchar();
whi
weixin_30847865
·
2020-07-05 22:06
1009 说反话 (20 分)
();a[i]=c;countEngNum++;if(c==''||c=='\n'){b[countEng]=countEngNum-1;countEng++;countEngNum=0;}i++;}
whi
13921501962
·
2020-07-05 21:14
SQL Server循环插入数据
placecodenvarchar(16)beginset@ID=1set@eigyousyocode='1'set@datet='2015-05-0617:22:24.990'set@placecode='1'
whi
weixin_30731287
·
2020-07-05 21:08
Java学习笔记(待更新)
运算符的优先级5、基本数据类型的转换5.1、强制转换四、流程控制语句1、if循环结构2、if-else双分支选择结构3、练习4、if-else多分支结构5、switch多分支结构6、while循环7、do-
whi
勐泐游侠
·
2020-07-05 18:48
java学习
mac上java可以执行,javac报错
那么我们查看java的安装路径;1、用
whi
sssyyf
·
2020-07-05 15:16
jdk安装
mac
spring
jdk
mac
[RPI]树莓派监控温度及报警关机保护
/bin/sh#高温阈值hot_temp=80.0#低温阈值cold_temp=-70.0#过热预警连续出现次数hot_cnt=0#过冷预警连续出现次数cold_cnt=0
whi
tzwsoho
·
2020-07-05 15:39
Educational Codeforces Round 77 (Rated for Div. 2)
#include#definelllonglong#definescscanf#defineprprintfusingnamespacestd;intmain(){intT;sc("%d",&T);
whi
JZK-Keven
·
2020-07-05 08:56
codeforces
leetcode JavaScript水桶容积最大
letarr=[1,8,6,2,5,4,8,3,7]//方法1varmaxArea=function(height){letmax=0;letleft=0,right=height.length-1;
whi
卷尾猫
·
2020-07-05 08:15
面试题
JavaScript
javascript
面试题
leetcode
H5 仿原生APP密码输入
根据input的值来绘制圆点,具体见下面的代码:html请设置交易密码交易密码用于理财产品的购买与赎回操作less@baseFontSize:20px;.px2rem(@which,@size){@{
whi
Aaaaaaaaaaayou
·
2020-07-05 07:38
黑马程序员-提示用户输入一个正整数n,计算1-2+3-4+5-6+…+n的和 #include
includeintmain(){intn=0;while(n<=0){printf("请输入一个正整数:\n");scanf("%d",&n);}intsum=0;inta=0;//默认被加的数值if(n%2==0){
whi
mzh_ios
·
2020-07-05 00:17
DS18B20读取温度,ESP8266传输数据到电脑
*/voidDelayX10us(unsignedchart){do{_nop_();_nop_();_nop_();_nop_();_nop_();_nop_();_nop_();_nop_();}
whi
糖朝
·
2020-07-04 18:20
单片机
NYOJ-91:阶乘之和
include#defineN14usingnamespacestd;/*贪心算法,从小于n的最高阶乘减起*/longfac[N];voidCal(){inti;fac[1]=1;for(i=2;i>t;
whi
Silent-Jy
·
2020-07-04 09:09
贪心
剑指Offer:用两个栈实现队列(一刷)
classSolution{public:voidpush(intnode){stack1.push(node);}intpop(){
whi
Simpleholly
·
2020-07-04 08:16
剑指Offer
Codeforces Round #524 (Div. 2) B - Margarite and the best present (前缀和 + 模拟)
代码如下:#includeusingnamespacestd;intmain(){longlongq;scanf("%lld",&q);
whi
PK__PK
·
2020-07-04 07:46
CodeForces
思维
模拟
limits.h头文件的作用
**Purpose:*Containsdefinesforanumberofimplementationdependentvalues*
whi
NOHACKCC
·
2020-07-04 07:47
C/C++
Codeforces Round #509 (Div. 2) B. Buying a TV Set
ACcode:#include#includeusingnamespacestd;typedeflonglongll;lln,m,x,y,s1,s2,ans;llgcd(llm,lln){
whi
图南1204
·
2020-07-04 06:03
codeforces
bzoj4736 温暖会指引我们前行(lct)
defineN400010inlineintread(){intx=0,f=1;charch=getchar();while(ch'9'){if(ch=='-')f=-1;ch=getchar();}
whi
Icefox_zhx
·
2020-07-04 06:37
bzoj
link
cut
tree
Java 同步函数
同步代码块的锁是任意对象建议使用同步代码块*//**/classTicketimplementsRunnable{privateintnum=100;Objectobj=newObject();publicvoidrun(){
whi
Aseveng
·
2020-07-04 04:24
Java学习
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
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
其他