本文介绍了如何将特定元素从数组存储到另一个数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

例如,如果我想从[]中搜索整数值= 1并存储在新数组b []中,则数组a []包含整数元素。任何人都可以告诉我怎么做c?

for example an array a[] contain integer element if i want to search for the integer value=1 from a[] and store in new array b[]. Can anyone tell me how to do in c?

推荐答案



for(thresholdcount=0;thresholdcount<sample_length;thresholdcount++)>
{
 if(thxcross_pos[thresholdcount]==1)
	{
	//PZLoctn[thresholdcount]=thxcross_pos[thresholdcount];

	PZLoctn[thresholdcount]=thresholdcount;
	//printf("pzloctn:%f\n",PZLoctn[thresholdcount]);
	PZLoctn_counter=PZLoctn_counter+1;
	}

   else if(thxcross_pos[thresholdcount]==-1)
        {
	//NZLoctn[thresholdcount]=thxcross_pos[thresholdcount];
	NZLoctn[thresholdcount]=thresholdcount;
       // printf("%f\n",NZLoctn[thresholdcount]);
	NZLoctn_counter= NZLoctn_counter+1;
	}
}
printf("PZLoctn_counter:%d\tNZLoctn_counter: %d\n",PZLoctn_counter,NZLoctn_counter);
for(count=0;count<pzloctn_counter;count++)>
{
printf("\nnew array:%f",PZLoctn[count]);
}


这篇关于如何将特定元素从数组存储到另一个数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-23 21:23