Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the most efficient algorithm to determine if array2 is a "sub-array" of array1? (True for array1 = [9,9,10,4] and and array2 = [9, 10])

Without relying on a language-specific utility for array comparison, what's the cheapest average and worst-case solution? It seems like sorting and binary search would only get the negative case.

share|improve this question
3  
Must the elements of array2 be consequent? Is array3=[9,4] also a subarray of array1 or not? – Timo Nov 28 '11 at 2:59
The elements must be consequent. [9,4] would not be a subarray of array1. – Geoff Moller Nov 28 '11 at 3:09

2 Answers

up vote 5 down vote accepted

This is basically about exact text matching algorithms, so we should at compare at least Boyer-Moore, KMP and Rabin-Karp string search algorithms.

Fortunately, the answer is already on this Wikpedia page, which compares the complexities (average/worst case) of several string search algorithms.

share|improve this answer

I think you can simply sort the two arrays and compare integer by integer. Gives a O(nlogn) solution

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.