c_cpp 查找int值的数组大小和大小。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 查找int值的数组大小和大小。相关的知识,希望对你有一定的参考价值。

//find array size

#include <iostream>
#include <cstdlib>
#include <math.h>
using namespace std;


//processoing...
void search() {

	//list of data
	int dataList[] = {
		911,
		212,
		92,
		1221,
		1231,
		3,
		242,
		19
	};

	int counter = 0;

	int dataSize = sizeof(dataList) / sizeof(dataList[0]);
	int find = 912;
	int length = (int)(log10(find) + 1);

	cout << "\nArray Size: " << dataSize << endl;
	cout << "finiding elm length: " << length << endl;

	for (int i = 0; i < dataSize; i++) {
		
	}

	cout << counter << endl;
}


int main() {
	search();

	return 0;
}

以上是关于c_cpp 查找int值的数组大小和大小。的主要内容,如果未能解决你的问题,请参考以下文章

问题查找包含零的动态 int 数组的大小

查找指针指向的数组的大小[重复]

c_cpp 给出一个窗口大小K和一个大小为N的数组,找到每个窗口滑过数组时的最小值

c_cpp 可调整大小的数组实现

数组可以容纳的最大大小是多少?

c_cpp GFG以给定大小的组反转数组