[编程题] lc [287寻找数组中重复数
2021-04-14 00:29
标签:字符串 lazy lang src 例子 linked lis image etc 题目描述 输入输出例子 方法1:前后指针 Java代码 方法2:借助栈弹出 思想:入栈并出栈刚好逆转; Java代码 [编程题] lc [287寻找数组中重复数 标签:字符串 lazy lang src 例子 linked lis image etc 原文地址:https://www.cnblogs.com/jiyongjia/p/13339159.html[编程题] lc:344. 反转字符串
//方法1:前后指针的交换元素
public void reverseString1(char[] s) {
int l = 0;
int r = s.length-1;
while(l
//方法2:借助栈
public void reverseString(char[] s) {
Deque
文章标题:[编程题] lc [287寻找数组中重复数
文章链接:http://soscw.com/index.php/essay/75434.html