Site icon Tutor Bin

TCC Stock Symbol Search Project

TCC Stock Symbol Search Project

Description

Hello, I need you to help me on creating this code on Visual Studio 2019 with C++ language.

Class,

The attached program loads an array of stock symbols (the screenshots). Use the existing array and related data items and create more if needed.

Use the attached program for this assignment and complete the following tasks:

  1. Create a void method called linearSearch – this method should be placed prior to main().
    1. This method should have 3 parameters – the array, the array size, and the string to find.
    2. This method should display “Linear Search” when it starts.
    3. This method should do a serial (linear) search AND:
      1. If found, display “???? found at index ???” where ???? is the value searched and ??? is the matching index.
      2. If not found, display “??? not found” (Replace ??? with the passed stock to find).
  2. In main(), create a loop and prompt for a 3 character Stock to search for and load into the stockToFind string variable. If the selection is “X”, then end the loop.
    Example prompt – “Enter a Stock Symbol or X to exit:”.
    1. From main() pass the stocks, STOCK_COUNT, and stockToFind variables to this method
  3. Remove completed TODO related TASK comments once the tasks are completed.

Optional: You may lower the value in the STOCK_COUNT constant to better visualize the process if wanted.

Example display below – Your results will vary – The first 7 lines displayed are already coded in the provided program.

Loading Array with Random Data ...
Removing Duplicates in the List
Removed 32 duplicated entries ...
Removing Duplicates in the List
Removed 1 duplicated entries ...
Removing Duplicates in the List
Array is loaded with 1000 values!

Enter a Stock Symbol to Find or X to Exit: IBC
Linear Search
IBC found at after 433 compares

Enter a Stock Symbol to Find or X to Exit: IBM
Linear Search
IBM not found

Enter a Stock Symbol to Find or X to Exit: X
END OF PROGRAM

Have a similar assignment? "Place an order for your assignment and have exceptional work written by our team of experts, guaranteeing you A results."

Exit mobile version