ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
楼主: hubulwm

[求助] 如何将一个整数有序拆分成指定数量个整数的和(拆分的数可以包含0)

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-6-29 11:40 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
hubulwm 发表于 2024-6-29 10:09
你好,感谢关注,我相信那是一种非常高效的语句,但如何用VBA来调用呢?还有那个数量都是之前任意指定的 ...

数字个数 和 结果 可以 任意指定,用到了With 通用表达式,没有数据库 无法使用,有就很简单,能轻易调用。
不定个数.png

TA的精华主题

TA的得分主题

发表于 2024-6-29 15:47 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Sub main()
  2.     GeneratePartitions 2, 4
  3. End Sub
  4. Private Function GeneratePartitions(total As Integer, numParts As Integer)
  5.     Dim result() As Integer
  6.     ReDim result(1 To numParts) ' 数组用来存储每种拆分的结果
  7.    
  8.     ' 调用递归函数生成拆分
  9.     GeneratePartitionsRecursive total, numParts, 1, result
  10. End Function
  11. Private Function GeneratePartitionsRecursive(total As Integer, numParts As Integer, currentPart As Integer, result() As Integer)
  12.     Dim i As Integer, j As Integer
  13.    
  14.     ' 如果当前部分等于总的部分数,则输出结果
  15.     If currentPart = numParts Then
  16.         result(currentPart) = total
  17.         For j = 1 To numParts: Debug.Print result(j);: Next
  18.         Debug.Print
  19.     Else
  20.         ' 生成当前部分的可能性
  21.         For i = 0 To total
  22.             result(currentPart) = i
  23.             ' 递归生成下一个部分
  24.             GeneratePartitionsRecursive total - i, numParts, currentPart + 1, result
  25.         Next i
  26.     End If
  27. End Function
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-29 17:54 | 显示全部楼层

大佬厉害了,请问如何将结果存放到数组里面然后输出出来?

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-29 18:03 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
ynzsvt 发表于 2024-6-29 11:06
这里要除以2,交换后是相同的。

大佬请问,这一句在规模大时候求解提示错误,设置的过大提示内存溢出,有没有自适应的设置这个数的方法呢?
ReDim Brr(1 To 9999, 1 To n)

TA的精华主题

TA的得分主题

发表于 2024-6-29 18:30 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Private results() As Variant, resultsindex As Long
  2. Sub main()
  3.     GeneratePartitions 2, 4
  4.     Dim i As Long, j As Long, arr()
  5.     ReDim arr(1 To UBound(results), 1 To UBound(results(1)))
  6.     For i = 1 To UBound(arr)
  7.         For j = 1 To UBound(arr, 2)
  8.             arr(i, j) = results(i)(j)
  9.         Next
  10.     Next
  11.     Cells(1, 1).Resize(UBound(arr), UBound(arr, 2)).Value = arr
  12. End Sub
  13. Private Function GeneratePartitions(total As Integer, numParts As Integer)
  14.     Dim result() As Integer
  15.     ReDim result(1 To numParts) ' 数组用来存储每种拆分的结果
  16.     resultsindex = 0
  17.     ReDim results(1 To 1)
  18.     ' 调用递归函数生成拆分
  19.     GeneratePartitionsRecursive total, numParts, 1, result
  20. End Function
  21. Private Function GeneratePartitionsRecursive(total As Integer, numParts As Integer, currentPart As Integer, result() As Integer)
  22.     Dim i As Integer, j As Integer
  23.    
  24.     ' 如果当前部分等于总的部分数,则输出结果
  25.     If currentPart = numParts Then
  26.         result(currentPart) = total
  27.         resultsindex = resultsindex + 1
  28.         ReDim Preserve results(1 To resultsindex)
  29.         results(resultsindex) = result
  30.     Else
  31.         ' 生成当前部分的可能性
  32.         For i = 0 To total
  33.             result(currentPart) = i
  34.             ' 递归生成下一个部分
  35.             GeneratePartitionsRecursive total - i, numParts, currentPart + 1, result
  36.         Next i
  37.     End If
  38. End Function
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-29 18:36 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

厉害了,可有实现的代码?
头像被屏蔽

TA的精华主题

TA的得分主题

发表于 2024-6-29 19:11 来自手机 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-29 20:40 | 显示全部楼层
时间的音符 发表于 2024-6-29 19:11
你的数据范围是多少?
最大分的份数是多少?

不限制,希望能把数组输出出来。
头像被屏蔽

TA的精华主题

TA的得分主题

发表于 2024-6-29 20:42 来自手机 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-29 21:00 | 显示全部楼层
时间的音符 发表于 2024-6-29 20:42
你知道我第三张图片下面那一串数字是什么意思嘛?

大佬现在输出的是结果数,需要的是具体的拆分数组
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-17 21:54 , Processed in 0.048700 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表