- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 C 中链表的概念还很陌生。我花了很多时间想出一个逻辑来执行以下操作,但一切都是徒劳的。我正在尝试遍历链接列表。假设每个节点代表一个人,每个人(节点)有两个特征。例如:
struct person {
struct person *next;
char name[NAME_LENGTH];
char trait_01[TRAIT_LENGTH];
char trait_02[TRAIT_LENGTH];
}
Node 1: Sarah (trait 1: Soccer Trait 2: Designer)
Node 2: Carl (trait 1: Baseball Trait 2: None)
Node 3: Andrew (trait 1: Soccer Trait 2: Walking)
Node 4: John (trait 1: Cricket Trait 2: Designer)
Node 5: Cara (trait 1: Surfer Trait 2: Walking)
Node 6: Ben (trait 1: Racing Trait 2: Acting)
Node 7: Andy (trait 1: Walking Trait 2: Surfer)
Node 8: Jack (trait 1: Designer trait 2: Soccer )
**Output:**
Soccer
Designer
Baseball
Walking
Cricket
Surfer
Racing
Acting
输出没有重复任何特征,并且不包含“None”一词,并且应该按顺序排列,即先打印特征 1,然后打印特征 2。
有谁可以帮忙吗?
最佳答案
正如您在评论中提到的,逻辑不清楚,因为您的输出
中没有任何证据表明trait1
可以与trait2进行比较
为了识别重复的特征,承保代码只是从 trait1
中已出现的值中删除(而不是打印)重复的 trait1
值,并且与 相同特征2:
//AFTER CREATING THE LINKED-LIST
temp=head; //temp is a temporary node for traversal
int indicator1=0;
int indicator2=0;
while(temp)
{
temp1=head; //temp1 is a temporary node
if(temp==head) //all of the traits of head node is to printed with the "None" logic requirement of course
{
if(strcmp(temp->trait_01,"None")!=0)
printf("%s\n",temp->trait_01);
if(strcmp(temp->trait_02,"None")!=0)
printf("%s\n",temp->trait_02);
}
else //if trait is already present in earlier nodes then it is not printed and of course "None" logic is followed
{
while(temp1!=temp)
{
if((!strcmp(temp->trait_01,temp1->trait_01))&&(indicator1==0)&&(!strcmp(temp->trait_01,temp1->trait_02)))
{
indicator1=1;
}
if((!strcmp(temp->trait_02,temp1->trait_02))&&(inicator2==0)&&(!strcmp(temp->trait_02,temp1->trait_01)))
{
indicator2=1;
}
}
if((indicator1==0)&&(strcmp(temp->trait_01,"None")))
printf("%s\n",temp->trait_01);
if((indicator2==0)&&(strcmp(temp->trait_02,"None")))
printf("%s\n",temp->trait_01);
}
temp=temp->next;
indicator1=0;
indicator2=0;
}
解释:第一个 while 循环 while(temp)
遍历链表的每个节点(当 temp
时,违反了 while
条件是 NULL
即链表的末尾)。
第二个 while 循环
节点和 while(temp1!=temp)
-> 代码尝试将 temp
节点的特征值与位于的节点的特征值进行匹配temp
之前的链表(head
节点和 temp
之间),temp1
表示位于 temp
之上/之后的节点code>headtemp
节点之前。
条件 !strcmp(str1, str2)
v(当字符串相同时,strcmp
返回 0
) 表示两个字符串是同样,if
条件将得到满足,并且 indicator
将设置为 1,表示特征值 temp
节点(trait_01
或 trait_02
)相同作为某个先前节点 temp1
的特征值。当此指示器设置为 1
时,我们不会打印特征值。
希望这有帮助!
关于c - 如何迭代节点列表并比较字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58900881/
如何使用 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(..)
我是一名优秀的程序员,十分优秀!