fork download
  1. //********************************************************
  2. //
  3. // Assignment 9 - Linked Lists
  4. //
  5. // Name: <Azan Butt>
  6. //
  7. // Class: C Programming, <Spring 2025>
  8. //
  9. // Date: <04/12/2025>
  10. //
  11. // Description: Program which determines overtime and
  12. // gross pay for a set of employees with outputs sent
  13. // to standard output (the screen).
  14. //
  15. // This assignment also adds the employee name, their tax state,
  16. // and calculates the state tax, federal tax, and net pay. It
  17. // also calculates totals, averages, minimum, and maximum values.
  18. //
  19. // Array and Structure references have all been replaced with
  20. // pointer references to speed up the processing of this code.
  21. // A linked list has been created and deployed to dynamically
  22. // allocate and process employees as needed.
  23. //
  24. // Call by Reference design (using pointers)
  25. //
  26. //********************************************************
  27.  
  28. // necessary header files
  29. #include <stdio.h>
  30. #include <string.h>
  31. #include <ctype.h> // for char functions
  32. #include <stdlib.h> // for malloc
  33.  
  34. // define constants
  35. #define STD_HOURS 40.0
  36. #define OT_RATE 1.5
  37. #define MA_TAX_RATE 0.05
  38. #define NH_TAX_RATE 0.0
  39. #define VT_TAX_RATE 0.06
  40. #define CA_TAX_RATE 0.07
  41. #define DEFAULT_TAX_RATE 0.08
  42. #define NAME_SIZE 20
  43. #define TAX_STATE_SIZE 3
  44. #define FED_TAX_RATE 0.25
  45. #define FIRST_NAME_SIZE 10
  46. #define LAST_NAME_SIZE 10
  47.  
  48. // Define a global structure type to store an employee name
  49. // ... note how one could easily extend this to other parts
  50. // parts of a name: Middle, Nickname, Prefix, Suffix, etc.
  51. struct name
  52. {
  53. char firstName[FIRST_NAME_SIZE];
  54. char lastName [LAST_NAME_SIZE];
  55. };
  56.  
  57. // Define a global structure type to pass employee data between functions
  58. // Note that the structure type is global, but you don't want a variable
  59. // of that type to be global. Best to declare a variable of that type
  60. // in a function like main or another function and pass as needed.
  61.  
  62. // Note the "next" member has been added as a pointer to structure employee.
  63. // This allows us to point to another data item of this same type,
  64. // allowing us to set up and traverse through all the linked
  65. // list nodes, with each node containing the employee information below.
  66. struct employee
  67. {
  68. struct name empName;
  69. char taxState [TAX_STATE_SIZE];
  70. long int clockNumber;
  71. float wageRate;
  72. float hours;
  73. float overtimeHrs;
  74. float grossPay;
  75. float stateTax;
  76. float fedTax;
  77. float netPay;
  78. struct employee * next;
  79. };
  80.  
  81. // this structure type defines the totals of all floating point items
  82. // so they can be totaled and used also to calculate averages
  83. struct totals
  84. {
  85. float total_wageRate;
  86. float total_hours;
  87. float total_overtimeHrs;
  88. float total_grossPay;
  89. float total_stateTax;
  90. float total_fedTax;
  91. float total_netPay;
  92. };
  93.  
  94. // this structure type defines the min and max values of all floating
  95. // point items so they can be display in our final report
  96. struct min_max
  97. {
  98. float min_wageRate;
  99. float min_hours;
  100. float min_overtimeHrs;
  101. float min_grossPay;
  102. float min_stateTax;
  103. float min_fedTax;
  104. float min_netPay;
  105. float max_wageRate;
  106. float max_hours;
  107. float max_overtimeHrs;
  108. float max_grossPay;
  109. float max_stateTax;
  110. float max_fedTax;
  111. float max_netPay;
  112. };
  113.  
  114. // define prototypes here for each function except main
  115. struct employee * getEmpData (void);
  116. int isEmployeeSize (struct employee * head_ptr);
  117. void calcOvertimeHrs (struct employee * head_ptr);
  118. void calcGrossPay (struct employee * head_ptr);
  119. void printHeader (void);
  120. void printEmp (struct employee * head_ptr);
  121. void calcStateTax (struct employee * head_ptr);
  122. void calcFedTax (struct employee * head_ptr);
  123. void calcNetPay (struct employee * head_ptr);
  124. void calcEmployeeTotals (struct employee * head_ptr,
  125. struct totals * emp_totals_ptr);
  126.  
  127. void calcEmployeeMinMax (struct employee * head_ptr,
  128. struct min_max * emp_minMax_ptr);
  129.  
  130. void printEmpStatistics (struct totals * emp_totals_ptr,
  131. struct min_max * emp_minMax_ptr,
  132. int theSize);
  133.  
  134. int main ()
  135. {
  136.  
  137. // ******************************************************************
  138. // set up head pointer in the main function to point to the
  139. // start of the dynamically allocated linked list nodes that will be
  140. // created and stored in the Heap area.
  141. // ******************************************************************
  142. struct employee * head_ptr; // always points to first linked list node
  143.  
  144. int theSize; // number of employees processed
  145.  
  146. // set up structure to store totals and initialize all to zero
  147. struct totals employeeTotals = {0,0,0,0,0,0,0};
  148.  
  149. // pointer to the employeeTotals structure
  150. struct totals * emp_totals_ptr = &employeeTotals;
  151.  
  152. // set up structure to store min and max values and initialize all to zero
  153. struct min_max employeeMinMax = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  154.  
  155. // pointer to the employeeMinMax structure
  156. struct min_max * emp_minMax_ptr = &employeeMinMax;
  157.  
  158. // ********************************************************************
  159. // Read the employee input and dynamically allocate and set up our
  160. // linked list in the Heap area. The address of the first linked
  161. // list item representing our first employee will be returned and
  162. // its value is set in our head_ptr. We can then use the head_ptr
  163. // throughout the rest of this program anytime we want to get to get
  164. // to the beginning of our linked list.
  165. // ********************************************************************
  166.  
  167. head_ptr = getEmpData ();
  168.  
  169. // ********************************************************************
  170. // With the head_ptr now pointing to the first linked list node, we
  171. // can pass it to any function who needs to get to the starting point
  172. // of the linked list in the Heap. From there, functions can traverse
  173. // through the linked list to access and/or update each employee.
  174. //
  175. // Important: Don't update the head_ptr ... otherwise, you could lose
  176. // the address in the heap of the first linked list node.
  177. //
  178. // ********************************************************************
  179.  
  180. // determine how many employees are in our linked list
  181.  
  182. theSize = isEmployeeSize (head_ptr);
  183.  
  184. // Skip all the function calls to process the data if there
  185. // was no employee information to read in the input
  186. if (theSize <= 0)
  187. {
  188. // print a user friendly message and skip the rest of the processing
  189. printf("\n\n**** There was no employee input to process ***\n");
  190. }
  191.  
  192. else // there are employees to be processed
  193. {
  194.  
  195. // *********************************************************
  196. // Perform calculations and print out information as needed
  197. // *********************************************************
  198.  
  199. // Calculate the overtime hours
  200. calcOvertimeHrs (head_ptr);
  201.  
  202. // Calculate the weekly gross pay
  203. calcGrossPay (head_ptr);
  204.  
  205. // Calculate the state tax
  206. calcStateTax (head_ptr);
  207.  
  208. // Calculate the federal tax
  209. calcFedTax (head_ptr);
  210.  
  211. // Calculate the net pay after taxes
  212. calcNetPay (head_ptr);
  213.  
  214. // *********************************************************
  215. // Keep a running sum of the employee totals
  216. //
  217. // Note the & to specify the address of the employeeTotals
  218. // structure. Needed since pointers work with addresses.
  219. // Unlike array names, C does not see structure names
  220. // as address, hence the need for using the &employeeTotals
  221. // which the complier sees as "address of" employeeTotals
  222. // *********************************************************
  223. calcEmployeeTotals (head_ptr, emp_totals_ptr);
  224.  
  225. // *****************************************************************
  226. // Keep a running update of the employee minimum and maximum values
  227. //
  228. // Note we are passing the address of the MinMax structure
  229. // *****************************************************************
  230. calcEmployeeMinMax (head_ptr, emp_minMax_ptr);
  231.  
  232. // Print the column headers
  233. printHeader();
  234.  
  235. // print out final information on each employee
  236. printEmp (head_ptr);
  237.  
  238. // **************************************************
  239. // print the totals and averages for all float items
  240. //
  241. // Note that we are passing the addresses of the
  242. // the two structures
  243. // **************************************************
  244. printEmpStatistics (emp_totals_ptr, emp_minMax_ptr, theSize);
  245.  
  246. }
  247.  
  248. // indicate that the program completed all processing
  249. printf ("\n\n *** End of Program *** \n");
  250.  
  251. return (0); // success
  252.  
  253. } // main
  254.  
  255. //**************************************************************
  256. // Function: getEmpData
  257. //
  258. // Purpose: Obtains input from user: employee name (first an last),
  259. // tax state, clock number, hourly wage, and hours worked
  260. // in a given week.
  261. //
  262. // Information in stored in a dynamically created linked
  263. // list for all employees.
  264. //
  265. // Parameters: void
  266. //
  267. // Returns:
  268. //
  269. // head_ptr - a pointer to the beginning of the dynamically
  270. // created linked list that contains the initial
  271. // input for each employee.
  272. //
  273. //**************************************************************
  274.  
  275. struct employee * getEmpData (void)
  276. {
  277.  
  278. char answer[80]; // user prompt response
  279. int more_data = 1; // a flag to indicate if another employee
  280. // needs to be processed
  281. char value; // the first char of the user prompt response
  282.  
  283. struct employee *current_ptr, // pointer to current node
  284. *head_ptr; // always points to first node
  285.  
  286. // Set up storage for first node
  287. head_ptr = (struct employee *) malloc (sizeof(struct employee));
  288. current_ptr = head_ptr;
  289.  
  290. // process while there is still input
  291. while (more_data)
  292. {
  293.  
  294. // read in employee first and last name
  295. printf ("\nEnter employee first name: ");
  296. scanf ("%s", current_ptr->empName.firstName);
  297. printf ("\nEnter employee last name: ");
  298. scanf ("%s", current_ptr->empName.lastName);
  299.  
  300. // read in employee tax state
  301. printf ("\nEnter employee two character tax state: ");
  302. scanf ("%s", current_ptr->taxState);
  303.  
  304. // read in employee clock number
  305. printf("\nEnter employee clock number: ");
  306. scanf("%li", & current_ptr -> clockNumber);
  307.  
  308. // read in employee wage rate
  309. printf("\nEnter employee hourly wage: ");
  310. scanf("%f", & current_ptr -> wageRate);
  311.  
  312. // read in employee hours worked
  313. printf("\nEnter hours worked this week: ");
  314. scanf("%f", & current_ptr -> hours);
  315.  
  316. // ask user if they would like to add another employee
  317. printf("\nWould you like to add another employee? (y/n): ");
  318. scanf("%s", answer);
  319.  
  320. // check first character for a 'Y' for yes
  321. // Ask user if they want to add another employee
  322. if ((value = toupper(answer[0])) != 'Y')
  323. {
  324. // no more employees to process
  325. current_ptr->next = (struct employee *) NULL;
  326. more_data = 0;
  327. }
  328. else // Yes, another employee
  329. {
  330. // set the next pointer of the current node to point to the new node
  331. current_ptr->next = (struct employee *) malloc (sizeof(struct employee));
  332. // move the current node pointer to the new node
  333. current_ptr = current_ptr->next;
  334. }
  335.  
  336. } // while
  337.  
  338. return(head_ptr);
  339. }
  340.  
  341. //*************************************************************
  342. // Function: isEmployeeSize
  343. //
  344. // Purpose: Traverses the linked list and keeps a running count
  345. // on how many employees are currently in our list.
  346. //
  347. // Parameters:
  348. //
  349. // head_ptr - pointer to the initial node in our linked list
  350. //
  351. // Returns:
  352. //
  353. // theSize - the number of employees in our linked list
  354. //
  355. //**************************************************************
  356.  
  357. int isEmployeeSize (struct employee * head_ptr)
  358. {
  359.  
  360. struct employee * current_ptr; // pointer to current node
  361. int theSize; // number of link list nodes
  362. // (i.e., employees)
  363.  
  364. theSize = 0; // initialize
  365.  
  366. // assume there is no data if the first node does
  367. // not have an employee name
  368. if (head_ptr->empName.firstName[0] != '\0')
  369. {
  370.  
  371. // traverse through the linked list, keep a running count of nodes
  372. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  373. {
  374.  
  375. ++theSize; // employee node found, increment
  376.  
  377. } // for
  378. }
  379.  
  380. return (theSize); // number of nodes (i.e., employees)
  381.  
  382.  
  383. } // isEmployeeSize
  384.  
  385. //**************************************************************
  386. // Function: printHeader
  387. //
  388. // Purpose: Prints the initial table header information.
  389. //
  390. // Parameters: none
  391. //
  392. // Returns: void
  393. //
  394. //**************************************************************
  395.  
  396. void printHeader (void)
  397. {
  398.  
  399. printf ("\n\n*** Pay Calculator ***\n");
  400.  
  401. // print the table header
  402. printf("\n--------------------------------------------------------------");
  403. printf("-------------------");
  404. printf("\nName Tax Clock# Wage Hours OT Gross ");
  405. printf(" State Fed Net");
  406. printf("\n State Pay ");
  407. printf(" Tax Tax Pay");
  408.  
  409. printf("\n--------------------------------------------------------------");
  410. printf("-------------------");
  411.  
  412. } // printHeader
  413.  
  414. //*************************************************************
  415. // Function: printEmp
  416. //
  417. // Purpose: Prints out all the information for each employee
  418. // in a nice and orderly table format.
  419. //
  420. // Parameters:
  421. //
  422. // head_ptr - pointer to the beginning of our linked list
  423. //
  424. // Returns: void
  425. //
  426. //**************************************************************
  427.  
  428. void printEmp (struct employee * head_ptr)
  429. {
  430.  
  431.  
  432. // Used to format the employee name
  433. char name [FIRST_NAME_SIZE + LAST_NAME_SIZE + 1];
  434.  
  435. struct employee * current_ptr; // pointer to current node
  436.  
  437. // traverse through the linked list to process each employee
  438. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  439. {
  440. // While you could just print the first and last name in the printf
  441. // statement that follows, you could also use various C string library
  442. // functions to format the name exactly the way you want it. Breaking
  443. // the name into first and last members additionally gives you some
  444. // flexibility in printing. This also becomes more useful if we decide
  445. // later to store other parts of a person's name. I really did this just
  446. // to show you how to work with some of the common string functions.
  447. strcpy (name, current_ptr->empName.firstName);
  448. strcat (name, " "); // add a space between first and last names
  449. strcat (name, current_ptr->empName.lastName);
  450.  
  451. // Print out current employee in the current linked list node
  452. printf("\n%-20.20s %-2.2s %06li %5.2f %4.1f %4.1f %7.2f %6.2f %7.2f %8.2f",
  453. name, current_ptr->taxState, current_ptr->clockNumber,
  454. current_ptr->wageRate, current_ptr->hours,
  455. current_ptr->overtimeHrs, current_ptr->grossPay,
  456. current_ptr->stateTax, current_ptr->fedTax,
  457. current_ptr->netPay);
  458.  
  459. } // for
  460.  
  461. } // printEmp
  462.  
  463. //*************************************************************
  464. // Function: printEmpStatistics
  465. //
  466. // Purpose: Prints out the summary totals and averages of all
  467. // floating point value items for all employees
  468. // that have been processed. It also prints
  469. // out the min and max values.
  470. //
  471. // Parameters:
  472. //
  473. // emp_totals_ptr - pointer to a structure containing a running total
  474. // of all employee floating point items
  475. //
  476. // emp_minMax_ptr - pointer to a structure containing
  477. // the minimum and maximum values of all
  478. // employee floating point items
  479. //
  480. // theSize - the total number of employees processed, used
  481. // to check for zero or negative divide condition.
  482. //
  483. // Returns: void
  484. //
  485. //**************************************************************
  486.  
  487. void printEmpStatistics (struct totals * emp_totals_ptr,
  488. struct min_max * emp_minMax_ptr,
  489. int theSize)
  490. {
  491.  
  492. // print a separator line
  493. printf("\n--------------------------------------------------------------");
  494. printf("-------------------");
  495.  
  496. // print the totals for all the floating point items
  497. printf("\nTotals: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  498. emp_totals_ptr->total_wageRate,
  499. emp_totals_ptr->total_hours,
  500. emp_totals_ptr->total_overtimeHrs,
  501. emp_totals_ptr->total_grossPay,
  502. emp_totals_ptr->total_stateTax,
  503. emp_totals_ptr->total_fedTax,
  504. emp_totals_ptr->total_netPay);
  505.  
  506. // make sure you don't divide by zero or a negative number
  507. if (theSize > 0)
  508. {
  509. // print the averages for all the floating point items
  510. printf("\nAverages: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  511. emp_totals_ptr->total_wageRate/theSize,
  512. emp_totals_ptr->total_hours/theSize,
  513. emp_totals_ptr->total_overtimeHrs/theSize,
  514. emp_totals_ptr->total_grossPay/theSize,
  515. emp_totals_ptr->total_stateTax/theSize,
  516. emp_totals_ptr->total_fedTax/theSize,
  517. emp_totals_ptr->total_netPay/theSize);
  518.  
  519. } // if
  520.  
  521. // print the min and max values for each item
  522.  
  523. printf("\nMinimum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  524. emp_minMax_ptr->min_wageRate,
  525. emp_minMax_ptr->min_hours,
  526. emp_minMax_ptr->min_overtimeHrs,
  527. emp_minMax_ptr->min_grossPay,
  528. emp_minMax_ptr->min_stateTax,
  529. emp_minMax_ptr->min_fedTax,
  530. emp_minMax_ptr->min_netPay);
  531.  
  532. printf("\nMaximum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  533. emp_minMax_ptr->max_wageRate,
  534. emp_minMax_ptr->max_hours,
  535. emp_minMax_ptr->max_overtimeHrs,
  536. emp_minMax_ptr->max_grossPay,
  537. emp_minMax_ptr->max_stateTax,
  538. emp_minMax_ptr->max_fedTax,
  539. emp_minMax_ptr->max_netPay);
  540.  
  541. // print out the total employees process
  542. printf ("\n\nThe total employees processed was: %i\n", theSize);
  543.  
  544. } // printEmpStatistics
  545.  
  546. //*************************************************************
  547. // Function: calcOvertimeHrs
  548. //
  549. // Purpose: Calculates the overtime hours worked by an employee
  550. // in a given week for each employee.
  551. //
  552. // Parameters:
  553. //
  554. // head_ptr - pointer to the beginning of our linked list
  555. //
  556. // Returns: void (the overtime hours gets updated by reference)
  557. //
  558. //**************************************************************
  559.  
  560. void calcOvertimeHrs (struct employee * head_ptr)
  561. {
  562.  
  563. struct employee * current_ptr; // pointer to current node
  564.  
  565. // traverse through the linked list to calculate overtime hours
  566. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  567. {
  568. // Any overtime ?
  569. if (current_ptr->hours >= STD_HOURS)
  570. {
  571. current_ptr->overtimeHrs = current_ptr->hours - STD_HOURS;
  572. }
  573. else // no overtime
  574. {
  575. current_ptr->overtimeHrs = 0;
  576. }
  577.  
  578.  
  579. } // for
  580.  
  581.  
  582. } // calcOvertimeHrs
  583.  
  584. //*************************************************************
  585. // Function: calcGrossPay
  586. //
  587. // Purpose: Calculates the gross pay based on the the normal pay
  588. // and any overtime pay for a given week for each
  589. // employee.
  590. //
  591. // Parameters:
  592. //
  593. // head_ptr - pointer to the beginning of our linked list
  594. //
  595. // Returns: void (the gross pay gets updated by reference)
  596. //
  597. //**************************************************************
  598.  
  599. void calcGrossPay (struct employee * head_ptr)
  600. {
  601.  
  602. float theNormalPay; // normal pay without any overtime hours
  603. float theOvertimePay; // overtime pay
  604.  
  605. struct employee * current_ptr; // pointer to current node
  606.  
  607. // traverse through the linked list to calculate gross pay
  608. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  609. {
  610. // calculate normal pay and any overtime pay
  611. theNormalPay = current_ptr->wageRate *
  612. (current_ptr->hours - current_ptr->overtimeHrs);
  613. theOvertimePay = current_ptr->overtimeHrs *
  614. (OT_RATE * current_ptr->wageRate);
  615.  
  616. // calculate gross pay for employee as normalPay + any overtime pay
  617. current_ptr->grossPay = theNormalPay + theOvertimePay;
  618.  
  619. }
  620.  
  621. } // calcGrossPay
  622.  
  623. //*************************************************************
  624. // Function: calcStateTax
  625. //
  626. // Purpose: Calculates the State Tax owed based on gross pay
  627. // for each employee. State tax rate is based on the
  628. // the designated tax state based on where the
  629. // employee is actually performing the work. Each
  630. // state decides their tax rate.
  631. //
  632. // Parameters:
  633. //
  634. // head_ptr - pointer to the beginning of our linked list
  635. //
  636. // Returns: void (the state tax gets updated by reference)
  637. //
  638. //**************************************************************
  639.  
  640. void calcStateTax (struct employee * head_ptr)
  641. {
  642.  
  643. struct employee * current_ptr; // pointer to current node
  644.  
  645. // traverse through the linked list to calculate the state tax
  646. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  647. {
  648. // Make sure tax state is all uppercase
  649. if (islower(current_ptr->taxState[0]))
  650. current_ptr->taxState[0] = toupper(current_ptr->taxState[0]);
  651. if (islower(current_ptr->taxState[1]))
  652. current_ptr->taxState[1] = toupper(current_ptr->taxState[1]);
  653. if (strcmp(current_ptr->taxState, "MA") == 0)
  654. current_ptr->stateTax = current_ptr->grossPay * 0.05;
  655. else if (strcmp(current_ptr->taxState, "NH") == 0)
  656. current_ptr->stateTax = current_ptr->grossPay * 0.00;
  657. else if (strcmp(current_ptr->taxState, "VT") == 0)
  658. current_ptr->stateTax = current_ptr->grossPay * 0.06;
  659. else if (strcmp(current_ptr->taxState, "NY") == 0)
  660. current_ptr->stateTax = current_ptr->grossPay * 0.08;
  661. else if (strcmp(current_ptr->taxState, "CA") == 0)
  662. current_ptr->stateTax = current_ptr->grossPay * 0.07;
  663. else
  664. current_ptr->stateTax = 0.0;
  665. } // for
  666.  
  667. } // calcStateTax
  668.  
  669. //*************************************************************
  670. // Function: calcFedTax
  671. //
  672. // Purpose: Calculates the Federal Tax owed based on the gross
  673. // pay for each employee
  674. //
  675. // Parameters:
  676. //
  677. // head_ptr - pointer to the beginning of our linked list
  678. //
  679. // Returns: void (the federal tax gets updated by reference)
  680. //
  681. //**************************************************************
  682.  
  683. void calcFedTax (struct employee * head_ptr)
  684. {
  685.  
  686. struct employee * current_ptr; // pointer to current node
  687.  
  688.  
  689. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  690. {
  691. // complete - Inside the loop, using current_ptr
  692. // ... which points to the current employee
  693. // ... set the fedTax
  694.  
  695. current_ptr->fedTax = current_ptr->grossPay * FED_TAX_RATE;
  696.  
  697. // complete - End the for loop
  698. }
  699.  
  700. } // calcFedTax
  701.  
  702. //*************************************************************
  703. // Function: calcNetPay
  704. //
  705. // Purpose: Calculates the net pay as the gross pay minus any
  706. // state and federal taxes owed for each employee.
  707. // Essentially, their "take home" pay.
  708. //
  709. // Parameters:
  710. //
  711. // head_ptr - pointer to the beginning of our linked list
  712. //
  713. // Returns: void (the net pay gets updated by reference)
  714. //
  715. //**************************************************************
  716.  
  717. void calcNetPay (struct employee * head_ptr)
  718. {
  719. float theTotalTaxes; // the total state and federal tax
  720.  
  721. struct employee * current_ptr; // pointer to current node
  722.  
  723. // traverse through the linked list to calculate the net pay
  724. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  725. {
  726. // calculate the total state and federal taxes
  727. theTotalTaxes = current_ptr->stateTax + current_ptr->fedTax;
  728.  
  729. // calculate the net pay
  730. current_ptr->netPay = current_ptr->grossPay - theTotalTaxes;
  731.  
  732. } // for
  733.  
  734. } // calcNetPay
  735.  
  736. //*************************************************************
  737. // Function: calcEmployeeTotals
  738. //
  739. // Purpose: Performs a running total (sum) of each employee
  740. // floating point member item stored in our linked list
  741. //
  742. // Parameters:
  743. //
  744. // head_ptr - pointer to the beginning of our linked list
  745. // emp_totals_ptr - pointer to a structure containing the
  746. // running totals of each floating point
  747. // member for all employees in our linked
  748. // list
  749. //
  750. // Returns:
  751. //
  752. // void (the employeeTotals structure gets updated by reference)
  753. //
  754. //**************************************************************
  755.  
  756. void calcEmployeeTotals (struct employee * head_ptr,
  757. struct totals * emp_totals_ptr)
  758. {
  759.  
  760. struct employee * current_ptr; // pointer to current node
  761.  
  762. // traverse through the linked list to calculate a running
  763. // sum of each employee floating point member item
  764. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  765. {
  766. // add current employee data to our running totals
  767. emp_totals_ptr->total_wageRate += current_ptr->wageRate;
  768. emp_totals_ptr->total_hours += current_ptr->hours;
  769. emp_totals_ptr->total_overtimeHrs += current_ptr->overtimeHrs;
  770. emp_totals_ptr->total_grossPay += current_ptr->grossPay;
  771.  
  772. // TODO - update these two statements below to correctly
  773. // keep a running total of the state and federal
  774. // taxes. Right now they are incorrectly being
  775. // set to zero.
  776. emp_totals_ptr->total_stateTax += current_ptr->stateTax;
  777. emp_totals_ptr->total_fedTax += current_ptr->fedTax;
  778.  
  779. emp_totals_ptr->total_netPay += current_ptr->netPay;
  780.  
  781. // Note: We don't need to increment emp_totals_ptr
  782.  
  783. } // for
  784.  
  785. // no need to return anything since we used pointers and have
  786. // been referencing the linked list stored in the Heap area.
  787. // Since we used a pointer as well to the totals structure,
  788. // all values in it have been updated.
  789.  
  790. } // calcEmployeeTotals
  791.  
  792. //*************************************************************
  793. // Function: calcEmployeeMinMax
  794. //
  795. // Purpose: Accepts various floating point values from an
  796. // employee and adds to a running update of min
  797. // and max values
  798. //
  799. // Parameters:
  800. //
  801. // head_ptr - pointer to the beginning of our linked list
  802. // emp_minMax_ptr - pointer to the min/max structure
  803. //
  804. // Returns:
  805. //
  806. // void (employeeMinMax structure updated by reference)
  807. //
  808. //**************************************************************
  809.  
  810. void calcEmployeeMinMax (struct employee * head_ptr,
  811. struct min_max * emp_minMax_ptr)
  812. {
  813.  
  814. struct employee * current_ptr; // pointer to current node
  815.  
  816. // *************************************************
  817. // At this point, head_ptr is pointing to the first
  818. // employee .. the first node of our linked list
  819. //
  820. // As this is the first employee, set each min
  821. // min and max value using our emp_minMax_ptr
  822. // to the associated member fields below. They
  823. // will become the initial baseline that we
  824. // can check and update if needed against the
  825. // remaining employees in our linked list.
  826. // *************************************************
  827.  
  828.  
  829. // set to first employee, our initial linked list node
  830. current_ptr = head_ptr;
  831.  
  832. // set the min to the first employee members
  833. emp_minMax_ptr->min_wageRate = current_ptr->wageRate;
  834. emp_minMax_ptr->min_hours = current_ptr->hours;
  835. emp_minMax_ptr->min_overtimeHrs = current_ptr->overtimeHrs;
  836. emp_minMax_ptr->min_grossPay = current_ptr->grossPay;
  837. emp_minMax_ptr->min_stateTax = current_ptr->stateTax;
  838. emp_minMax_ptr->min_fedTax = current_ptr->fedTax;
  839. emp_minMax_ptr->min_netPay = current_ptr->netPay;
  840.  
  841. // set the max to the first employee members
  842. emp_minMax_ptr->max_wageRate = current_ptr->wageRate;
  843. emp_minMax_ptr->max_hours = current_ptr->hours;
  844. emp_minMax_ptr->max_overtimeHrs = current_ptr->overtimeHrs;
  845. emp_minMax_ptr->max_grossPay = current_ptr->grossPay;
  846. emp_minMax_ptr->max_stateTax = current_ptr->stateTax;
  847. emp_minMax_ptr->max_fedTax = current_ptr->fedTax;
  848. emp_minMax_ptr->max_netPay = current_ptr->netPay;
  849.  
  850. // ******************************************************
  851. // move to the next employee
  852. //
  853. // if this the only employee in our linked list
  854. // current_ptr will be NULL and will drop out the
  855. // the for loop below, otherwise, the second employee
  856. // and rest of the employees (if any) will be processed
  857. // ******************************************************
  858. current_ptr = current_ptr->next;
  859.  
  860. // traverse the linked list
  861. // compare the rest of the employees to each other for min and max
  862. for (; current_ptr; current_ptr = current_ptr->next)
  863. {
  864.  
  865. // check if current Wage Rate is the new min and/or max
  866. if (current_ptr->wageRate < emp_minMax_ptr->min_wageRate)
  867. {
  868. emp_minMax_ptr->min_wageRate = current_ptr->wageRate;
  869. }
  870.  
  871. if (current_ptr->wageRate > emp_minMax_ptr->max_wageRate)
  872. {
  873. emp_minMax_ptr->max_wageRate = current_ptr->wageRate;
  874. }
  875.  
  876. // check if current Hours is the new min and/or max
  877. if (current_ptr->hours < emp_minMax_ptr->min_hours)
  878. {
  879. emp_minMax_ptr->min_hours = current_ptr->hours;
  880. }
  881.  
  882. if (current_ptr->hours > emp_minMax_ptr->max_hours)
  883. {
  884. emp_minMax_ptr->max_hours = current_ptr->hours;
  885. }
  886.  
  887. // check if current Overtime Hours is the new min and/or max
  888. if (current_ptr->overtimeHrs < emp_minMax_ptr->min_overtimeHrs)
  889. {
  890. emp_minMax_ptr->min_overtimeHrs = current_ptr->overtimeHrs;
  891. }
  892.  
  893. if (current_ptr->overtimeHrs > emp_minMax_ptr->max_overtimeHrs)
  894. {
  895. emp_minMax_ptr->max_overtimeHrs = current_ptr->overtimeHrs;
  896. }
  897.  
  898. // check if current Gross Pay is the new min and/or max
  899. if (current_ptr->grossPay < emp_minMax_ptr->min_grossPay)
  900. {
  901. emp_minMax_ptr->min_grossPay = current_ptr->grossPay;
  902. }
  903.  
  904. if (current_ptr->grossPay > emp_minMax_ptr->max_grossPay)
  905. {
  906. emp_minMax_ptr->max_grossPay = current_ptr->grossPay;
  907. }
  908.  
  909. // complete - Add code to check if the current state tax is our
  910. // new min and/or max items. Right now the checks
  911. // are missing.
  912.  
  913.  
  914. if (current_ptr->stateTax < emp_minMax_ptr->min_stateTax)
  915. {
  916. emp_minMax_ptr->min_stateTax = current_ptr->stateTax;
  917. }
  918.  
  919. if (current_ptr->stateTax > emp_minMax_ptr->max_stateTax)
  920. {
  921. emp_minMax_ptr->max_stateTax = current_ptr->stateTax;
  922. }
  923.  
  924.  
  925. if (current_ptr->fedTax < emp_minMax_ptr->min_fedTax)
  926. {
  927.  
  928. emp_minMax_ptr->min_fedTax = current_ptr->fedTax;
  929. }
  930.  
  931. if (current_ptr->fedTax > emp_minMax_ptr->max_fedTax)
  932. {
  933. emp_minMax_ptr->max_fedTax = current_ptr->fedTax;
  934. }
  935.  
  936.  
  937. // check if current Federal Tax is the new min and/or max
  938.  
  939. // check if current Net Pay is the new min and/or max
  940. if (current_ptr->netPay < emp_minMax_ptr->min_netPay)
  941. {
  942. emp_minMax_ptr->min_netPay = current_ptr->netPay;
  943. }
  944.  
  945. if (current_ptr->netPay > emp_minMax_ptr->max_netPay)
  946. {
  947. emp_minMax_ptr->max_netPay = current_ptr->netPay;
  948. }
  949.  
  950. } // for
  951.  
  952. // no need to return anything since we used pointers and have
  953. // been referencing all the nodes in our linked list where
  954. // they reside in memory (the Heap area)
  955.  
  956. } // calcEmployeeMinMax
Success #stdin #stdout 0.01s 5276KB
stdin
Connie
Cobol
MA
98401
10.60
51.0
Y
Mary
Apl
NH
526488
9.75
42.5
Y
Frank
Fortran
VT
765349
10.50
37.0
Y
Jeff
Ada
NY
34645
12.25
45
Y
Anton
Pascal
CA
127615
8.35
40.0
N
stdout
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 

*** Pay Calculator ***

---------------------------------------------------------------------------------
Name                Tax  Clock# Wage   Hours  OT   Gross   State  Fed      Net
                   State                           Pay     Tax    Tax      Pay
---------------------------------------------------------------------------------
Connie Cobol         MA  098401 10.60  51.0  11.0  598.90  29.95  149.73   419.23
Mary Apl             NH  526488  9.75  42.5   2.5  426.56   0.00  106.64   319.92
Frank Fortran        VT  765349 10.50  37.0   0.0  388.50  23.31   97.12   268.07
Jeff Ada             NY  034645 12.25  45.0   5.0  581.88  46.55  145.47   389.86
Anton Pascal         CA  127615  8.35  40.0   0.0  334.00  23.38   83.50   227.12
---------------------------------------------------------------------------------
Totals:                         51.45 215.5  18.5 2329.84 123.18  582.46  1624.19
Averages:                       10.29  43.1   3.7  465.97  24.64  116.49   324.84
Minimum:                         8.35  37.0   0.0  334.00   0.00   83.50   227.12
Maximum:                        12.25  51.0  11.0  598.90  46.55  149.73   419.23

The total employees processed was: 5


 *** End of Program ***