search
HomeBackend DevelopmentPHP TutorialPHP Program to Count Number of Binary Strings without Consecutive 1's

PHP Program to Count Number of Binary Strings without Consecutive 1’s

What is Count Number of Binary Strings without Consecutive 1’s?

Let's consider an example to explain the concept of counting binary strings without consecutive 1's.

Example

Suppose we want to count the number of binary strings of length 3 that do not contain consecutive 1's. A binary string is a string consisting of only 0's and 1's.

The possible binary strings of length 3 are: 000, 001, 010, 011, 100, 101, 110, and 111.

However, we need to count only those binary strings that do not have consecutive 1's. So, we need to exclude the strings 011, 101, and 111 from the count.

Let's analyse the remaining binary strings:

  • 000: This is a valid string because it doesn't have consecutive 1's.

  • 001: This is a valid string because it doesn't have consecutive 1's.

  • 010: This is a valid string because it doesn't have consecutive 1's.

  • 100: This is a valid string because it doesn't have consecutive 1's.

  • 110: This is an invalid string because it has consecutive 1's.

From the above analysis, we can see that there are 4 valid binary strings of length 3 without consecutive 1's.

PHP Program to Count Number of Binary Strings without Consecutive 1's

Method 1- Using Dynamic Programming

Example

<?php function countBinaryStrings($n) {
   $dp = array();
   $dp[0] = 1;
   $dp[1] = 2;

   for ($i = 2; $i <= $n; $i++) {
      $dp[$i] = $dp[$i - 1] + $dp[$i - 2];
   }

   return $dp[$n];
}

$n = 5; // Number of digits in the binary string
$count = countBinaryStrings($n);
echo "Number of binary strings without consecutive 1's: " . $count;

?>

Output

Number of binary strings without consecutive 1's: 13

Explanation of code

This PHP code defines a function called countBinaryStrings that calculates the number of binary strings of length $n without consecutive 1's using dynamic programming. It initializes an array $dp with the base cases $dp[0] = 1 and $dp[1] = 2, representing the counts for strings of length 0 and 1, respectively. It then uses a loop to fill in the remaining counts for lengths 2 to $n, by summing the counts for lengths $i - 1 and $i - 2. Finally, it returns the count for length $n and prints it. In this specific example, the code calculates the number of binary strings without consecutive 1's for a length of 5 and displays the result.

Method 2

<?php // PHP program to count all distinct
// binary stringswithout two
// consecutive 1's

function countStrings($n)
{
	$a[$n] = 0;
	$b[$n] = 0;
	$a[0] = $b[0] = 1;
	for ($i = 1; $i < $n; $i++)
	{
		$a[$i] = $a[$i - 1] +
				$b[$i - 1];
		$b[$i] = $a[$i - 1];
	}
	return $a[$n - 1] +
		$b[$n - 1];
}

	// Driver Code
	echo "Number of binary strings without consecutive 1's: " . countStrings(5) ;

?>

Output

Number of binary strings without consecutive 1's: 13

Explanation of code

This PHP code calculates the number of distinct binary strings of length $n without two consecutive 1's. It defines two arrays, $a and $b, to store the counts. The base cases are set as $a[0] = $b[0] = 1. Then, a loop is used to calculate the counts for lengths 1 to $n-1. The count for length $i is obtained by summing the count for length $i-1 from array $a and the count for length $i-1 from array $b. Additionally, the count for length $i in array $b is obtained from the count for length $i-1 in array $a. Finally, the code returns the sum of the count for length $n-1 from array $a and the count for length $n-1 from array $b, representing the total count of binary strings without consecutive 1's. In this particular example, the code calculates the count for a length of 5 and displays the result.

Conclusion

In conclusion, the first method utilizes dynamic programming, initializing an array with base cases and iteratively calculating the counts for larger lengths. It efficiently computes the result by summing the counts for the previous two lengths. The second method employs a simpler approach, using two arrays to store counts and iteratively updating them based on the counts from the previous length. It directly calculates the total count without the need for summing the two arrays separately. Both methods provide accurate counts for binary strings without consecutive 1's, and the choice between them may depend on specific requirements and performance considerations.

The above is the detailed content of PHP Program to Count Number of Binary Strings without Consecutive 1's. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

PHP Email Security: Best Practices for Sending EmailsPHP Email Security: Best Practices for Sending EmailsMay 08, 2025 am 12:16 AM

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools