- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我刚刚参加了考试,被问到以下问题:
Write the function body of each of the methods GenStrLen, InsertChar and StrReverse for the given code below. You must take into consideration the following;
- How strings are constructed in C++
- The string must not overflow
- Insertion of character increases its length by 1
- An empty string is indicated by StrLen = 0
class Strings {
private:
char str[80];
int StrLen;
public:
// Constructor
Strings() {
StrLen=0;
};
// A function for returning the length of the string 'str'
int GetStrLen(void) {
};
// A function to inser a character 'ch' at the end of the string 'str'
void InsertChar(char ch) {
};
// A function to reverse the content of the string 'str'
void StrReverse(void) {
};
};
我给出的答案是这样的(见下文)。我的一个问题是使用了许多额外的变量,这让我相信我没有以最好的方式做到这一点,另一件事是它不起作用....
class Strings {
private:
char str[80];
int StrLen;
int index; // *** Had to add this ***
public:
Strings(){
StrLen=0;
}
int GetStrLen(void){
for (int i=0 ; str[i]!='\0' ; i++)
index++;
return index; // *** Here am getting a weird value, something like 1829584505306 ***
}
void InsertChar(char ch){
str[index] = ch; // *** Not sure if this is correct cuz I was not given int index ***
}
void StrRevrse(void){
GetStrLen();
char revStr[index+1];
for (int i=0 ; str[i]!='\0' ; i++){
for (int r=index ; r>0 ; r--)
revStr[r] = str[i];
}
}
};
如果有人能大致向我解释什么是回答问题的最佳方式以及原因,我将不胜感激。另外,我的教授怎么会像“};”那样关闭每个类函数,我认为这仅用于结束类和构造函数。
非常感谢您的帮助。
最佳答案
首先,琐碎的};
问题只是风格问题。当我将函数体放在类声明中时,我也会这样做。在这种情况下 ;
只是一个空语句,不会改变程序的含义。它可以放在函数的末尾(但不是类的末尾)。
以下是您所写内容的一些主要问题:
str
的内容.不能保证以 \0
开始字节。index
,你只能在 GetStrLen
内设置它.程序启动时它的值可能为 -19281281。如果有人调用 InsertChar
怎么办?在他们打电话之前 GetStrLen
?index
在 InsertChar
.如果有人调用 InsertChar
怎么办?连续两次?StrReverse
,您创建一个名为 revStr
的反转字符串,但是你永远不会用它做任何事情。 str
中的字符串后记保持不变。令我困惑的是为什么你创建了一个名为 index
的新变量,大概是为了跟踪字符串中最后一个字符的索引,当已经有一个名为 StrLen
的变量时为此,您完全忽略了这一点。最后一个字符的索引 是 字符串的长度,因此您应该只更新字符串的长度,并使用它,例如
int GetStrLen(void){
return StrLen;
}
void InsertChar(char ch){
if (StrLen < 80) {
str[StrLen] = ch;
StrLen = StrLen + 1; // Update the length of the string
} else {
// Do not allow the string to overflow. Normally, you would throw an exception here
// but if you don't know what that is, you instructor was probably just expecting
// you to return without trying to insert the character.
throw std::overflow_error();
}
}
但是,您的字符串反转算法完全错误。仔细考虑该代码说 的内容(假设index
已在别处正确初始化和更新)。它说“对于 str
中的每个字符,用这个字符向后覆盖整个 revStr
”。如果str
开始为 "Hello World"
, revStr
最终会是 "ddddddddddd"
, 自 d
是 str
中的最后一个字符.
你应该做的是这样的:
void StrReverse() {
char revStr[80];
for (int i = 0; i < StrLen; ++i) {
revStr[(StrLen - 1) - i] = str[i];
}
}
注意它是如何工作的。说StrLen = 10
.然后我们复制 str
的位置 0|进入 revStr
的位置 9 , 然后是 str
的位置 1到位9
的 revStr
等等,直到我们复制位置 StrLen - 1
的 str
到 revStr
的位置 0 .
但是你在 revStr
中得到了一个反转的字符串而且您仍然缺少将其放回 str
的部分, 所以完整的方法看起来像
void StrReverse() {
char revStr[80];
for (int i = 0; i < StrLen; ++i) {
revStr[(StrLen - 1) - i] = str[i];
}
for (int i = 0; i < StrLen; ++i) {
str[i] = revStr[i];
}
}
还有更聪明的方法可以做到这一点,您不必使用临时字符串 revStr
,但上面的功能是完美的,将是问题的正确答案。
顺便说一句,你真的不需要担心这段代码中的 NULL 字节( \0
s)。您正在(或者至少您应该)使用 StrLen
跟踪字符串的长度这一事实自从使用 StrLen
以来,变量使得结束哨兵变得不必要你已经知道 str
的内容超出了那个点应该被忽略。
关于关于字符串类实现的 C++ 考试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2791852/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!