C++实现LeetCode数组练习题

目录
  • 1、存在重复元素
  • 2、最大子序和
  • 3、两数之和
  • 4、合并两个有序数组
  • 5、两个数组的交集II
  • 6、买卖股票的最佳时机
  • 7、杨辉三角
  • 8、重塑矩阵
  • 9、有效的数独
  • 10、矩阵置零
  • 总结

1、存在重复元素

排序数组,之后遍历是否有重复的元素

public boolean containsDuplicate(int[] nums) {
        Arrays.sort(nums);
        for(int i=1;i<nums.length;i++){
            if(nums[i-1]==nums[i]){
                return true;
            }
        }
        return false;
    }

不排序,利用set去重,判断长度

public boolean containsDuplicate(int[] nums) {
        HashSet <Integer> set=new HashSet<>();
        for(int i=0;i<nums.length;i++){
            set.add(nums[i]);
        }
        if(set.size()==nums.length){
            return false;
        }
        return true;
    }

2、最大子序和

这道题最经典的思路就是动态规划,取当前数组值和当前数组值加上前一个数组值中取最大值

 public int maxSubArray(int[] nums) {
        int res=nums[0];
        for(int i=1;i<nums.length;i++){
            nums[i]=Math.max(nums[i]+nums[i-1],nums[i]);
            res=Math.max(nums[i],res);
        }
        return res;
    }

还有一种就是记录前i项子序列和小于0就重新赋值为下一个

 public int maxSubArray(int[] nums) {
        int count=nums[0];
        int res=nums[0];
        for(int i=1;i<nums.length;i++){
            if(count<=0){
                count=nums[i];
            }else{
                count+=nums[i];
            }
            res=Math.max(res,count);
        }
        return res;
    }

3、两数之和

利用map,来存储数组值和当前位置,来判断

 public int[] twoSum(int[] nums, int target) {
        HashMap<Integer,Integer> map=new HashMap<>();
        for(int i=0;i<nums.length;i++){
            map.put(nums[i],i);
        }
        for(int i=0;i<nums.length;i++){
            int num=target-nums[i];
            if(map.containsKey(num)&&i!=map.get(num)){
                return new int[]{i,map.get(num)};
            }
        }
        return null;
    }

4、合并两个有序数组

定义变量,遍历比较

public void merge(int[] nums1, int m, int[] nums2, int n) {
     int i=m-1;
     int j=n-1;
     int k=m+n-1;
     while(i>=0&&j>=0){
         if(nums1[i]>nums2[j]){
             nums1[k--]=nums1[i--];
         }else{
             nums1[k--]=nums2[j--];
         }
     }
     while(j>=0){//即nums2元素还没放完
     nums1[k--]=nums2[j--];
       }
    }

5、两个数组的交集II

1.排序,定义指针来判断

 public int[] intersect(int[] nums1, int[] nums2) {
        Arrays.sort(nums1);
        Arrays.sort(nums2);
        int left=0;
        int right=0;
        List<Integer> list=new ArrayList<>();
        while(left<nums1.length&&right<nums2.length){
            if(nums1[left]==nums2[right]){
                list.add(nums1[left]);
                left++;
                right++;
            }else if(nums1[left]<nums2[right]){
                left++;
            }else{
                right++;
            }
        }
        int []arr=new int[list.size()];
        for(int i=0;i<list.size();i++){
            arr[i]=list.get(i);
        }
        return arr;
    }

6、买卖股票的最佳时机

股票问题就是保存数组中最小值,之后用当前数组值减去最小值保留最大的,如果max是负数,就返回0

 public int maxProfit(int[] prices) {
    int max=Integer.MIN_VALUE;
    int min=prices[0];
    for(int i=1;i<prices.length;i++){
         max=Math.max(max,prices[i]-min);
         min=Math.min(prices[i],min);
    }
    if(max<0){
        return 0;
    }
    return max;
    }

7、杨辉三角

判断特殊情况,第一列和i=j列都是1,其他的都上面的值加上面左边的值,定义二维数组进行帮助

 public List<List<Integer>> generate(int numRows) {
       List<List<Integer>> list=new ArrayList<>();
        int [][]array=new int[numRows][numRows];
        for(int i=0;i<numRows;i++){
            List<Integer> res=new ArrayList<>();
            for(int j=0;j<=i;j++){
                if(j==0||i==j){
                    array[i][j]=1;
                }else{
                    array[i][j]=array[i-1][j-1]+array[i-1][j];
                }
                res.add(array[i][j]);
            }
            list.add(res);
        }
        return list;
    }

8、重塑矩阵

找到其规律进行赋值即可

public int[][] matrixReshape(int[][] mat, int r, int c) {
        int n=mat.length;//行数
        int m=mat[0].length;//列数
        if(m*n!=r*c){
            return mat;
        }
        int [][]arr=new int[r][c];
        for(int i=0;i<r*c;i++){
        arr[i/c][i%c]=mat[i/m][i%m];
        }
       return arr;
    }

9、有效的数独

定义二维数组来判断,将存在的数字置为true,判断是否该位置为true,返回false.

 public boolean isValidSudoku(char[][] board) {
        boolean [][] row=new boolean[9][9];//行数
        boolean [][] col=new boolean[9][9];//列数
        boolean [][] box=new boolean[9][9];//格子内
        for(int i=0;i<9;i++){
            for(int j=0;j<9;j++){
                char ch=board[i][j];
                if(ch=='.') continue;
                int curIndex=ch-'1';//计算在哪个位置
                int boxIndex=i/3*3+j/3;// 计算在哪个格子里面
     if(row[i][curIndex]||col[j][curIndex]||box[boxIndex][curIndex]) return false;
                row[i][curIndex]=true;
                col[j][curIndex]=true;
                box[boxIndex][curIndex]=true;
            }
        }
        return true;
    }

10、矩阵置零

先检查第一行和第一列是否有0,定义boolean 变量标记
再利用第一行和第一列作为标记列,遍历整个数组,将中间元素为0的第一行和第一列置为0,
之后遍历整个数组将第一行和第一列的为0的元素的中间元素置为0,之后判断第一行和第一列是否含0,改为0即可

class Solution {
    public void setZeroes(int[][] matrix) {
        boolean row=false;//标记第一行
        boolean col=false;//标记第一列
        int m=matrix.length;//行数
        int n=matrix[0].length;//列数
       //检查第一行是否有0 标记
       for(int i=0;i<n;i++){
           if(matrix[0][i]==0){
               row=true;
               break ;
           }
       }
       //检查第一列是否有0 标记
        for(int i=0;i<m;i++){
            if(matrix[i][0]==0){
                col=true;
                break ;
            }
        }
        //遍历中间元素 把第一行和第一列置为0
        for(int i=1;i<m;i++){
            for(int j=1;j<n;j++){
                if(matrix[i][j]==0){
                    matrix[i][0]=0;
                    matrix[0][j]=0;
                }
            }
        }
        //根据第一行第一列的结果 把中间元素置为0
        for(int i=1;i<m;i++){
            for(int j=1;j<n;j++){
                if(matrix[i][0]==0||matrix[0][j]==0){
                    matrix[i][j]=0;
                }
            }
        }
        //检查第一行是否有最开始为0的
        if(row){
            for(int i=0;i<n;i++){
                matrix[0][i]=0;
            }
        }
        //检查第一列是否有最开始为0的
        if(col){
            for(int i=0;i<m;i++){
                matrix[i][0]=0;
            }
        }
    }
}

总结

本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注我们的更多内容!

(0)

相关推荐

  • C++实现LeetCode(676.实现神奇字典)

    [LeetCode] 676.Implement Magic Dictionary 实现神奇字典 Implement a magic directory with buildDict, and search methods. For the method buildDict, you'll be given a list of non-repetitive words to build a dictionary. For the method search, you'll be given a

  • C++实现LeetCode(648.替换单词)

    [LeetCode] 648.Replace Words 替换单词 In English, we have a concept called root, which can be followed by some other words to form another longer word - let's call this word successor. For example, the root an, followed by other, which can form another w

  • C++实现LeetCode(347.前K个高频元素)

    [LeetCode] 347. Top K Frequent Elements 前K个高频元素 Given a non-empty array of integers, return the k most frequent elements. Example 1: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Example 2: Input: nums = [1], k = 1 Output: [1] Note: You may assume

  • C++实现LeetCode(692.前K个高频词)

    [LeetCode] 692.Top K Frequent Words 前K个高频词 Given a non-empty list of words, return the k most frequent elements. Your answer should be sorted by frequency from highest to lowest. If two words have the same frequency, then the word with the lower alph

  • C++实现LeetCode(209.最短子数组之和)

    [LeetCode] 209. Minimum Size Subarray Sum 最短子数组之和 Given an array of n positive integers and a positive integer s, find the minimal length of a contiguous subarray of which the sum ≥ s. If there isn't one, return 0 instead. Example:  Input: s = 7, num

  • C++实现LeetCode(210.课程清单之二)

    [LeetCode] 210. Course Schedule II 课程清单之二 There are a total of n courses you have to take, labeled from 0 to n-1. Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: [0,1] G

  • C++实现LeetCode数组练习题

    目录 1.存在重复元素 2.最大子序和 3.两数之和 4.合并两个有序数组 5.两个数组的交集II 6.买卖股票的最佳时机 7.杨辉三角 8.重塑矩阵 9.有效的数独 10.矩阵置零 总结 1.存在重复元素 排序数组,之后遍历是否有重复的元素 public boolean containsDuplicate(int[] nums) { Arrays.sort(nums); for(int i=1;i<nums.length;i++){ if(nums[i-1]==nums[i]){ return

  • Java学习关于循环和数组练习题整理

    循环例子: while循环和do-while循环 whlie(条件语句) { 循环体 }//先进行条件语句的判断,再进行循环体 do { 循环体 }whlie (条件语句)//先执行一次循环后再进行条件语句的判断 break语句 break语句:结束全部循环,具体应用如下: //1+2+3+...+n<1000,求n //此题可以利用break语句在和大于1000时结束循环,输出n的值 public static void deal() { int sum = 0; int i = 1; for

  • Java深入浅出数组的定义与使用上篇

    目录 一.数组的基本用法 1.什么是数组 2.定义数组  3.数组的使用 打印数组:  二.数组作为方法的参数 基本用法 三.数组练习题 1.交换两个变量的值 2.写一个方法,将数组中的每个元素都*2  3.模拟实现tostring函数 4.找数组中的最大元素  5.查找数组中指定元素(顺序查找)  6.查找数组中指定元素(二分查找)   总结: 一.数组的基本用法 1.什么是数组 数组:存储一组相同数据类型的数据的集合. 2.定义数组  int[] :int类型数组  double[] :do

  • 详解java一维数组及练习题实例

    一维数组 1.一维数组的定义方式: int[] array1 = new int[3];//声明创建一个包含3个元素的数组array1(初始值为0) int[] array2 = {1, 2, 3};//声明.创建并初始化一个包含3个元素的数组 int[] array3 = new int[] {1, 2, 3};//声明.创建并初始化一个包含3个元素的整型数组 int[] array4; array[4] = {1, 2, 3}//先声明一个数组array,再进行创建及初始化 int[] ar

  • C++实现LeetCode(两个有序数组的中位数)

    [LeetCode] 4. Median of Two Sorted Arrays 两个有序数组的中位数 There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assume nums1 and 

  • C++实现LeetCode(88.混合插入有序数组)

    [LeetCode] 88. Merge Sorted Array 混合插入有序数组 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements initialized in nums1and nums2 are m and n respectively. You may assume that nums1 has

  • C++实现LeetCode(26.有序数组中去除重复项)

    [LeetCode] 26. Remove Duplicates from Sorted Array 有序数组中去除重复项 Given a sorted array nums, 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

  • C++实现LeetCode(34.在有序数组中查找元素的第一个和最后一个位置)

    [LeetCode] 34. Find First and Last Position of Element in Sorted Array 在有序数组中查找元素的第一个和最后一个位置 Given an array of integers nums sorted in ascending order, find the starting and ending position of a given target value. Your algorithm's runtime complexity

  • C++实现LeetCode(33.在旋转有序数组中搜索)

    [LeetCode] 33. Search in Rotated Sorted Array 在旋转有序数组中搜索 Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]). You are given a target value to search. If f

  • C++实现LeetCode(53.最大子数组)

    [LeetCode] 53. Maximum Subarray 最大子数组 Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Input: [-2,1,-3,4,-1,2,1,-5,4], Output: 6 Explanation: [4,-1,2,1]

随机推荐