51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#The
LCN 错误: attempts to join the non-existent transaction group
错误信息:com.codingapi.txlcn.logger.AbstractTxLogger.error(AbstractTxLogger.java:70)-businesscodeerrorattemptstojointhenon-existenttransactiongrouprpcexecuteservice...
代码星球
·
2020-12-27
LCN
错误
attempts
to
join
Painting The Fence(贪心+优先队列)
题目大意:给m种数字,一共n个,从前往后填,相同的数字最多k个在一起,输出构造方案,没有则输出"-1".解题思路:贪心的思路,优先选择数量多的先填,这样会让最后剩余相同的数字数量最少,所以我们优先选数量最多的两种数字填,最后剩下的(某一种)就填到它前面的位置去,一定是和相同的填在一起,这里就不证明了,自己画下就可以得到...
代码星球
·
2020-12-27
Painting
The
Fence
贪心
优先
Neither shaken nor stirred(DFS理解+vector存图)
题目链接:http://acm.timus.ru/problem.aspx?space=1&num=2013题目理解:给定n个点的有向图:下面n行,第一个数字表示点权,后面一个数字m表示有m条边。起点是1.对于每个点,输出2个值表示前驱点权1和该点点权2。1、就是若有多条路径且全为“同一个值”输出“同一个值”,...
代码星球
·
2020-12-27
Neither
shaken
nor
stirred
DFS
The puzzle
Thepuzzle:传送门:http://acm.hdu.edu.cn/showproblem.php?pid=6489找大佬讲了一下这道题,但还是不懂为什么要这样做,先记录一下以后再研究研究;解题思路: 这道题是把序列换几次能到增序列,一上来pos数组记录一下每个数都在什么位置,然后就从1开始和第一个数进行...
代码星球
·
2020-12-27
The
puzzle
P2921 [USACO08DEC]在农场万圣节Trick or Treat on the Farm
EveryyearinWisconsinthecowscelebratetheUSAautumnholidayofHalloweenbydressingupincostumesandcollectingcandythatFarmerJohnleavesintheN(1<=N<=100,000)stallsc...
代码星球
·
2020-12-27
P2921
USACO08DEC
农场
万圣节
Trick
The XOR Largest Pair
刷刷书上的例题在给定的N个整数A1,A2……An中选出两个进行XOR运算,得到的结果最大是多少?N<=105,0<=Ai<231SOlution:我们思考到对于两个数相异或,是先将两数转为二进制数,然后比较同一位上不同为1否则为0,然后观察题目发现每个数的二进制不会超过31位,那么容易想到直接将每个数...
代码星球
·
2020-12-27
The
XOR
Largest
Pair
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK
在Eclipse中Maveninstall一个项目失败,提示:Nocompilerisprovidedinthisenvironment.PerhapsyouarerunningonaJREratherthanaJDK解决方案:Window-->Preference...
代码星球
·
2020-12-26
No
compiler
is
provided
in
Cannot locate the chosen ObjectFactory implementation: spring
错误信息:Causedby:CannotlocatethechosenObjectFactoryimplementation:spring-[unknownlocation] atorg.apache.struts2.config.AbstractBeanSelectionProvid...
代码星球
·
2020-12-26
Cannot
locate
the
chosen
ObjectFactory
打开Eclipse提示“The default workspace “xxxx” is in use or cannot be created Please choose a different one“
原因:出现这种情况一般是workspace的配置文件中出现了.lock文件(workspace/.metadata/.lock),锁定了workspace。把.lock文件删除即可。如果该文件不能删除,可能是因为javaw.exe进程未结束,结束该进程及eclipse.exe进程即可删除。正常情况下,如果你打开了一个w...
代码星球
·
2020-12-26
打开
Eclipse
提示
The
default
The working copy needs to be upgraded svn: The working copy at
错误信息:Theworkingcopyneedstobeupgradedsvn:Theworkingcopyat'F:JAVAProjectPAW-VRVEIS-JJ-2.0WebContentWEB-INFpagesapplicationAddressAction'istooold(format10)toworkwi...
代码星球
·
2020-12-26
The
working
copy
needs
to
promise解决异步问题:.then和async_await的渊源
1.为什么要使用回调函数?当我们的请求既有异步,又有同步的时候,如果异步请求在同步请求的上方,异步请求比较慢,要先等待异步请求执行完再去执行同步请求,比较耗时。这时候我们将异步请求放在一个回调函数里,就不必等待异步请求执行完再去执行同步请求。其实使用回调函数最终目的是为了获得外层普通函数(同步请求)的执行结果res,使...
代码星球
·
2020-12-25
promise
解决
异步
问题
.then
Promise.then链式调用顺序
想用Promise异步实现一个递归调用的接口,用来做简单AI的动作序列。发现一开始接触这个then的时候,不是很清楚,参考了网上的一些写法,改成自己的有问题,所以先静下心来研究一下这个调用的顺序问题 先看个例子,参考[1]newPromise((resolve,reject)=>{console.log...
代码星球
·
2020-12-24
Promise.then
链式
调用
顺序
mysql启动时报错:Starting MySQL... ERROR! The server quit without updating PID file (/opt/mysql/data/mysql.pid) 的解决方法
1、可能是/opt/mysql/data/数据目录mysql用户没有权限(修改数据目录的权限) 解决方法:给予权限,执行 "chown-Rmysql.mysql/opt/mysql/data" 然后重新启动mysqld 2、可能进程里已经存在mysql进程...
代码星球
·
2020-12-23
mysql
启动
报错
Starting
MySQL...
[服务器时区问题]PHP Warning: strftime(): It is not safe to rely on the system's timezone set
当运行一些程序时,在httpd日志中会有如下警告日志:PHPWarning: strftime():Itisnotsafetorelyonthesystem'stimezonesettings.Youare*required*tousethedate.timezonesettingorthedate_defa...
代码星球
·
2020-12-19
服务器
时区
问题
PHP
Warning
The magic method __set() must have public visibility and cannot be static in
错误信息就是这个:Themagicmethod__set()musthavepublicvisibilityandcannotbestatic 最佳答案 __set必须是public访问权限.并且不能定义成静态方法.把private改成public即可....
代码星球
·
2020-12-19
The
magic
method
set
must
首页
上一页
...
117
118
119
120
121
...
下一页
尾页
按字母分类:
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
其他