- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我自定义的头文件如下。
#ifndef DLinkedList_h
#define DLinkedList_h
#include <stdio.h>
#include <stdlib.h>
typedef int ElementType;
typedef struct tagNode{
ElementType data, key;
struct tagNode* prevNode;
struct tagNode* nextNode;
char myName [30];
char telNum [30];
} Node;
Node* CreateNode(ElementType newData);
void DestroyNode(Node* node);
void AppendNode(Node** head, Node* newData);
void InsertAfter(Node* current, Node* newNode);
void InsertNewHead(Node** head, Node* newHead);
void RemoveNode(Node** head, Node* remove);
Node* GetNodeAt(Node* head, int location);
int GetNodeCount(Node* head);
#endif
至此,DLinkedList.h文件结束
#include "DLinkedList.h"
#include <time.h>
#include "Chaining.h"
int numbersInCache [] = {23, 22, 33, 44, 55, 77, 99, 20, 24, 67, 89, 90, 24, 43, 98, 63, 43, 96, 45, 43};
Node* CreateNode(ElementType newData){
Node* newNode = (Node*)malloc(sizeof(Node));
newNode->data = newData;
newNode->prevNode = NULL;
newNode->nextNode = NULL;
return newNode;
}
//Node destroyed
void DestroyNode(Node* node){
free(node);
}
//To add a node
void AppendNode(Node** head, Node* newNode){
if(*head == NULL)
*head = newNode;
else {
Node* tail = *head;
while(tail->nextNode != NULL)
tail = tail->nextNode;
tail->nextNode = newNode;
//The current tail node is pointed by the preNode of the new node.
newNode->prevNode = tail;
}
}
void insertIntheFront(Node* newNode, Node** head){
if(*head == NULL)
*head = newNode;
else{
Node* tail = *head;
while(tail->nextNode != NULL)
tail = tail->nextNode;
tail->prevNode = newNode;
newNode->nextNode = tail;
}
}
//Insert a new node
void InsertAfter(Node* current, Node* newNode){
newNode->prevNode = current;
newNode->nextNode = current->nextNode;
if(current->nextNode != NULL){
current->nextNode->prevNode= newNode;
}
current->nextNode = newNode;
}
//Removal of a node
void RemoveNode(Node** head, Node* remove){
//if the head is identical to the one to remove
if(*head == remove){
//head points to the address of the next node
*head = remove->nextNode;
//if the head still exists,
if(*head != NULL)//Null is assigned because the previous node does not exist.
(*head)->prevNode = NULL;
remove->prevNode = NULL;
remove->nextNode = NULL;
} else {
Node* temp = remove;
//If the node to remove still has the previous node address
if(remove->prevNode != NULL)//The previous node is connected with the next node
remove->prevNode->nextNode = temp->nextNode;
//if the node to remove still has the next node address
if(remove->nextNode != NULL)//the next node address and the previous node address are connected together.
remove->nextNode->prevNode = remove->prevNode;
remove->prevNode = NULL;
remove->nextNode = NULL;
}
}
//Node searching
Node* GetNodeAt(Node* head, int location){
Node* current = head;
while(current != NULL && (--location) >= 0){
current = current->nextNode;
}
return current;
}
//Count nodes
int GetNodeCount(Node* head){
int count = 0;
Node* current = head;
while(current != NULL){
current = current->nextNode;
count++;
}
return count;
}
int lookUpFunction(Node* head, int numInput){
int foundOrNot = 0;
int indexNum = -1;
for(int i=0; i<GetNodeCount(head); i++){
int numData = GetNodeAt(head, i)->data;
if(numInput == numData){
indexNum = i;
foundOrNot = 1;
}
}
return indexNum;
}
void inputToCacheOperation(Node* list){
int numToSubmit = rand()%50;
printf("a generated number moving into the cache is %d\n ", numToSubmit);
Node * newNode = NULL;
int cacheElementCount = sizeof(numbersInCache)/sizeof(int);
int indexNumForOperation = lookUpFunction(list, numToSubmit);//returns an index number, -1 is returned when it cannot find any.
if(indexNumForOperation == -1 ){
AppendNode(&list, CreateNode(numToSubmit));
下面这部分是个大麻烦。
if(cacheElementCount>19){
Node* firstNode = GetNodeAt(list, 0);
RemoveNode(&list, firstNode);
DestroyNode(firstNode);
//When the number of nodes exceeds the cache size, it deletes the very first node to maintain its maximum capacity.
我很生气....
} else {
RemoveNode(&list, GetNodeAt(list, indexNumForOperation));
newNode = CreateNode(numToSubmit);
AppendNode(&list, newNode);
}
}
}
int main(int argc, const char * argv[]) {
int i = 0;
int count = 0;
Node* list = NULL;
Node* newNode = NULL;
Node* current = NULL;
Node* tempNodeStorage = NULL;
Node* firstNode = NULL;
srand(time(NULL));
int numInput;
numInput=0;
//Created 20 nodes
for(int i=0; i< sizeof(numbersInCache)/sizeof(int); i++){
//scanf("%d", &numInput);
printf("%d\n", numbersInCache[i]);
newNode=CreateNode(numbersInCache[i]);
AppendNode(&list, newNode);
}
//Printing out the list.
count = GetNodeCount(list);
for(i = 0; i < count; i++){
current = GetNodeAt(list, i);
printf("List[%d] : %d\n", i, current->data);
}
for(int i= 0; i< 10; i++){ //Cache operation to perform
inputToCacheOperation(list);
}
//Printing the list
count = GetNodeCount(list);
for(i = 0; i<count; i++){
current = GetNodeAt(list,i);
printf("List[%d] ; %d\n", i, current->data);
}
// All nodes are removed in the memory
printf("\nDestroying List....\n");
for(i=0; i<count; i++){
current = GetNodeAt(list, 0);
if(current != NULL){
RemoveNode(&list, current);
DestroyNode(current);
}
}
}
我正在编写一个模拟磁盘操作的简单双向链表示例。当我修改“Node* firstNode = GetNodeAt(list, 0);”时到“Node* firstNode = GetNodeAt(list, 1);”它工作正常。但是,当我将参数值设置为“0”时,它会因内存错误而崩溃。你能给我任何改进吗?我使用 Xcode 构建和运行代码。
最佳答案
在函数 RemoveNode()
中,您在访问它之前没有检查参数 Node* remove
是否为 NULL
。所以当你的 indexNumForOperation
更多当前列表计数。
关于c - 双向链表示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27308421/
我有 2 个类:User 和 UserPicture,它们具有 1:1 关系。 public class User { @Id @GeneratedValue(strategy=G
使用ssh转发时,我无法针对远程服务器使用cvs和ftp进行提交。是否可以让服务器对我的机器发起请求-我希望服务器上的Web应用程序调用我的机器上的REST方法。 谢谢。 尼古拉·G。 最佳答案 是的
我正在 Python 2.7.12 中实现双向 A* 算法,并在 Russell 和 Norvig 第 3 章的罗马尼亚 map 上进行测试。边具有权重,目的是找到两个节点之间的最短路径。 这是测试图
您能否建议一种映射或类似的数据结构,让我们可以轻松地相互获取值和键。也就是说,每个都可以用来寻找另一个。 最佳答案 Java 在其标准库中没有双向映射。 例如使用 BiMap 来自Google Gua
我想同步两个数据库运行时 服务器 A:安装了公共(public) IP 和 mysql 的 Amazon ec2。服务器B:这是局域网中带有mysql的私有(private)机器。 (IP是私有(pr
保存双向@OneToOne 映射时,hibernate 是否应该在两个表上都记录? 我有一个包含 applicant_id 列的表 interview,它引用了包含字段 interview_id 的
我喜欢新的 SwipeRefreshLayout!它看起来很棒,而且非常容易使用。但我想在两个方向上使用它。我有一个消息屏幕,我想通过从上到下滑动来加载旧消息,我想通过从下到上滑动来加载新消息。 这个
使用 ICS 4.0.1(愿意升级到 4.0.3)(不会 root 和重写 android 操作系统) 在接收到 android beam 后,是否可以将 NDEF 消息发送回 android 手机
我想知道处理这种 git 场景的最佳方法: Git 仓库:CoreProduct Git repo b: SpecificCustomerProduct 是从 a fork 出来的 到目前为止,我们一
这个问题在这里已经有了答案: How to implement an efficient bidirectional hash table? (8 个回答) 关闭2年前。 我在 python 中做这个
您能否推荐一种 map 或类似的数据结构,我们可以在其中轻松地从彼此获取值和键。也就是说,每个都可以用来寻找另一个。 最佳答案 Java 在其标准库中没有双向映射。 例如使用 BiMap 来自 Goo
Java中是否有类似双面列表的东西?也许第三方实现? 这里有一个小例子来证明我的想法。 原始状态: 答:0-1-2-3 | | | | 乙:0-1-2-3 删除 B 中的元素 1 后: 空值 | 答:
我有两个实体通过这样的双向 OneToOne 关联连接: @Entity class Parent { @NotNull String businessKey; @OneToO
我已将 Vagrant 配置为使用 Rsync 共享文件夹而不是(非常慢)vboxsf VirtualBox 默认提供的文件系统: Vagrant.configure("2") do |config|
@keyframes mgm { from { max-height: 250px; } to { max-height: 0px; } } .mgm {
我想了解有关使用双向 LSTM 进行序列分类时合并模式的更多详细信息,尤其是对于我还不清楚的“Concat”合并模式。 根据我对这个方案的理解: 在将前向和后向层的合并结果传递到 sigmoid 函数
我有兴趣将本地 git 存储库设置为远程存储库的镜像。我已经阅读了一些可能相关的帖子,但主要区别在于我需要对两个存储库进行读写访问。 大多数时候,用户会针对 Repo A 工作,但是有时他们会针对 R
我已经仔细阅读了文档 https://firebase.google.com/docs/database/web/read-and-write以及网上很多例子。但这里有一个脱节:在将对象添加到数据库时
这个问题已经有答案了: Hibernate bidirectional @ManyToOne, updating the not owning side not working (3 个回答) 已关闭
我知道有很多关于它的问题,但我找不到针对我的问题的好的答案。 我使用 Jboss 作为 7,Spring 和 Hibernate (4) 作为 JPA 2.0 提供程序,因此我有简单的 @OneToM
我是一名优秀的程序员,十分优秀!