我必须实现一个执行两个矩阵相乘的 C 程序(是的,家庭作业 :),并且我正在尝试设计一个函数来接收来自用户的输入并对其进行验证。
我最初的想法是:让我们只要求用户输入矩阵(用空格分隔的数字,用换行符分隔的行,并且可能在换行符之后单独使用“e”来表示矩阵的结束),这样程序就会自动计算列和行的数量并将它们存储在二维数组中。但是,如果我事先不知道它们的大小,如何为它们动态分配足够的内存?如果可能,我会避免要求用户手动输入每个矩阵的行数和列数。
此外,针对错误和/或缺失数据(例如字母、垃圾、数字少于其他行等)验证输入的最佳方法是什么?我正在考虑对每一行进行strtok,使用空格作为分隔符将它们拆分,并检查每个标记是否是严格的数字。这是确定每行是否仅包含有效数值的最佳方法吗?有没有更干净和理智的方法?
这是我的伪代码:
function getMatrix () {
while(true) {
Receive a matrix as input, until the user enters 'e' in a new line by itself;
Split the matrix in rows delimited by newlines;
Split the rows in strings delimited by whitespaces;
For each string {
If the string is numeric, save it as matrix[rowNumber][colNumber];
Else print a warning and discard the entire input;
}
If each row of the matrix has an equal number of elements {
return the matrix as an array of integers;
} else {
print a warning and let the user re-enter the data.
}
}
}
main () {
matrix1 = getMatrix;
matrix2 = getMatrix;
matrix1x2 = multiply the two matrices (this is the easy part :)
print matrix1x2.
}