51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#TC
leetcode 653. Two Sum IV
GivenaBinarySearchTreeandatargetnumber,returntrueifthereexisttwoelementsintheBSTsuchthattheirsumisequaltothegiventarget.Example1:Input:5/36/247Target=9Output:Tr...
代码星球
·
2021-01-23
leetcode
653.
Two
Sum
IV
leetcode 656. Coin Path
Givenanarray A (indexstartsat 1)consistingofNintegers:A1,A2,...,AN andaninteger B.Theinteger B denotesthatfromanyplace(suppos...
代码星球
·
2021-01-23
leetcode
656.
Coin
Path
leetcode 258. Add Digits
Givenanon-negativeinteger num,repeatedlyaddallitsdigitsuntiltheresulthasonlyonedigit.Forexample:Given num=38,theprocessislike: 3+8=11, 1+1=2...
代码星球
·
2021-01-23
leetcode
258.
Add
Digits
leetcode 231. Power of Two
Givenaninteger,writeafunctiontodetermineifitisapoweroftwo.classSolution{public:boolisPowerOfTwo(intn){intnum=0;while(n>0){if(n&1)num++;n/=2;}if(num==1)re...
代码星球
·
2021-01-23
leetcode
231.
Power
of
Two
LeetCode227:基本计算器II
感觉自己的思路还不错,比较简单清晰,代码量也比较少,没有用到记录运算符的变量或栈,就想把这个思路发一下博客。题目: 实现一个基本的计算器来计算一个简单的字符串表达式的值。字符串表达式仅包含非负整数,"+","-","*","/" 四种运算符和空格""。整数除法仅保留整数部分。 思路:使用一...
代码星球
·
2021-01-23
LeetCode227
基本
计算器
II
nextcloud 使用markdown editor 编辑器(xjl456852整理)
在nextcloud中安装了markdowneditor,但是无法使用它.经过调查发现,是nextcloud中默认的text插件影响的.解决方案:在应用中禁用默认text插件安装并启用: Plaintexteditor安装并启用:MarkdownEditor即可.参考:https://github.com/i...
代码星球
·
2021-01-23
nextcloud
使用
markdown
editor
编辑器
win10 使用tracetcp.exe的错误问题解决(xjl456852原创)
错误提示:wpcap.dll丢失则需要安装:win10pcap下载地址:http://www.win10pcap.org/download/错误提示:ErrorretrievingtheMACaddressoftheadapter解决方案:将C:WindowsSysWOW64Npcap下面的所有dll文件,复制到与tr...
代码星球
·
2021-01-23
win10
使用
tracetcp.exe
错误
问题
hadoop执行hbase插入表操作,出错:Stack trace: ExitCodeException exitCode=1:(xjl456852原创)
在执行hbase和mapreduce融合时,将hdfs上的文本文件插入到hbase中,我没有使用"胖包"(胖包就是将项目依赖的jar包放入项目打包后的lib目录中),而是直接将hbase的lib加入到了hadoop的classpath中.我是将HBase的jar包加到/opt/modules/hadoop/etc/ha...
代码星球
·
2021-01-23
hadoop
执行
hbase
插入
操作
CountDownLatch、CyclicBarrier及Semaphore的用法示例
一、参考bloghttps://www.cnblogs.com/dolphin0520/p/3920397.html二、CountDownLatch个人把它类比于一个持有计数的闸门,每到达这个闸门一个线程,计数减1,当计数为0时再执行闸门后续的动作。同时闸门失效了(只能用一次)。publicstaticvoidmain...
代码星球
·
2021-01-23
CountDownLatch
CyclicBarrier
Semaphore
用法
示例
反射简化switch语句
1.一个简单工厂类publicclassFactoryModule{publicModuleIntfgetModule(StringmoduleType){ModuleIntfmodule=null;switch(moduleType){case"Db":module=newModuleDbImpl();break;c...
代码星球
·
2021-01-23
反射
简化
switch
语句
TCP握手和传输的一次观察
1.TCP三次握手SYN---><---SYN,ACKACK--->花费时间:386.718-385.784=0.934ms2.正常的消息交互2.1.服务器主动校验<---ServerGreetingLoginRequest---><---ACK<---Response花费时间...
代码星球
·
2021-01-23
TCP
握手
传输
一次
观察
FreeSWITCH媒体转码配置
一、说明:FreeSWITCH版本1.6.13二、测试准备软电话A的语音编码只配置iLBC;软电话B的语音编码只配置PCMU;A->B,编码协商失败,收到488消息。三、修改文件vars.xml添加如下一行:<X-PRE-PROCESScmd="set"data="media_mix_inbound_out...
代码星球
·
2021-01-23
FreeSWITCH
媒体
转码
配置
FreeSWITCH增加iLBC编码
1.安装ilbc库从第三方库里下载指定版本gitclonehttps://freeswitch.org/stash/scm/sd/libilbc.git./bootstrap.sh./configuremakemakeinstall注意:我试过,从iLBC官网下载的最新版本目前是不适配的。2.安装ilbc-develC...
代码星球
·
2021-01-23
FreeSWITCH
增加
iLBC
编码
FreeSWITCH协议参数之自定义sip header
一、主动发送1.加入sip_h_前缀这样FreeSWITCH就能自动加上后面的扩展头。2.示例<actionapplication="set"data="sip_h_X-Product-ID=123456"/>这样后续的SIP呼叫消息会带上自定义头:X-Product-ID:1234563.注意:这个头的封...
代码星球
·
2021-01-23
FreeSWITCH
协议
参数
自定义
sip
FreeSWITCH网关参数之caller-id-in-from
1.这个配置项两个设置值:true和false(默认)<paramname="caller-id-in-from"value="true"/>2.干什么用的呢?顾名思义,是否使用from头域中的主叫信息。3.效果如下:false(默认):From:"13812344321"<sip:FreeSWITC...
代码星球
·
2021-01-23
FreeSWITCH
网关
参数
caller-id-in-from
首页
上一页
...
62
63
64
65
66
...
下一页
尾页
按字母分类:
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
其他