100_remove-duplicates-from-sorted-array
/*
@Copyright:LintCode
@Author:   Monster__li
@Problem:  http://www.lintcode.com/problem/remove-duplicates-from-sorted-array
@Language: Java
@Datetime: 17-03-02 11:26
*/
public class Solution {
    /**
     * @param A: a array of integers
     * @return : return an integer
     */
    public int removeDuplicates(int[] nums) {
        // write your code here
        int i,k,length=nums.length;
  //显示元数组
  /*System.out.println("元数组为:");
  for(i=0;i<length;i++)
  {
   System.out.print(nums[i]+" ");
  }*/
  //找到重复的数字,并将后面所有元素前移一位
  for(i=0;i<length-1;i++)
  {
   if(nums[i+1]==nums[i])
   {
    for(k=i+1;k<length-1;k++)
    {
     nums[k]=nums[k+1];
    } 
    length--;
    nums[k]=-1;
    i--;
   }
  }
  //A[i]=(-1);
  //输出处理后的数组
 // System.out.println("\n处理后的数组为:");
  /*for(i=0;i<length;i++)
  {
   System.out.print(nums[i]);
  }*/
  return length;
    }
}
100_remove-duplicates-from-sorted-array的更多相关文章
- [LeetCode] Remove Duplicates from Sorted Array II 有序数组中去除重复项之二
		Follow up for "Remove Duplicates":What if duplicates are allowed at most twice? For exampl ... 
- [LeetCode] Remove Duplicates from Sorted Array 有序数组中去除重复项
		Given a sorted array, remove the duplicates in place such that each element appear only once and ret ... 
- Remove Duplicates From Sorted Array
		Remove Duplicates from Sorted Array LeetCode OJ Given a sorted array, remove the duplicates in place ... 
- 【leetcode】Remove Duplicates from Sorted Array II
		Remove Duplicates from Sorted Array II Follow up for "Remove Duplicates":What if duplicate ... 
- 26. Remove Duplicates from Sorted Array
		题目: Given a sorted array, remove the duplicates in place such that each element appear only once and ... 
- 50. Remove Duplicates from Sorted Array  &&  Remove Duplicates from Sorted Array II  &&  Remove Element
		Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place such that e ... 
- LeetCode:Remove Duplicates from Sorted Array I II
		LeetCode:Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place su ... 
- 【26】Remove Duplicates from Sorted Array
		[26]Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place such th ... 
- leetCode 26.Remove Duplicates from Sorted Array(删除数组反复点) 解题思路和方法
		Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place such that e ... 
- [Leetcode] Remove Duplicates From Sorted Array II (C++)
		题目: Follow up for "Remove Duplicates":What if duplicates are allowed at most twice? For ex ... 
随机推荐
- 网络传入安全jwts
			使用json web token 发表于Aug 13 2014 由来 做了这么长时间的web开发,从JAVA EE中的jsf,spring,hibernate框架,到spring web MVC,到用 ... 
- [HDU1210]  Eddy's 洗牌问题
			Problem Description Eddy是个ACMer,他不仅喜欢做ACM题,而且对于纸牌也有一定的研究,他在无聊时研究发现,如果他有2N张牌,编号为1,2,3..n,n+1,..2n.这也是 ... 
- express 4
			http://www.expressjs.com.cn/4x/api.html#app中间件 路由 模板 跨域 json cookie session 
- 2729: [HNOI2012]排队
			2729: [HNOI2012]排队 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 957 Solved: 449[Submit][Status] ... 
- java关于map用来筛选的用法
			我有一个实体 PropTemplateItem{id,名称,父节点,模版id},父节点为root是定义为根节点. 例如数据: 001,颜色,root,123 002,白色,001,123 003,红色 ... 
- 项目中使用emoji表情包与表情的解析过程详情
			菜鸡一只,刚开始写博客文笔不好,有问题欢迎相互讨论.闲话不多说. 用到了三个插件 Emoji Picker 第一步 这个emoji表情包插件是我找到比较好 的一个,input框中是不能放入图片的,效果 ... 
- 混合拉普拉斯分布(LMM)推导及实现
			作者:桂. 时间:2017-03-21 07:25:17 链接:http://www.cnblogs.com/xingshansi/p/6592599.html 声明:欢迎被转载,不过记得注明出处哦 ... 
- ASP.NET Core MVC之ViewComponents(视图组件)
			前言 大概一个来星期未更新博客了,久违了各位,关于SQL Server性能优化会和ASP.NET Core MVC穿插来讲,如果你希望我分享哪些内容可以在评论下方提出来,我会筛选并看看技术文档来对你的 ... 
- [项目记录]  用c语言完成的一个学生成绩管理系统
			一.要求: 学生成绩管理系统 某班有最多不超过30人(具体人数由键盘输入)参加期末考试,最多不超过6门(具体门数由键盘输入).使用链表编程实现如下菜单驱动的学生成绩管理系统. 从文件读入每个学生个人信 ... 
- windows 下编译php扩展库pecl里的扩展memcache
			Memcache是一个高性能的分布式的内存对象缓存系统,通过在内存里维护一个统一的巨大的hash表,它能够用来存储各种格式的数据,包括图像.视频.文件以及数据库检索的结果等.简单的说就是将数据调用到内 ... 
