tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
22
Task/Queue-Definition/MATLAB/queue-definition-3.m
Normal file
22
Task/Queue-Definition/MATLAB/queue-definition-3.m
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
>> myQueue = FIFOQueue({'hello'})
|
||||
|
||||
myQueue =
|
||||
|
||||
FIFOQueue
|
||||
|
||||
>> push(myQueue,'jello')
|
||||
>> pop(myQueue)
|
||||
|
||||
ans =
|
||||
|
||||
hello
|
||||
|
||||
>> pop(myQueue)
|
||||
|
||||
ans =
|
||||
|
||||
jello
|
||||
|
||||
>> pop(myQueue)
|
||||
??? Error using ==> FIFOQueue.FIFOQueue>FIFOQueue.pop at 61
|
||||
The queue is empty
|
||||
Loading…
Add table
Add a link
Reference in a new issue