Swift Program to Print Inverted Binary Pattern


This tutorial will discuss how to write swift program to print inverted binary pattern.

Binary pattern is a sequence of “0” and “1” which is used to develop different patterns or shapes like pyramid, rectangle, cross, etc.

To create an inverted binary pattern we can use any of the following methods −

  • Using nested for loop

  • Using init() Function

  • Using stride Function

Below is a demonstration of the same −

Input

Suppose our given input is −

Num = 3

Output

The desired output would be −

1 0 1 0 
0 1 0 
1 0 
0

METHOD 1- USING NESTED FOR LOOP

We can create an inverted binary pattern or any other pattern using nested for loops. Here each for loop handle different tasks such as outermost for loop is used for new rows, and nested for loop is used to print binary numbers.

Example

The following program shows how to print inverted binary pattern using nested for loop.

import Foundation 
import Glibc

// Size of the pattern 
let num = 3

// Handle the length of pattern 
for m in 0...num {

   // Printing inverted binary pattern 
   for n in m...num { 
      if n % 2 == 0 { 
         print(1, terminator : " ") 
      } 
      else { 
         print(0, terminator : " ") 
      } 
   } 
   print("") 
}

Output

 1 0 1 0 
 0 1 0 
 1 0 
 0

Here, in the above code, we use nested for loops to print inverted star pattern. The outer most for loop(starts from 0 to 6) is use to handle the total number of rows are going to print and each row is start with new line. Now the nested for loop(starts from x to num) is used to print the “*” in inverted pattern or we can say is used to handle the total number of columns in the pattern.

METHOD 2- USING INIT() FUNCTION

Swift provide an in-built function named String.init(). Using this function, we can able to create any pattern. String.init() function create a string in which the given character is repeated the specified number of times.

Syntax

Following is the syntax −

String.init(repeating:Character, count: Int)

Here, repeating represent the character which this method repeats and count represent the total number of time the given character repeat in the resultant string.

Example

The following program shows how to print inverted binary pattern using string.init() function.

// Handle the length of pattern 
import Foundation 
import Glibc

// Size of the pattern 
let num = 6
for i in 0...num {
   // Printing inverted binary pattern 
   print(String.init(repeating:"11", count:num-i)) 
}

Output

111111111111
1111111111
11111111
111111
1111
11

Here in the above code, we create an inverted star pattern of length 6 using String.init() function. Here we uses for loop(starting from 0 to num) which is used to print each row. In this loop, we uses String.init() function. This function prints “11” according to the count value(that is num-i):

METHOD 3- USING STRIDE FUNCTION

Swift provide an in-built function named stride(). The stride() function is used to move from one value to another with increment or decrement. Or we can say stride() function return a sequence from the starting value but not include end value and each value in the given sequence is steps by the given amount.

Syntax

Following is the syntax −

stride(from:startValue, to: endValue, by:count)

Here,

from − Represent the starting value to use for the given sequence.

to − Represent the end value to limit the given sequence

by − Represent the amount to step by with each iteration, here positive value represents upward iteration or increment and negative value represent the downward iteration or decrement.

Example

The following program shows how to print inverted binary pattern using stride() function.

import Foundation 
import Glibc

// Size of the pattern 
let num = 8

// Handle the length of pattern 
for m in 0...num {
   // Printing inverted star pattern 
   // Using stride() function 
   for n in stride(from: num, to: m, by: -1) { 
      if n % 2 == 0 { 
         print(1, terminator : " ") 
      } 
      else { 
         print(0, terminator : " ") 
      }
   } 
   print("") 
}

Output

1 0 1 0 1 0 1 0 
1 0 1 0 1 0 1 
1 0 1 0 1 0 
1 0 1 0 1 
1 0 1 0 
1 0 1 
1 0 
1 

Here in the above code, we uses nested for loops along with stride() function. The outermost for loop is used to handle the total number of rows are going to print and each row starts with a new line. The nested for loop is used to print inverted binary pattern using stride() function −

for n in stride(from: num, to: m, by: -1) { 
   if n % 2 == 0 { 
      print(1, terminator : " ") 
   } 
   else { 
      print(0, terminator : " ") 
   } 
}

Here the iteration starts from num to m and each iteration decreased by one and print binary number. If the remainder is equal to 0, then print 1. Otherwise print 0.

Updated on: 30-Nov-2022

141 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements