Ask Question
29 November, 05:46

Write a function swapvectorends () that swaps the first and last elements of its vector parameter. ex: sortvector = {10, 20, 30, 40} becomes {40, 20, 30, 10}. the vector's size may differ from 4.

+5
Answers (1)
  1. 29 November, 06:02
    0
    Depends on language, but the common way to do that is to create temporary variable.

    length = len (sortvector)

    temp = sortvector[0]

    sortvector[0] = sortvector[length-1]

    sortvector[length-1] = temp
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a function swapvectorends () that swaps the first and last elements of its vector parameter. ex: sortvector = {10, 20, 30, 40} ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers