#code

leetcode 442. Find All Duplicates in an Array

Givenanarrayofintegers,1≤a[i]≤ n (n =sizeofarray),someelementsappear twice andothersappear once.Findalltheelementsthatappear ...

leetcode 405. Convert a Number to Hexadecimal

Givenaninteger,writeanalgorithmtoconvertittohexadecimal.Fornegativeinteger, two’scomplement methodisused.Note:Alllettersinhexadecimal(a-f)mustbeinlowe...

leetcode 506. Relative Ranks

Givenscoresof N athletes,findtheirrelativeranksandthepeoplewiththetopthreehighestscores,whowillbeawardedmedals:"GoldMedal","SilverMedal"and"BronzeMeda...
代码星球 ·2021-01-23

leetcode 316. Remove Duplicate Letters

Givenastringwhichcontainsonlylowercaseletters,removeduplicateletterssothateveryletterappearonceandonlyonce.Youmustmakesureyourresultisthesmallestinlexicographic...

leetcode 654. Maximum Binary Tree

Givenanintegerarraywithnoduplicates.Amaximumtreebuildingonthisarrayisdefinedasfollow:Therootisthemaximumnumberinthearray.Theleftsubtreeisthemaximumtreeconstruct...

leetcode 653. Two Sum IV

GivenaBinarySearchTreeandatargetnumber,returntrueifthereexisttwoelementsintheBSTsuchthattheirsumisequaltothegiventarget.Example1:Input:5/36/247Target=9Output:Tr...
代码星球 ·2021-01-23

leetcode 656. Coin Path

Givenanarray A (indexstartsat 1)consistingofNintegers:A1,A2,...,AN andaninteger B.Theinteger B denotesthatfromanyplace(suppos...
代码星球 ·2021-01-23

leetcode 258. Add Digits

Givenanon-negativeinteger num,repeatedlyaddallitsdigitsuntiltheresulthasonlyonedigit.Forexample:Given num=38,theprocessislike: 3+8=11, 1+1=2...
代码星球 ·2021-01-23

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

LeetCode227:基本计算器II

感觉自己的思路还不错,比较简单清晰,代码量也比较少,没有用到记录运算符的变量或栈,就想把这个思路发一下博客。题目: 实现一个基本的计算器来计算一个简单的字符串表达式的值。字符串表达式仅包含非负整数,"+","-","*","/" 四种运算符和空格""。整数除法仅保留整数部分。 思路:使用一...

maven项目运行tomcat7-maven-plugin:run时出现Caused by: java.lang.ClassNotFoundException: org.codehaus.plexus.util.Scanner(xjl456852原创)

使用tomcat7-maven-plugin插件运行web项目时,出现下面错误:[WARNING]Errorinjecting:org.sonatype.plexus.build.incremental.DefaultBuildContextjava.lang.NoClassDefFoundError:org/code...

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...

HTMLEncode httpencode UTF8Encode

1.引用单元: httpApp;2.对于httpPost的提交内容,应该是: HttpEncode(Utf8Encode(StrValue)); 不然与web方式的Url_encode(utf8编码)的解析结果不一致.3.解码是: utfyDecode(httpdecode(st...
代码星球 ·2021-01-22

EF 控制code-first生成的数据库表名的单复数

原地址:https://blog.csdn.net/winnyrain/article/details/51248410 在Code-First中,默认生成的数据库表的名称为类型的复数形式,如Model名为“Player”,默认生成的数据库表名为“Players”。很多情况下我们并不想生成的数据库表名为复数形...

leetcode【1403. 非递增顺序的最小子序列】(01)

题目描述:给你一个数组nums,请你从中抽取一个子序列,满足该子序列的元素之和严格大于未包含在该子序列中的各元素之和。如果存在多个解决方案,只需返回长度最小的子序列。如果仍然有多个解决方案,则返回元素之和最大的子序列。与子数组不同的地方在于,「数组的子序列」不强调元素在原数组中的连续性,也就是说,它可以通过从数组中分离...
首页上一页...2930313233...下一页尾页