מיקומך באתר: דף הבית   google sponsored links
חיפוש באתר:
טיפ החודש - בראיון העבודה!
רוצה לדעת איך:
• לשפץ את קורות החיים שלך ?
• לשווק את עצמך בראיון עבודה?
• למכור את עצמך ?
לחצו כאן ותגלו
mail list רשימת תפוצה
 
הרשמו היום לרשימת התפוצה וקבלו:
• את כל השאלות והתשובות בקובץ מרוכז אחד.
• את כל המאמרים.
• הצעות עבודה חדשות.
הכנס אימייל:
maor
 
 
 

עבודה וראיון עבודה ב , שאלות מראיון עבודה בנושא Algorithms.

• לחצו כאן למודעות דרושים בתחום Algorithms .
• רוצים להציע שאלה חדשה בנושא Algorithms ? לחצו כאן

שאלה מספר: 1 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

max = a1;
for i = 2 to n
if ai > max then max = ai;


ראיון עבודה-755
שאלה מספר: 2 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

function binarySearch(a, value, left, right)
while left ≤ right
mid := floor((right-left)/2)+left
if a[mid] = value
return mid
if value < a[mid]
right := mid-1
else
left := mid+1
return not found


ראיון עבודה-754
שאלה מספר: 3 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

function binarySearch(a, value, left, right)
if right < left
return not found
mid := floor((right-left)/2)+left
if a[mid] = value
return mid
if value < a[mid]
return binarySearch(a, value, left, mid-1)
else
return binarySearch(a, value, mid+1, right)



ראיון עבודה-753
שאלה מספר: 4 בנושא: Algorithms ראיונות עבודה , קורות חיים 3 תגובות

התשובה: 
דוגמאת קוד מצורפת:

void main()
{

char c;

if((c = getchar()) != '\n')
{
main();
}
putchar(c);

}


ראיון עבודה-752
שאלה מספר: 5 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

procedure RemoveFromTail():integer
if(this is the Tail)
element = tail->info
if(this is the last item in the list)
Break pointer connection between head and tail to terminate list
release head from memory pool
else
Traverse list until you reach the tail
release tail from memory pool
set tail pointer to previous element if one exists
set tail's pointer to next element to null
end if
return element
else
return 0
end if
end procedure


ראיון עבודה-751
שאלה מספר: 6 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

procedure RemoveFromHead():integer
if(this is the Head)
element = head->info
temp = head
if(this is the last item in the list)
Break pointer connection between head and tail to terminate list
else
set head.next to equal next item in list
end if
release temp from from memory pool
return element
else
return 0
end if
end procedure


ראיון עבודה-750
שאלה מספר: 7 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

procedure AddToTail(element)
if(this is the Tail)
tail->next = new Node(el)
tail = tail->next
endif
else head = tail = new Node(el)
end procedure


ראיון עבודה-749
שאלה מספר: 8 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

procedure AddToHead(element)
head = new Node(element, head)
if(not the Tail)
tail = head
end if
end procedure



ראיון עבודה-748
שאלה מספר: 9 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה:  Teta(n+m)

ראיון עבודה-747
שאלה מספר: 10 בנושא: Algorithms ראיונות עבודה , קורות חיים 0 תגובות

התשובה: 
דוגמאת קוד מצורפת:

unmark all vertices
choose some starting vertex x
mark x
list L = x
tree T = x
while L nonempty
choose some vertex v from front of list
visit v
for each unmarked neighbor w
mark w
add it to end of list
add edge vw to T


ראיון עבודה-746
עבור לעמוד: הקודם 1 2 הבא


•  נתקלתם באתגר במקום העבודה שאינכם יודעים איך לפתור?
•  רשמו כאן את השאלה ושלחו אותה אלינו.
•  אנו נפתור אותה בשבילכם ונפרסם את הפתרון באתר.
שאלה בנושא : Algorithms
ראיון עבודה , קורות חיים
שם מלא : כתובת אימייל :
שאלה למאגר :
 
הצע שאלה שלח שאלה
© כל הזכויות שמורות Jobiq.Co.iL כתובת אימייל info@jobiq.co.il | מילות חיפוש : ראיון עבודה , קורות חיים , דרושים , ראיונות , שאלות