[Leetcode] Contains Duplicate II Problem solving report C language

Source: Internet
Author: User

Topic
Given an array of integers and a integer k, find out whether there is II distinct indices I and j in the array such tha T nums[i] = Nums[j] and the difference between I and J are at most K.
"Problem Analysis"
Since two numbers with the same number are limited by distance range, then the number of each element (except the last element) one by one is compared to the amount of k behind it. Returns true if they are equal. When the array has been traversed, no conditions are found to satisfy the condition. returns FALSE.
"The specific code is as follows"

BOOLContainsnearbyduplicate (int* Nums,intNumssize,intK) {intIintJif(numssize==1)return false; for(i=0; i<numssize-1; i++) { for(j=i+1;(j<=i+k) && (j<numssize); j + +) {if(Nums[i]==nums[j])return true; }      }return false;}

"Personal Summary"
There are two places to be aware of:
1. When Numssize is 1, it indicates that there is only one number and returns false directly.
2. When judging the termination condition of the 2nd for Loop, J

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

[Leetcode] Contains Duplicate II Problem solving report C language

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.