- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java program to reverse an array
Stack is an Abstract Data Type (ADT), commonly used in most programming languages. It is named stack as it behaves like a real-world stack, for example – a deck of cards or a pile of plates, etc.
A stack is first in first out, it has two main operations push and pop. Push inserts data into it and pop retrieves data from it.
To reverse an array using stack initially push all elements into the stack using the push() method then, retrieve them back using the pop() method into another array.
Example
import java.util.Arrays; import java.util.Stack; public class ab38_ReverseOfArray { public static void main(String args[]) { Stack<Integer> stack = new Stack<Integer>(); int[] myArray = {23, 93, 56, 92, 39}; int size = myArray.length; for(int i=0; i<size; i++) { stack.push(myArray[i]); } int[] reverseArray = new int[size]; for(int i=0; i<size; i++) { reverseArray[i] = stack.pop(); } System.out.println("Reversed array is ::"+Arrays.toString(reverseArray)); } }
Output
Reversed array is ::[39, 92, 56, 93, 23]
- Related Articles
- Java program to reverse an array upto a given position
- C# program to reverse an array
- Java program to reverse an array in groups of given size
- C program to reverse an array elements
- Write a Golang program to reverse an array
- Java Program to get the reverse of an Integer array with Lambda Expressions
- Write a program to reverse an array in JavaScript?
- C++ program to reverse an array elements (in place)
- Write a program to reverse an array or string in C++
- Python program to reverse an array in groups of given size?
- Program to reverse an array up to a given position in Python
- How do I reverse an int array in Java
- C Program to Reverse Array of Strings
- Write a C program to reverse array
- Python program to reverse a Numpy array?

Advertisements