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

I want to check an item in string array for first time only. I mean that if the same string is searched again then I want to display some notification in Java. The user should only be allowed to search for a string once.

How can i do this ?

share|improve this question
3  
The question is worded poorly. And if I understand it I think the description is too vauge! – Brett Walker Aug 6 '11 at 6:38

closed as not a real question by Michael Petrotta, Mitch Wheat, Vineet Reynolds, Karl Knechtel, karim79 Aug 6 '11 at 6:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Don't use an array, use a Set. Whenever the user searches for something, check to see if the set contains() the search term. If it does then show your notification. Otherwise add() the search term to the Set and perform the search operation.

share|improve this answer

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