Skip to main content

How to program pyramids using loops - 2

In this video tutorial, two of the more patterns have been discussed that relates to the similar pattern problems. What's different about these are that they also include spaces before the stars as a part of the pattern to be printed. Having this extra sub pattern to track spaces  in the desired pattern requires an extra loop to track and control it.

For a brief review, We discussed that these patterns if observed carefully are just representation of tables i.e. a combination of rows and columns. And few of the cells in that table are populated with some data according to a logically programmed algorithm with represents a pattern.


In these cases, the red triangles shows us the spaces represented by "sp" and therefore unlike the previous pattern these need to be managed by the loop as they occur before the stars in the pattern. So, taking the same approach of rows and columns managing loops, we will have an outer loop that tracks the rows which will start at 0 and goes upto the number of rows which in these cases is 5 (excluding 5 since we are starting from 0).

Now we can traverse through each and every row one by one. While we are in each row we need two things to be done :
  1. Print the spaces
  2. Print the stars (any data according to the pattern)
We need two inner loops one after the other for both the above tasks.  We need to deduce a logic to be implemented in these loops for the pattern to be printed.

In the first pattern, the spaces in each row can be calculated by subtracting the row number from maximum number of rows eg. row 1 : space => 5 - 1 = 4, row 2 : space = 5 - 2 = 3. In the second pattern the number of spaces are equal to row number - 1.

In the first pattern, the stars can be calculated by starting from 0 and going upto row number (excluding row number since we start from 0). In the second pattern, the number of stars can be calculated by subtracting row number - 1 from maximum number of rows eg. row 1 : stars => 5 - 0 = 5, row 2 : stars => 5 - 1 = 4.

Since we have figured out the logic for all the loops needed, we can just lay them down in order and the desired patterns will be printed.

Test Code : (Use this code to produce the desired patterns)

For pattern 1 =>

#include<stdio.h>
int main()
{
    for (int i = 0; i < 5; ++i) //rows 0,1,2,3,4
    {
        for (int s = i; s < 4; ++s) //spaces 0,1,2,3
        {
            printf(" ");
        }
        for (int j = 0; j <= i; ++j) //stars
        {
            printf("*");
        }
        printf("\n");
    }
    return 0;
}


For pattern 2 =>

#include<stdio.h>
int main()
{
    for (int i = 0; i < 5; ++i) //rows 0,1,2,3,4
    {
        for (int s = 0; s < i; ++s) //space
        {
            printf(" ");
        }
        for (int j = i; j < 5; ++j) //star 0,1,2,3,4
        {
            printf("*");
        }
        printf("\n");
    }
    return 0;
}
 


NOTE: Few more of the examples of such problems will be discussed soon. Although it is
highly recommended to try out few of the more complex examples on your own after you
have understood the concept of how it works.


Watch the video below to know more.




Comments

Popular posts from this blog

How to open any installed application on MAC OS X using Terminal !

MAC OS X 10.9 is one of the finest operating systems used in the business as well as household purposes. Considering the unix side of the operating system, it becomes beneficial to be able to do trivial stuff like opening any app directly from the command line interface, i.e. Terminal in this case. There are a lot of other uses that a utility like terminal can offer you but for the instant purpose, let us find out how to open any of the installed applications on your MACINTOSH using the terminal. I will be working with few of the application I have installed on my system. You are free to choose your own. The general syntax for the command is : open -a application_name If you want to open the application as a super user, just prefix the command with sudo : sudo open -a application_name Test commands : (Use these commands one-by-one to open the specified applications) open -a textmate open -a bbedit open -a firefox open -a opera open -a finder open -a mail Watc...

How to program pyramids using loops

While programming, beginners do come up with some form of pyramid to be printed using any kind of loops in most programming languages. This video presentation clarifies the basic concept behind coding these pyramids in any programming language and explains how these loops can be created and manipulated to obtain different outputs. If you visualize properly, these pyramids are mere TABLES, combination of rows and columns. Having said that, we can understand that there needs to be a logic to control both rows and columns of the table and do that in such a way that the desired pattern is obtained. For doing so, we use two loops in case of a simple pyramid , one for the rows and other for the columns. Since, the general convention is to represent the rows prior to columns , assuming the same, the outer loop tracks the rows and the inner loop tracks the columns. The outer loop is fairly simple and is defined starting from 0 or 1 depending on your preference in most of the cases ...