Remove Element

  1. public class Lc27 {
  2. public static int removeElement(int[] nums, int val) {
  3.  
  4. if (nums == null || nums.length == 0) {
  5. return 0;
  6. }
  7.  
  8. int count = 0;
  9. for (int i = 0; i < nums.length;) {
  10. if (nums[i] == val) {
  11. count++;
  12. move(nums, i);
  13. } else {
  14. i++;
  15. }
  16. }
  17. return nums.length - count;
  18. }
  19.  
  20. public static void move(int[] nums, int position) {
  21. for (int i = position; i < nums.length - 1; i++) {
  22. nums[i] = nums[i + 1];
  23. }
  24. nums[nums.length - 1] = Integer.MAX_VALUE;
  25. }
  26.  
  27. public static void main(String[] args) {
  28. int[] nums = { 0, 1, 2, 2, 3, 0, 4, 2 };
  29. int val = 2;
  30. System.out.println(removeElement(nums, val));
  31. }
  32. }

Remove Duplicates from Sorted Array,这里用了六种排序,由于题目中有负数导致基数排序可能会出现数组下标错误

  1. import java.util.ArrayList;
  2. import java.util.List;
  3.  
  4. /**
  5. * 俩个排序算法
  6. *
  7. */
  8. public class Lc26 {
  9.  
  10. public static int removeDuplicates(int[] nums) {
  11. int count = 0;
  12. for (int i = 0; i < nums.length - 1; i++) {
  13. if (nums[i] == nums[i + 1]) {
  14. nums[i] = Integer.MAX_VALUE;
  15. count++;
  16. }
  17. }
  18. // nums = insertSort(nums);
  19. // nums = shellSort(nums);
  20. // nums = selectSort(nums);
  21. // nums = bubbleSort(nums);
  22. // quickSort(nums, 0, nums.length - 1);
  23. nums = radixSort(nums);
  24.  
  25. return nums.length - count;
  26. }
  27.  
  28. /**
  29. * 插入排序,遍历所有的元素和以前排好的元素,如果选择的元素比以前的元素小就替换。
  30. */
  31. public static int[] insertSort(int[] nums) {
  32. for (int i = 1; i < nums.length; i++) {
  33. for (int j = 0; j < i; j++) {
  34. if (nums[i] < nums[j]) {
  35. int temp = nums[i];
  36. nums[i] = nums[j];
  37. nums[j] = temp;
  38. break;
  39. }
  40. }
  41. }
  42. return nums;
  43. }
  44.  
  45. /**
  46. * 插入排序,遍历所有的元素和以前排好的元素,如果选择的元素比以前的元素小就替换。 希尔排序:在插入排序的基础上增加控制增量,逻辑分组数据,每次比较俩端数据
  47. */
  48. public static int[] shellSort(int[] nums) {
  49. for (int gap = nums.length / 2; gap > 0; gap /= 2) {
  50. for (int i = gap; i < nums.length; i++) {
  51. for (int j = i; j >= gap; j -= gap) {
  52. if (nums[j] < nums[j - gap]) {
  53. int temp = nums[j];
  54. nums[j] = nums[j - gap];
  55. nums[j - gap] = temp;
  56. }
  57. }
  58. }
  59. }
  60. return nums;
  61. }
  62.  
  63. /**
  64. * 选择排序:再要排序中的数组中,选出最小的数字和第一个数字替换,一次选出第二小的数组和第二个数字替换,一次类推
  65. */
  66. public static int[] selectSort(int[] nums) {
  67. for (int i = 0; i < nums.length; i++) {
  68. int index = nums[i];
  69. for (int j = i + 1; j < nums.length; j++) {
  70. if (nums[j] < nums[i]) {
  71. int temp = nums[j];
  72. nums[j] = nums[i];
  73. nums[i] = temp;
  74. }
  75. }
  76. }
  77. return nums;
  78. }
  79.  
  80. /*
  81. * 冒泡排序:对当前还未排好顺序的元素进行自顶向下排序,交换相邻的俩个数字,小数上浮,大数下沉
  82. */
  83. public static int[] bubbleSort(int[] nums) {
  84. for (int i = 0; i < nums.length; i++) {
  85. for (int j = i + 1; j < nums.length; j++) {
  86. if (nums[j] < nums[i]) {
  87. int temp = nums[j];
  88. nums[j] = nums[i];
  89. nums[i] = temp;
  90. }
  91. }
  92. }
  93. return nums;
  94. }
  95.  
  96. /**
  97. * 快速排序:选取一个基准值,利用二分法对其排序
  98. */
  99. public static void quickSort(int[] nums, int low, int hign) {
  100. if (low < hign) {
  101. int index = getIndex(nums, low, hign);
  102. quickSort(nums, 0, index - 1);
  103. quickSort(nums, index + 1, hign);
  104. }
  105. }
  106.  
  107. private static int getIndex(int[] nums, int low, int hign) {
  108. int temp = nums[low];
  109. while (low < hign) {
  110. while (low < hign && nums[hign] >= temp) {
  111. hign--;
  112. }
  113. nums[low] = nums[hign];
  114.  
  115. while (low < hign && nums[low] <= temp) {
  116. low++;
  117. }
  118. nums[hign] = nums[low];
  119. }
  120. nums[low] = temp;
  121. return low;
  122. }
  123.  
  124. /**
  125. * 基数排序:低位优先,比较每个数字的低位,依次到高位,注意是正整数
  126. */
  127. public static int[] radixSort(int[] nums) {
  128. if (nums == null || nums.length == 0) {
  129. return nums;
  130. }
  131. int max = nums[0];
  132. for (int i = 0; i < nums.length; i++) {
  133. if (max < nums[i]) {
  134. max = nums[i];
  135. }
  136. }
  137.  
  138. int digit = 0;
  139. while (max != 0) {
  140. max /= 10;
  141. digit++;
  142. }
  143.  
  144. // init list
  145. List<List<Integer>> buckets = new ArrayList<List<Integer>>();
  146. for (int i = 0; i < 10; i++) {
  147. buckets.add(new ArrayList<>());
  148. }
  149.  
  150. for (int i = 0; i < digit; i++) {
  151. for (int j = 0; j < nums.length; j++) {
  152. int key = (int) (nums[j] % Math.pow(10, i + 1) / Math.pow(10, i));
  153. buckets.get(key).add(nums[j]);
  154. }
  155. int count = 0;
  156. for (int j = 0; j < nums.length; j++) {
  157.  
  158. while (buckets.get(j).size() > 0) {
  159. nums[count++] = buckets.get(j).remove(0);
  160. }
  161. }
  162. // 分配完之后,将桶中的元素依次复制回数组
  163. }
  164. return nums;
  165. }
  166.  
  167. public static void main(String[] args) {
  168. int[] nums = { -1, 0, 0, 0, 0, 3, 3 };
  169. System.out.println(removeDuplicates(nums));
  170. }
  171.  
  172. }
  1.  

Remove Duplicates from Sorted Array II

  1. import java.util.Arrays;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4.  
  5. public class Lc80 {
  6. public static int removeDuplicates(int[] nums) {
  7.  
  8. // map(数字/次数)
  9. Map<Integer, Integer> map = new HashMap<Integer, Integer>();
  10. int count = 0;
  11. for (int i = 0; i < nums.length; i++) {
  12. if (map.containsKey(nums[i])) {
  13. int temp = map.get(nums[i]);
  14. if (temp >= 2) {
  15. count++;
  16. nums[i] = Integer.MAX_VALUE;
  17. } else {
  18. map.put(nums[i], ++temp);
  19. }
  20. } else {
  21. map.put(nums[i], 1);
  22. }
  23. }
  24.  
  25. Arrays.sort(nums);
  26. return nums.length - count;
  27. }
  28.  
  29. public static void main(String[] args) {
  30. int[] nums = { 1, 1, 1 };
  31. System.out.println(removeDuplicates(nums));
  32. }
  33. }
  1.  

Find the Celebrity

  1.  

Rotate Array

  1. public class Lc189 {
  2. public static void rotate(int[] nums, int k) {
  3. int previous = 0;
  4. for (int i = 0; i < k; i++) {
  5. previous = nums[nums.length - 1];
  6. for (int j = 0; j < nums.length; j++) {
  7. int temp = previous;
  8. previous = nums[j];
  9. nums[j] = temp;
  10. }
  11. }
  12. }
  13.  
  14. public static void main(String[] args) {
  15. int[] nums = { 1, 2, 3, 4, 5, 6, 7 };
  16. int k = 3;
  17. rotate(nums, k);
  18. }
  19.  
  20. }
  1.  

First Missing Positive

  1. import java.util.Arrays;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4.  
  5. public class Lc41 {
  6. public static int firstMissingPositive(int[] nums) {
  7. Map<Integer, Integer> map = new HashMap<Integer, Integer>();
  8. for (int i = 0; i < nums.length; i++) {
  9. if (map.containsKey(nums[i])) {
  10. nums[i] = Integer.MAX_VALUE;
  11. } else {
  12. map.put(nums[i], i);
  13. }
  14. }
  15.  
  16. Arrays.sort(nums);
  17. int min = 0;
  18. int minPosition = 0;
  19. for (int i = 0; i < nums.length; i++) {
  20. if (nums[i] > 0) {
  21. minPosition = i;
  22. min = nums[i];
  23. break;
  24. }
  25. }
  26. if (min != 1) {
  27. return 1;
  28. }
  29.  
  30. int j = 1;
  31. for (int i = minPosition; i < nums.length; i++, j++) {
  32. if (nums[i] != j) {
  33. return j;
  34. }
  35. }
  36. return j;
  37.  
  38. }
  39.  
  40. public static void move(int[] nums, int position) {
  41. for (int i = 0; i < nums.length - 1; i++) {
  42. nums[i] = nums[i + 1];
  43. }
  44. nums[nums.length - 1] = Integer.MAX_VALUE;
  45. }
  46.  
  47. public static void main(String[] args) {
  48. int[] nums = { 0, 2, 2, 1, 1 };
  49. System.out.println(firstMissingPositive(nums));
  50. }
  51. }
  1.  

Bulls and Cows

  1. import java.util.ArrayList;
  2. import java.util.List;
  3.  
  4. public class Lc229 {
  5. public static String getHint(String secret, String guess) {
  6. int bulls = 0;
  7. int cows = 0;
  8. List<String> secretDigits = convertToAscall(secret);
  9. List<String> guessDigits = convertToAscall(guess);
  10. for (int i = 0; i < secretDigits.size(); i++) {
  11. if (secretDigits.get(i).equals(guessDigits.get(i))) {
  12. bulls++;
  13. } else {
  14. cows++;
  15. }
  16. }
  17. return bulls + "A" + cows + "B";
  18.  
  19. }
  20.  
  21. private static List<String> convertToAscall(String s) {
  22. StringBuffer sb = new StringBuffer();
  23. char[] chars = s.toCharArray();
  24. for (char c : chars) {
  25. sb.append((int) c).append(",");
  26. }
  27. String[] str = sb.toString().split(",");
  28. List<String> lists = new ArrayList<>();
  29. for (String string : str) {
  30. lists.add(string);
  31. }
  32.  
  33. return lists;
  34. }
  35.  
  36. public static void main(String[] args) {
  37. String secret = "1123";
  38. String guess = "0111";
  39. System.out.println(getHint(secret, guess));
  40. }
  41. }

参考文档:https://cspiration.com/leetcodeClassification#10309

  1.  

leetcode-數組篇的更多相关文章

  1. GO語言基礎教程:數組,切片,map

    這節課我們來講解數組,切片和map,或許您是從其他語言轉到GO語言這邊的,那麼在其他語言的影響下您可能會不太適應GO語言的數組,因為GO語言把數組給拆分成了array,slice和map,接下來的時間 ...

  2. bzoj 1041: [HAOI2008]圆上的整点 本原勾股數組

    1041: [HAOI2008]圆上的整点 Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 2027  Solved: 853[Submit][Stat ...

  3. Contest 20140914 Mushroom写情书 字符串雙hash 後綴數組

    0111:Mushroom写情书 查看 提交 统计 提问 总时间限制:  10000ms 内存限制:  256000kB 描述 有一天,Mushroom准备向他的GF表白,为了增加表白成功率,Mush ...

  4. bzoj 1031: [JSOI2007]字符加密Cipher 後綴數組模板題

    1031: [JSOI2007]字符加密Cipher Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 3157  Solved: 1233[Submit ...

  5. js字符串轉數組,數組轉字符串

    字符串轉數組:split(',') 數組轉字符串:join(‘,’) https://www.cnblogs.com/woodk/p/5714329.html

  6. js數組

    數組對象創建: var a=new Array(); var b=new Array(1); var a=new Array(“AA“,”AA“): 相關函數: sort()排序,可以進行字面上排序s ...

  7. shell變量和數組

    我們要知道shell是一個很重要的腳本能幫助我們完成很多事情 shell語言其實和很多的語言的語法是差不多的 變量: 變量的定義很簡單的,但是等號兩邊是不可以有空格的(不能有空格) 命名只能使用英文字 ...

  8. c++ LeetCode (初级字符串篇) 九道算法例题代码详解(二)

    原文作者:aircraft 原文链接:https://www.cnblogs.com/DOMLX/p/11089327.html 已经刷了很多篇leetcode题了,不过最近在找c++的实习工作(大佬 ...

  9. LeetCode总结 -- 高精度篇

    我们常见的一些主要的数据结构比方整型int或者浮点型float由于位数过多无法用内置类型存储,这时候我们就须要自己实现高精度的数据类型来进行存储和运算.这样的问题在实际产品中还是比較有用的,所以相对来 ...

  10. 【持续更新】leetcode算法-数组篇

    会在近期陆续地完成数组篇的整理,希望对找工作的小伙伴有所帮助.   1.Two Sum:两数相加为一固定值,求其下标.一次遍历数组,用一个hash表存储已经访问过的数及其下标,对于新访问的数value ...

随机推荐

  1. HTML5变化

    HTML5变化 新的语义化元素 header footer nav main article section 删除了一些纯样式的标签 表单增强 新API 离线 (applicationCache ) ...

  2. java项目测试环境搭建

    java项目测试环境搭建 2019-03-06 13:45:26 木瓜小少年 阅读数 691更多 分类专栏: 测试   版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原 ...

  3. springboot 集成jsp

    建立好springboot项目,确定能成功运行 在application.properties文件中添加 server.context-path=/bootserver.port=8080spring ...

  4. 《Java基础知识》Java包装类,拆箱和装箱

    虽然 Java 语言是典型的面向对象编程语言,但其中的八种基本数据类型并不支持面向对象编程,基本类型的数据不具备“对象”的特性——不携带属性.没有方法可调用. 沿用它们只是为了迎合人类根深蒂固的习惯, ...

  5. 基于 TrueLicense 的项目证书验证

    一.简述 开发的软件产品在交付使用的时候,往往有一段时间的试用期,这期间我们不希望自己的代码被客户二次拷贝,这个时候 license 就派上用场了,license 的功能包括设定有效期.绑定 ip.绑 ...

  6. Linux命令-grep,sed,awk

    grep (global search regular expression[RE] and print out the line) 正则表达式全局搜索并将行打印出来 在文件中查找包含字符串" ...

  7. 《CSAPP》实验一:位操作

    <CSAPP>号称程序员圣经,虽然中文译名为<深入理解计算机系统>,但其实没那么"深",只是覆盖面很广,一般用作计算机专业大一导论课的教科书.早就听闻书上配 ...

  8. springboot 读取 resource 下的文件

    ClassPathResource classPathResource = new ClassPathResource("template/demo/200000168-check-resp ...

  9. 【STM32H7教程】第33章 STM32H7的定时器应用之TIM1-TIM17的中断实现

    完整教程下载地址:http://www.armbbs.cn/forum.php?mod=viewthread&tid=86980 第33章       STM32H7的定时器应用之TIM1-T ...

  10. CURL命令学习一

    每天学习一点点.... 直接获取页面数据: curl http://www.xxx.com/[可以指定具体的路径获取某个文件] 用户名(密码): curl -u username http://www ...