Ask Question
26 October, 18:33

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.

+4
Answers (1)
  1. 26 October, 21:55
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers