جافا Java
6.47K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
Write a Java code to implement a simple linked list.

اكتب كود جافا لتنفيذ قائمة مترابطة بسيطة.

#DataStructures
Which collection class should be used if you need to prevent duplicate elements and maintain insertion order?

أي فئة من فئات المجموعات يجب استخدامها إذا كنت بحاجة لمنع العناصر المكررة والحفاظ على ترتيب الإدخال؟

#JavaCollections #DataStructures
What is the difference between `ArrayList` and `LinkedList` in Java?

ما هو الفرق بين `ArrayList` و `LinkedList` في جافا؟

#JavaCollections #DataStructures
Which of the following is true about Java arrays?

أي مما يلي صحيح بخصوص المصفوفات في جافا؟

#JavaArrays #DataStructures
Write a Java code to implement a simple queue using an array.

اكتب كود جافا لتنفيذ صف بسيط باستخدام مصفوفة.

#DataStructures
Which collection class should be used if you need to maintain the insertion order of elements?

أي فئة من فئات المجموعات (collections) يجب استخدامها إذا كنت بحاجة للحفاظ على ترتيب إدخال العناصر؟

#JavaCollections #DataStructures
What is the difference between `ArrayList` and `LinkedList` in Java?

ما هو الفرق بين `ArrayList` و `LinkedList` في جافا؟

#JavaCollections #DataStructures
Write a Java code to implement a simple binary tree.

اكتب كود جافا لتنفيذ شجرة ثنائية بسيطة.

#DataStructures
Write a Java code to implement a simple queue using an array.

اكتب كود جافا لتنفيذ صف بسيط باستخدام مصفوفة.

#DataStructures
2