Search elements of LinkedList Java example

  1. /*
  2.   Search elements of LinkedList Java example
  3.   This java example shows how to search element of Java LinkedList using indexOf
  4.   and lastIndexOf methods.
  5. */
  6.  
  7. import java.util.LinkedList;
  8.  
  9. public class SearchElementLinkedListExample {
  10.  
  11. public static void main(String[] args) {
  12.  
  13. //create LinkedList object
  14. LinkedList lList = new LinkedList();
  15.  
  16. //add elements to LinkedList
  17. lList.add("1");
  18. lList.add("2");
  19. lList.add("3");
  20. lList.add("4");
  21. lList.add("5");
  22. lList.add("2");
  23.  
  24. /*
  25.   * To search first occurrence of an element of LinkedList, use
  26.   * int indexOf(Object element) method.
  27.   *
  28.   * This method returns index of first occurrence of element if found in
  29.   * the LinkedList. It returns -1 if element not found.
  30.   */
  31.  
  32. int index = lList.indexOf("2");
  33. if(index != -1)
  34. {
  35. System.out.println("First occurrence of 2 in LinkedList is at index : "
  36. + index);
  37. }
  38. else
  39. {
  40. System.out.println("LinkedList does not contain 2");
  41. }
  42.  
  43. /*
  44.   * To search last occurrence of an element of LinkedList, use
  45.   * int lastIndexOf(Object element) method.
  46.   *
  47.   * This method returns index of last occurrence of element if found in
  48.   * the LinkedList. It returns -1 if element not found.
  49.   */
  50.  
  51. index = lList.lastIndexOf("2");
  52. if(index != -1)
  53. {
  54. System.out.println("Last occurrence of 2 in LinkedList is at index : "
  55. + index);
  56. }
  57. else
  58. {
  59. System.out.println("LinkedList does not contain 2");
  60. }
  61.  
  62. }
  63. }

Post new comment

To combat spam, please enter the code in the image.


Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!