TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Abhishek Jaiswal
95
19.8k
9.6m
C++ Program for this algorithm
Nov 8 2013 8:02 AM
C++ Program for this algorithm
Algorithm
(Traversing a Linear Array)Here LA is a linear array with lower bound LB and upper bound UB.This algorithm traverses LA applying an operation PROCESS to each element of LA. 1.[Initialize counter.]Set K:= LB. 2.Repeat steps 3 and 4 while K<=UB. 3.[visit element]Apply process to LA[K]. 4.[incease counter]set K:=K+1. [End of step 2 loop] 5. Exit
Reply
Answers (
4
)
About LHUN Algorithms
i need complete C++ programs for these 2 algos