摘要:
leetcode-数组篇 个人理解:算法,涉及到数据结构和解决问题思想的,以及常用的解决方法,数据结构:无非就是数组,链表,树,图等等思想:dp,贪心等等方法:排序,搜索等等本篇主要介绍: 排序 借助leetcode的215题介绍六种常见好理解的排序思想 import java.util.Array 阅读全文
摘要:
Remove Element public class Lc27 { public static int removeElement(int[] nums, int val) { if (nums == null || nums.length == 0) { return 0; } int coun 阅读全文
摘要:
Implement strStr() /** * Implement strStr(). * * Return the index of the first occurrence of needle in haystack, or -1 if * needle is not part of hays 阅读全文