寻找一个算法.
现在有一个数组如下:
<code>$a = [1,2,3,4,5,6,7,8,9] </code>
现在要通过上面的数据元素重新生成长度为2,3,4...的新数组,并且统计一共组成了新数组的个数.
比如生成长度为2的数字,并且统计$b个数 例:
<code>$b = [1,2] $b = [1,3] $b = [1,4] $b = [1,5] </code>
现在使用的一个比较笨的方法就是使用循环.长度为2就使用2个循环,3个就用3个循环.这样代码不利于维护.如果有10个,那么要10个循环.
回复内容:
现在有一个数组如下:
<code>$a = [1,2,3,4,5,6,7,8,9] </code>
现在要通过上面的数据元素重新生成长度为2,3,4...的新数组,并且统计一共组成了新数组的个数.
比如生成长度为2的数字,并且统计$b个数 例:
<code>$b = [1,2] $b = [1,3] $b = [1,4] $b = [1,5] </code>
现在使用的一个比较笨的方法就是使用循环.长度为2就使用2个循环,3个就用3个循环.这样代码不利于维护.如果有10个,那么要10个循环.
<code>$a = [1,2,3,4,5,6,7,8,9]; // 需要分片的大小 $perSize = 2; $leader = array_shift($a); $bs = array_chunk($a, $perSize - 1); $bs = array_map(function ($item) use ($leader) { array_unshift($item, $leader); return $item; }, $bs); // 所有的 $b, 和 $b 的个数 var_dump($bs, count($bs)); </code>
http://blog.sina.cn/dpool/blog/s/blog_4dfb08c901011wut.html?vt=4
<code>#include <stdio.h> int array[] = {1, 2, 3, 4, 5, 6, 7, 8, 9}; int array2[9]; int array2len = 0; void perm(int len, int index) { int i, j; if (array2len </stdio.h></code>
我的思路是用递归,代码如上,C语言的。
对了,要统计的话,有两个思路:一个是在上面的代码中加一些逻辑,在每次需要输出array2的时候统计;另一个是用组合数的计算公式直接计算,比如题中9个数字生成的所有组合共有502个,高中数学讲过。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
