3

如何将 char 向量传递给 char*?我知道这个问题可以很容易地用一个带有 SIZE const 的预定义 char[] 数组来解决,但我想要一个向量的灵活性,因为不会有预定义的大小。

using namespace std;

//prototype 
void getnumberofwords(char*);

int main() {
    //declare the input vector
    vector<char> input;

    /*here I collect the input from user into the vector, but I am omitting the code here for sake of brevity...*/

    getnumberofwords(input); 
    //here is where an ERROR shows up: there is no suitable conversion from std::vector to char*                     
    return 0;
}

void getnumberofwords(char *str){
    int numwords=0;
    int lengthofstring = (int)str.size();  
    //this ERROR says the expression must have a case

    //step through characters until null
    for (int index=0; index < lengthofstring; index++){
        if ( *(str+index) == '\0') {
            numwords++;
        }
    }
}
4

4 回答 4

7

您可以使用data()member 来获取指向底层数组的指针:

getnumberofwords(input.data());
于 2012-04-19T05:33:02.000 回答
3

最明显的就是通过&your_vector[0]。不过,请务必先将 NUL 添加到向量的末尾。

或者,使用std::string代替,在这种情况下,您可以使用成员函数std::vector<char>获得以 NUL 结尾的字符串。c_str

编辑:但是,我不得不想知道,为什么getnmberofwords要写成接受 a char *,除非它是一些您无法摆脱使用的旧 C 代码。

给定一个典型的“单词”定义,计算以字符串开头的一些单词,可以这样做:

std::istringstream buffer(your_string);

size_t num_words = std::distance(std::istream_iterator<std::string>(buffer),
                                 std::istream_iterator<std::string>());
于 2012-04-19T04:54:50.943 回答
0

您应该将向量的引用传递给函数 getnumberofwords。

void getnumberofwords(vector<char>& str){
int numwords=0;
int lengthofstring = str.size(); 
   for (int index=0; index < lengthofstring; index++){
        if ( str[index] == '\0') {
           numwords++;
         }
   }
}

没有将类型从向量转换为指针的方法。

于 2012-04-19T05:02:54.513 回答
-1

这就是我最终所做的工作:

#include <iostream>
#include <cstring>
#include <string>
#include <iomanip>



using namespace std;

//prototype

void getnumberofwords(char*);
void getavgnumofletters(char*, int);



int main() {

    const int SIZE=50;
    char str[SIZE];

    cout<<"Enter a string:";
    cin.getline(str, SIZE);




    getnumberofwords(str);


    return 0;

 }


void getnumberofwords(char *str){
    int numwords=0;

    int lengthstring=strlen(str);  







    //step through characters until null
  for (int index=0; index < lengthstring; index++){
        if (str[index] ==' ') {
               numwords++;
         }else{

          continue;
        }


   }
     numwords+=1;
    cout<<"There are "<<numwords<<" in that sentence "<<endl;
    getavgnumofletters(str, numwords);



}



void getavgnumofletters(char *str, int numwords) {
    int numofletters=0;

    double avgnumofletters;
    int lengthstring=strlen(str);


    //step through characters until null
  for (int index=0; index < lengthstring; index++){
        if (str[index] != ' ') {
               numofletters++;
         }else{
             continue;
        }


   }

       avgnumofletters = (double)numofletters/numwords;
       cout<<"The average number of letters per word is "<<setprecision(1)<<fixed<<avgnumofletters<<endl;



}



/*
于 2012-06-19T13:47:24.630 回答