打印子序列、全排列以及母牛问题

打印所有子序列
子序列:子序列不要求所选的字母连续,只要求是按原有次序组成就行

void printAllSub(string source, int index, string res)
{
	if (source.size() == index)
	{
		cout << res << endl;
		return;
	}
	printAllSub(source, index + 1, res + source[index]);
	printAllSub(source, index + 1, res);
}

打印字符串的全排列

void printAllPermutations(string str, int curIndex)
{
	if (curIndex == str.size())
	{
		cout << str << endl;
	}
	// 将该位置之后的每个元素都与当前位置交换
	for (int j = curIndex; j < str.size(); j++)
	{
		swap(str[curIndex], str[j]);
		printAllPermutations(str, curIndex + 1);
		swap(str[curIndex], str[j]);
	}
}

母牛每年只生一只母牛,新出生的母牛成长三年后也能每年生一只母牛,假设牛不会死,求N年后,母牛的数量。要求时间复杂度O(N)

int cowNumber1(int n) 
{
		if (n < 1) {
			return 0;
		}
		if (n == 1 || n == 2 || n == 3) {
			return n;
		}
		return cowNumber1(n - 1) + cowNumber1(n - 3);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值