leetcode题目解答报告(1)
Remove Element
题目:
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
题意:从数组中去除某个值,返回新数组的长度;注意在去除完毕后数组中的元素应该变化了,即出现value的位置都被替换掉了,最后一句的意思是 新长度后面的元素值任意,也就是说,新数组的总长度可以保持不变,但是新长度之前的元素要正确,后面的无所谓。
思路:
设置下标i,j,i表示遍历数组的下标,j表示当前比较的元素下标。初始j=0,从i=0开始遍历数组。如果a[i]==value,不执行任何操作,进行下一次遍历。,直到找到一个a[i]不等于value,这时将将a[i]赋给a[j],然后j自加一。直到遍历结束,此时j的值就是新的数组长度
public class RemoveElement {
static public int quchu(int[] a,int value){
int i=0,j=0;
for(i=0;i<a.length;i++){//遍历数组
if(a[i]==value)//如果a[i]等于value,跳过继续执行
continue;
a[j]=a[i];//如果不相等,赋值给a[j]
j++;//j表示数组中与value不相等的元素个数
}
return j; }
public static void main(String[] args){
int[] a={1,2,3,3,4,5,3,6,3,7,3};
int length=0;
length=quchu(a,3);
System.out.println(length);
} }
Remove Duplicates from Sorted Array
题目:
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
For example,
Given input array A = [1,1,2]
,
Your function should return length = 2
,
and A is now [1,2]
.
题意:
public class RemoveDuplicatesfromSortedArray {
public static int removeDuplicates(int A[]) {
if(A.length == 0) {
return 0;
}
int j = 0;
/*
* 去重的数组A[0]不变,
* 查看A[1]是不是等于A[0],若等于,则继续查看A[2]是否等于A[0],直到找到一个不相等的A[i]
* 因为A[0]已被赋值,所以将A[i]的值赋给A[++j]
* 将新找到的数组元素作为比较对象继续遍历数组,直到结束
* 最后去重后的数组长度是j+1(A[0]-A[j]共j+1个)
* */
for(int i = 1; i < A.length; i++) {
if(A[j] != A[i]) {
j++;//下标加一
A[j] = A[i];
}
}
return j + 1;
} /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int length=0;
int[] a={1,2,3,3,4,5,5,6,6,7,8,8,9};
length=removeDuplicates(a);
System.out.println(length); } }
Remove Duplicates from Sorted Array II
题目:
Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice?
For example,
Given sorted array A = [1,1,1,2,2,3]
,
Your function should return length = 5
,
and A is now [1,1,2,2,3]
.
题意:
每个数只允许重复一次,输出去重后的数字个数,依旧上一题的要求,常数空间也就是只能在原数组上操作。
思路:设置下标i,j,i表示遍历数组的下标,j表示当前比较的元素下标。初始j=0,从i=1开始遍历数组。如果a[i]==a[j],执行num加1操作,。之后判断num是否小于2,如果小于,则j自加1并把a[i]赋值给a[j]。若大于等于2,则不执行任何操作。如果a[i]!=a[j],则j自加1并把a[i]赋值给a[j],同时将num清零,进行下一次遍历,a[j]作为下一次比较的对象。直到遍历结束,此时j+1的值就是新的数组长度。
public class RemoveDuplicatesfromSortedArrayII {
public static int removeDuplicates(int A[]) {
if(A.length == 0) {
return 0;
}
int j = 0;
int num=0;//重复次数
/*
* 去重的数组A[0]不变,
* 查看A[1]是不是等于A[0],若等于,num自加1,此时num=1,满足条件。继续查看A[2]是否等于A[0],若等于,则num=2,不满足 *条件,之后所有重复的元素都被剔除。直到找到一个不相等的A[i]
* 因为A[0]已被赋值,所以将A[i]的值赋给A[++j],这时将num清零,用于统计新的元素相等的个数
* 将新找到的数组元素作为比较对象继续遍历数组,直到结束
* 最后去重后的数组长度是j+1(A[0]-A[j]共j+1个)
* */
for(int i = 1; i < A.length; i++) {
if(A[j]==A[i]) {
num++;
if(num<2) {
j++;
A[j]=A[i];
}
}
else {
j++;//下标加一
A[j] = A[i];
num=0;//清零,用于统计下一个元素的重复数
}
}
return j + 1;
} /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int length=0;
int[] a={1,2,3,3,3,4,5,5,5,6,6,6,7,8,8,9};
length=removeDuplicates(a);
System.out.println(length); } }
Plus One
题目:
Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant digit is at the head of the list.
题意:
给定一个用数组表示的一个数,对它进行加一操作。 每一个数位都存储在数组的一个位置上。数组下标从大到小表示数位从低位到高位。
思路:
直接求解,设置一个进位标志carry,初值为1,表示加1,从最低位开始tmp
= a[x] + carry, a[x] = tmp%10,carry = tmp/10,如果carry不为0对下一位再进行操作,直到所有的数位处理完或者carray为0就退出,如果最后还有carray不为0说明整个数组要扩展一个数位。
public class PlusOne { public static int[] mytets(int[] a) {
int carry=1;//进位值,初始为1,表示加1操作
int temp;
int i;
for(i=a.length-1;i>=0;i--) {
temp=a[i]+carry;
carry=temp/10;//向下一位的进位值
a[i]=temp%10;//当前为的结果值
if(carry==0) {//无进位则退出
break;
}
}
if(carry==1) {//分析最后产生的进位,例如999的特殊情况
int[] result=new int[a.length+1];
System.arraycopy(a, 0, result, 1, result.length-1);
result[0]=carry;
return result;
}
else {
return a;
} }
public static void main(String[] args) {
int []a= {9,9,9,9,9};
int result[]=mytets(a);
for (int i = 0; i <result.length; i++) {
System.out.print(result[i]);
} } }
leetcode题目解答报告(1)的更多相关文章
- leetcode题目解答报告(2)
Pascal's Triangle 题目描述 Given numRows, generate the first numRows of Pascal's triangle. For example, ...
- LeetCode题目解答
LeetCode题目解答——Easy部分 Posted on 2014 年 11 月 3 日 by 四火 [Updated on 9/22/2017] 如今回头看来,里面很多做法都不是最佳的,有的从复 ...
- 全部leetcode题目解答(不含带锁)
(记忆线:当时一刷完是1-205. 二刷88道.下次更新记得标记不能bug-free的原因.) 88-------------Perfect Squares(完美平方数.给一个整数,求出用平方数来 ...
- Leetcode题目practice
目录 Leetcode题目解答 1. 删除最外层的括号 2. 两数之和 3. 宝石与石头 4. 移除元素 5.删除排序数组中的重复项 6.寻找两个有序数组的中位数 7.盛最多水的容器 8.存在重复元素 ...
- LeetCode算法题目解答汇总(转自四火的唠叨)
LeetCode算法题目解答汇总 本文转自<四火的唠叨> 只要不是特别忙或者特别不方便,最近一直保持着每天做几道算法题的规律,到后来随着难度的增加,每天做的题目越来越少.我的初衷就是练习, ...
- LeetCode: Permutations 解题报告
Permutations Given a collection of numbers, return all possible permutations. For example,[1,2,3] ha ...
- LeetCode题目答案及理解汇总(持续更新)
面试算法题 dfs相关 全排列 #include<bits/stdc++.h> using namespace std; const int N = 10; //用一个path数组来存储每 ...
- leetcode题目清单
2016-09-24,开始刷leetcode上的算法题,下面整理一下leetcode题目清单.Github-leetcode 1.基本数学 Two Sum Palindrome Number Cont ...
- LeetCode 题目总结/分类
LeetCode 题目总结/分类 利用堆栈: http://oj.leetcode.com/problems/evaluate-reverse-polish-notation/ http://oj.l ...
随机推荐
- TroubleShoot: SharePoint 2013: ExecuteOrDelayUntilScriptLoaded 页面发布后不执行的问题
SharePoint 2010 中的ExecuteOrDelayUntilScriptLoaded,在2013 中使用时没有效果的问题. Example: SharePoint 2013 Code: ...
- Best Coder Lotus and Characters
Lotus and Characters 问题描述 Lotus有nn种字母,给出每种字母的价值以及每种字母的个数限制,她想构造一个任意长度的串. 定义串的价值为:第1位字母的价值*1+第2位字母的 ...
- 单击gridview中的选择按钮跳转到另一个页面的方法
原文发布时间为:2008-07-24 -- 来源于本人的百度文章 [由搬家工具导入] 单击gridview中的选择按钮跳转到另一个页面的方法: 在gridview的事件中双击 SelectedInde ...
- sublime text3 cssrem 快速px转rem插件
今天试验了下cssrem 在移动端如果需要px->rem非常方便 比较之前我自己用gulp提供的函数unit(70/@base,rem);转方便很多 1.git clone https://g ...
- 学习javascript设计模式之发布-订阅(观察者)模式
1.发布-订阅模式又叫观察者模式,它定义对象之间一种一对多的依赖关系. 2.如何实现发布-订阅模式 2-1.首先指定好发布者 2-2.给发布者添加一个缓冲列表,用户存放回调函数以便通知订阅者 2-3. ...
- 模仿世纪佳缘网站PC端的首页效果
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- 转 PV操作简单理解
传送门 PV操作简单理解 进程通常分为就绪.运行和阻塞三个工作状态.三种状态在某些条件下可以转换,三者之间的转换关系如下: 进程三个状态之间的转换就是靠PV操作来控制的.PV操作主要就是P操作.V操作 ...
- bq25896 charging status CHRG_STAT register 0xB
condition 1 : adapter 全部電流往 system去, battery current 也往 system ...
- What is pseudopolynomial time? How does it differ from polynomial time?
To understand the difference between polynomial time and pseudopolynomial time, we need to start off ...
- LeetCode OJ——Unique Binary Search Trees
class Solution { public: int numTrees(int n) { ); vector<int> numVector; numVector.assign(n+,) ...