-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
blog/leetcode_median_of_two_sorted_arrays #41
Comments
이 코드는 두 정렬된 배열 if (i < nums1.length && (j >= nums2.length || nums1[i] < nums2[j])) {
current = nums1[i++];
} else {
current = nums2[j++];
}
이 조건에 따라 |
최적화된 함수의 작동 방식을 보다 잘 이해하기 위한 예시: 예시 1nums1 = [1, 3]
nums2 = [2] 이 경우에는
결과: 중앙값은 예시 2nums1 = [1, 2]
nums2 = [3, 4] 이 경우에는
결과: 중앙값은 예시 3nums1 = [1, 5]
nums2 = [2, 3, 4, 6] 이 경우에는
결과: 중앙값은 이러한 예시들은 함수가 어떻게 두 정렬된 배열에서 중앙값을 찾는지 보여줍니다. 예시 코드의 실행 결과는 다음과 같습니다:
이 결과는 앞서 설명한 로직대로 두 배열에서 중앙값을 찾는 방식을 정확히 반영하고 있습니다. |
Median of Two Sorted Array (Leetcode)
Median of Two Sorted Array (Leetcode)
http://localhost:3000/blog/leetcode_median_of_two_sorted_arrays
The text was updated successfully, but these errors were encountered: