mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-06 20:33:54 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
60 lines
1.1 KiB
C
60 lines
1.1 KiB
C
/**
|
|
* File: list_node.h
|
|
* Created Time: 2023-01-09
|
|
* Author: Reanon (793584285@qq.com)
|
|
*/
|
|
|
|
#ifndef LIST_NODE_H
|
|
#define LIST_NODE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Linked list node structure */
|
|
typedef struct ListNode {
|
|
int val; // Node value
|
|
struct ListNode *next; // Reference to next node
|
|
} ListNode;
|
|
|
|
/* Constructor, initialize a new node */
|
|
ListNode *newListNode(int val) {
|
|
ListNode *node;
|
|
node = (ListNode *)malloc(sizeof(ListNode));
|
|
node->val = val;
|
|
node->next = NULL;
|
|
return node;
|
|
}
|
|
|
|
/* Deserialize array to linked list */
|
|
ListNode *arrToLinkedList(const int *arr, size_t size) {
|
|
if (size <= 0) {
|
|
return NULL;
|
|
}
|
|
|
|
ListNode *dummy = newListNode(0);
|
|
ListNode *node = dummy;
|
|
for (int i = 0; i < size; i++) {
|
|
node->next = newListNode(arr[i]);
|
|
node = node->next;
|
|
}
|
|
return dummy->next;
|
|
}
|
|
|
|
/* Free memory allocated to linked list */
|
|
void freeMemoryLinkedList(ListNode *cur) {
|
|
// Free memory
|
|
ListNode *pre;
|
|
while (cur != NULL) {
|
|
pre = cur;
|
|
cur = cur->next;
|
|
free(pre);
|
|
}
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // LIST_NODE_H
|