CSC248 Lab Assignment 5 – Stack (BI) solution

$25.00

Original Work ?
Category: You will Instantly receive a download link for .ZIP solution file upon Payment

Description

5/5 - (1 vote)

1. Write a program to convert the decimal number into hexadecimal number by using
stack concept. –(NOTE: use built-in ArrayList method ONLY)
Example:
145210 = 5AC16

2. Write a program to evaluate a postfix arithmetic expression. You MUST use User
Defined Type(UDT) Linked List
Example: 2 6 * 3 – / 5 5 * +
Result : 28