Recent content by Henry R

  1. Henry R

    MHB Explore the Manipulated Contents of an Array with Multiplication and Addition

    Oh, Thank you so much for reminds me that. Yeah! It's array treat 1.5 as integer.
  2. Henry R

    MHB Selection Sort & Insertion Sort: Step-by-Step Guide to Sorting Data

    yes. It's about sorting. - - - Updated - - - Yeah. They talk about quick sort, simple selection sort and something like that.
  3. Henry R

    MHB Explore the Manipulated Contents of an Array with Multiplication and Addition

    arr[0] = 2 arr[1] = 3 expression 3... arr[2] = arr[0] * arr[1] =6, is because 2 * 3 = 6.
  4. Henry R

    MHB Explore the Manipulated Contents of an Array with Multiplication and Addition

    no, idea. But, I think the second expression is correct according to your explanation.
  5. Henry R

    MHB How to Build a Binary Search Tree with Given Data?

    Draw a Binary Search Trees (BST) produced when data containing 30,40,50,60,10,20,55,15 is inserted one by one. Thanks.
  6. Henry R

    MHB How Do You Write a Function for Depth First Search in Graph Traversal?

    Hey! Thanks. But, did u get the code by any websites? Oh okay, I understand. Thanks for helping.
  7. Henry R

    MHB Selection Sort & Insertion Sort: Step-by-Step Guide to Sorting Data

    How to do this? Show the step by step how the following data is sorted into ascending order using the given sorting algorithm : 22 85 43 28 65 35 i) Selection sort. ii) Insertion Sort.
  8. Henry R

    MHB Explore the Manipulated Contents of an Array with Multiplication and Addition

    Please identify the contents of the array after the following manipulations. int arr[5]; arr[0] = 2; arr[1] = arr[0] + 1; arr[2] = arr[0] * arr[1]; arr[3] = arr[1] / arr[0]; arr[4] = arr[3] * arr[3]; *Involves multiplication, addition from the array. Solve it...
  9. Henry R

    MHB How Do You Write a Function for Depth First Search in Graph Traversal?

    Hello... how to write the function of depth first search? Thank you.
  10. Henry R

    MHB How to Study Effectively: Tips & Tricks

    I try to study very hard, love my life and avoid distractions.
  11. Henry R

    MHB Computer Information System Program

    Website of C programming language that stores computer data records. Please,please, please...:o There's a lot of website but, you know I couldn't find them.
Back
Top