"how to search integer in c++" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "how to search integer in c++" answered properly. Developers are finding an appropriate answer about how to search integer in c++ related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like how to search integer in c++. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on how to search integer in c++. 

how to search integer in c++

By Agreeable AntAgreeable Ant on Apr 26, 2021
//********************************************************
// search algorithm for arrays
//********************************************************

#include <iostream>

using namespace std;

void initializeArray(int list[], int listSize);				
int seqSearch(int list[], int listLength, int searchItem);		
void printArray(int list[], int listSize);								
	
int main()
{
	int maximum = 10;
	int array[maximum];
	int result;
	int input;
	
	cout << "Enter number to search in array!" << endl;
	cin >> input;
	
	// set all array elements to 1;
	initializeArray(array, maximum);
	cout << "before change" << endl;
	printArray(array, maximum);
	
	// change array element No. 7 to 0
	array[7] = 1;
	cout << "after change" << endl;
	printArray(array, maximum);
	
	// search user input in array
	result = seqSearch(array, maximum, input);
	
	if (result = -1)
		cout << "Item not found!" << endl;
	else
		cout << "Item found at position: " << result << "!" << endl;
	
	return 0;
}

int seqSearch(int list[], int listLength, int searchItem)
{
	int loc;
	bool found = false;
	
	loc = 0;
	
	while (loc < listLength && !found)
		if (list[loc] == searchItem)
			found = true;
		else
			loc++;
	
	if (found)
		return loc;
	else
		return -1;
}

void initializeArray(int list[], int listSize)
{
	int index;
	for (index = 0; index < listSize; index++)
		list[index] = 0;
}

void printArray(int list[], int listSize)
{
	int index;
	for (index = 0; index < listSize; index++)
		cout << list[index] << endl;
}



Source: www.cplusplus.com

Add Comment

0

All those coders who are working on the C++ based application and are stuck on how to search integer in c++ can get a collection of related answers to their query. Programmers need to enter their query on how to search integer in c++ related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about how to search integer in c++ for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of how to search integer in c++ while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "how to search integer in c++". Visit this developer's friendly online web community, CodeProZone, and get your queries like how to search integer in c++ resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "how to search integer in c++"

View All C++ queries

C++ queries related to "how to search integer in c++"

how to set an integer equal to the largest integer possible in c++ how to search integer in c++ how to create an integer in c++ change integer to string c++ take integer input in c++ Count set bits in an integer c++ cpp get float from integer division convert integer to string c++ integer type validation c++ integer to string c++ how to print integer in c++ how to string to integer in c++ 64 bit unsigned integer c++ integer min value c++ Write a program to find the sum of all sub-arrays of a given integer array. what is meaning of 64 bit integer in c++ nearest integer rounding in c++ integer to char c++ c++ forbids comparison between pointer and integer converting char to integer c++ how to convert integer to string in cpp c++ string to integer without stoi how to check sqrt of number is integer c++ c++98 check if character is integer rounding off to nearest integer in c++ taking integer input from file in c++ C++ convert integer to digits, as vector C++ convert vector of digits into integer how to find a integer is how many times repeated in C++ without for loop c++ integer division c++ hsl to rgb integer 2 Byte Integer R/W to Arduino’s EEPROM Read in three numbers, and calculate the sum. Output the sum as an integer. in c visual studio c++ print the amount of odd integer between n and m error: ISO C++ forbids comparison between pointer and integer [-fpermissive] if(s[i] != "b"){ how to print all numbers in an integer in c++ search in vector of pairs c++ how to do binary search in c++ using STL binary search tree in cpp using class binary search program c++ binary search stl binary search function in c++ binary search in c++ binary tree search array search c++ deletion in a binary search tree c++ binary search ternary search c++ binary search algorithm delete and search edge in adjacency matrix of a graph binary search tree sorted order c++ binary search lower bound c++ vector quick search dichotomic search c++ linear search in c C Binary Search binary search in java Binary Search implementation bst search binary search in c linear search binary search in stl

Browse Other Code Languages

CodeProZone