1. 程式人生 > >基礎:cin與char*的相關問題

基礎:cin與char*的相關問題

問題:想利用cin進行char*的輸入

錯誤程式碼:

char* key = nullptr;
cin >> key;

要搞清楚cin>>key這句話的含義:向指標s所指向的地址輸入字串; 所以要給變數key分配一個有效空間吧!即給key賦初值:char *key = new char[100];

如果想用鍵盤輸:string  數字

可以直接cin >> key >> tableSize:

例子:字串散列表的建立

#include<iostream>
using namespace std;

typedef unsigned int Index;
//利用字串ASCII碼對應的數字和 mod TableSize 來實現散列表的對映
Index Hash(const char* key, int TableSize)
{
	unsigned int nSum = 0;
	while (*key != '\0')
	{
		cout << key <<" " << *key << endl;//key和*key的區別
		nSum += *(key++);
	}
	return nSum % TableSize;
}

int main()
{
	int tableSize = 0;
	char* key = new char[100];

	cin >> key >> tableSize;//利用cin以及char輸入字串和數字

	int index = 0;
	index = Hash(key, tableSize);
	cout << index;
	system("pause");
	return 0;
}