7、一个链表中的元素由另一个链表实现

/*7.给定一个链表L和另一个链表P,他们包含以升序排列的整数。
操作printLots(L,P)将打印出L中那些由P所指出的位置上的元素。
例如:如果P=1,3,4,6,那么L中的第1,3,4和6个元素被打印出来。
写出过程printLots(L,P)。该过程的运行时间是多少?
*/
#include<iostream>
#include<list>

using namespace std;

void printLots(const list<int> & P,const list<int> & L){
	if(P.empty() || L.empty() || P.back() > L.size())	//P and L should not be empty,
		return;											//the max number in P must be bigger than L.size();
	
	list<int>::const_iterator con_iterP = P.begin();
	list<int>::const_iterator con_iterL = L.begin();
	int i = 0;

	for(;con_iterP != P.end();con_iterP++){		//cout the element be defined in P
		while(i != *con_iterP){
			i++;
			con_iterL++;
		}

		cout << *con_iterL << endl;
	}

}

int main(){
	
	list<int> L;
	list<int> P;

	L.push_back(1);
	L.push_back(3);
	L.push_back(4);
	L.push_back(6);

	P.push_back(1);
	P.push_back(2);
	P.push_back(3);
	P.push_back(4);
	P.push_back(5);
	P.push_back(6);
	P.push_back(7);

	printLots(L,P);
	
	return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值