Advertisement
mmayoub

isInQueue

Mar 10th, 2023
548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | Source Code | 0 0
  1. // تعيد العملية صدق إذا كان العدد موجود في الدور وكذب خلافا لذلك
  2.     // مع المحافظة على الدور الأصلي
  3.     public static boolean isInQueue(Queue<Integer> queue, int x) {
  4.         Queue<Integer> tempQueue = cloneQueue(queue);
  5.  
  6.         while (!tempQueue.isEmpty()) {
  7.             int value = tempQueue.remove();
  8.  
  9.             if (value == x) {
  10.                 return true;
  11.             }
  12.         }
  13.         return false;
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement