microsoft-visualbasic-runtime/ComponentModel/Algorithm/base/Combination/Combination.vb

119 lines
4.0 KiB
VB.net
Raw Normal View History

2019-03-10 18:10:46 +08:00
#Region "Microsoft.VisualBasic::88baa87e91e228c9b98e43983735a392, Microsoft.VisualBasic.Core\ComponentModel\Algorithm\base\Combination\Combination.vb"
2018-08-02 20:14:48 +08:00
' Author:
'
' asuka (amethyst.asuka@gcmodeller.org)
' xie (genetics@smrucc.org)
' xieguigang (xie.guigang@live.com)
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.
' /********************************************************************************/
' Summaries:
' Module Combination
'
' Function: CreateCombos, FullCombination, Generate, (+2 Overloads) Iterates, Iteration
'
'
' /********************************************************************************/
#End Region
Imports System.Runtime.CompilerServices
Imports Microsoft.VisualBasic.Language
Imports Microsoft.VisualBasic.Linq
Namespace ComponentModel.Algorithm.base
''' <summary>
''' 任意多个集合之间的对象之间相互组成组合输出
''' </summary>
''' <remarks></remarks>
Public Module Combination
''' <summary>
''' 生成两个序列的两两组合 ``{<paramref name="seq_1"/> -> <paramref name="seq_2"/>}()``
''' </summary>
''' <typeparam name="TA"></typeparam>
''' <typeparam name="TB"></typeparam>
''' <param name="seq_1"></param>
''' <param name="seq_2"></param>
''' <returns></returns>
<Extension>
Public Iterator Function CreateCombos(Of TA, TB)(seq_1 As IEnumerable(Of TA), seq_2 As IEnumerable(Of TB)) As IEnumerable(Of (a As TA, b As TB))
Dim b As TB() = seq_2.ToArray
For Each i As TA In seq_1
For Each j As TB In b
Yield (i, j)
Next
Next
End Function
<MethodImpl(MethodImplOptions.AggressiveInlining)>
<Extension>
Public Function FullCombination(Of T)(seq As IEnumerable(Of T)) As IEnumerable(Of (a As T, b As T))
With seq.ToArray
Return .CreateCombos(.ByRef)
End With
End Function
<Extension> Public Iterator Function Iteration(Of T)(source As T()()) As IEnumerable(Of T())
Dim first As T() = source.First
If source.Length = 2 Then ' 只剩下两个的时候,会退出递归操作
Dim last As T() = source.Last
For Each x As T In first
For Each _item As T In last
Yield {x, _item}
Next
Next
Else
For Each x As T In first
For Each subArray As T() In source.Skip(1).ToArray.Iteration ' 递归组合迭代
Yield New List(Of T)(x) + subArray
Next
Next
End If
End Function
Public Function Generate(Of T)(source As T()()) As T()()
Return source.Iteration.ToArray
End Function
<Extension>
Public Iterator Function Iterates(Of T)(comb As (T, T)) As IEnumerable(Of T)
Yield comb.Item1
Yield comb.Item2
End Function
<Extension>
Public Iterator Function Iterates(Of T)(comb As Tuple(Of T, T)) As IEnumerable(Of T)
Yield comb.Item1
Yield comb.Item2
End Function
End Module
End Namespace