Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // تعيد العملية صدق إذا كان العدد موجود في الدور وكذب خلافا لذلك
- // مع المحافظة على الدور الأصلي
- public static boolean isInQueue(Queue<Integer> queue, int x) {
- Queue<Integer> tempQueue = cloneQueue(queue);
- while (!tempQueue.isEmpty()) {
- int value = tempQueue.remove();
- if (value == x) {
- return true;
- }
- }
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement