Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~715 People Reached
Favorite Tags

2 Posted Topics

Member Avatar for arsal2012
Member Avatar for RaeesIqbal
0
142
Member Avatar for crazyboy

we can have a permutation as - 1,3,5,4,2 which is generated by the following sequence of operations - Operation Stack Output 1. print() - 1 2. push(2) 2 1 3. print() 2 1,3 4. push(4) 2,4 1,3 5. print() 2,4 1,3,5 6. pop() 2 1,3,5,4 7. pop() - 1,3,5,4,2

Member Avatar for bamasohn
0
573

The End.