operations involving arrays

a.) filling or storing elements
b.) retrieving elements
c.) reading an element
d.) Replacinbg an element
e.) sorting the elements
f.) copying an array

any e books suggestions? and websites?
See the tutorial. Everything but e and possibly f should be explained there.
There's this book "Data Structures with C++" by Sartaj Sahni, Ellis Horowitz, and one more author. They've discussed these operations in first chapters of the book.
Every book that has "data structures" in the title discusses these. Most (beginning) C++ books, like this site, discuss everything in the list as well.
Check out the algorithm references here:
http://cplusplus.com/reference/algorithm
a) fill, fill_n, generate, generate_n
d) replace
e) sort, stable_sort
f) copy,

Those are just a few examples of algorithms that work just fine with any kind of array.
Topic archived. No new replies allowed.