算法

1,数组最大,https://blog.csdn.net/robert_chen1988/article/details/78032743

2,数组的一些操作,https://www.w3cschool.cn/java/java-array2.html

java.lang.System
 
public static void arraycopy(Object src,
                             int srcPos,
                             Object dest,
                             int destPos,
                             int length)

3,字符串反转

http://www.runoob.com/java/string-reverse.html

 4,进制转换

题:https://www.nowcoder.com/questionTerminal/4d1afe11171c44a385287e29092cdb3f

十进制转成二进制 
Integer.toBinaryString(int i) 

 5,字符串包含,from下标开始,返回排序,不会因为from改变

public boolean contains(CharSequence s)
int indexOf(int ch,int fromIndex)
原文地址:https://www.cnblogs.com/vhyc/p/9478812.html