- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试让方法 shiftInsert
工作。我想在列表中插入一个数字并使最后一个数字消失。如果这是列表 p 1 -> 2 -> 3 -> 4 -> 5
,在 shiftInsert(8)
之后列表需要看起来像这样 p 8 -> 1 -> 2 -> 3 -> 4
。如您所见,最后一个数字需要消失。我该如何实现?
#include <stdio.h>
#include <stdlib.h>
struct elem {
int value;
struct elem *next;
};
typedef struct elem Node;
Node *root;
Node * addElem(Node *p, int value) {
p->next = malloc(sizeof *p);
p = p->next;
p->value = value;
p->next = NULL;
return p;
}
void shiftInsert(Node *n, int v) {
int tmp;
while (n != NULL) {
Node * new_node;
new_node = malloc(sizeof (new_node));
n = n->next;
}
}
void printList() {
Node *p = root;
while (p != NULL) {
printf("%2d -> ", p->value);
p = p->next;
}
printf("NULL\n");
}
int main(int argc, char **argv) {
Node *p;
int i = 0;
root = p = malloc(sizeof (Node));
p->value = 1;
for (i = 2; i <= 10; i++) {
p = addElem(p, i);
}
printList();
shiftInsert(root, 88);
printList();
shiftInsert(root->next->next->next, 33);
printList();
return 0;
}
最佳答案
根据您的示例,您想插入第一个位置并删除最后一个位置。所以基本上你想创建一个新的根,然后找到最后一个元素并将其 next
设置为 NULL
。
首先是删除函数:
void deleteLast()
{
int i, before_last = 0;
Node *temp;
/* Find last element to remove it*/
temp = root;
for(i = 0; temp->next != NULL; i++) { // "i" will be the index of the last element
temp = temp->next;
}
before_last = i - 1; // the one before "i" will be the new last element
temp = root;
for(i = 0; i < before_last; i++) { // find the one before last and set its "next" NULL
temp = temp->next;
}
free(temp->next);
temp->next = NULL;
}
新根,创建一个元素作为新根。将其next
设置为root,然后将新元素设为root。
void shiftInsertRoot(int v) {
if (root != NULL) {
Node * new_root;
/* Create new root */
new_root = malloc(sizeof (new_root));
new_root->next = root; // save previous root
new_root->value = v; // set new value
root = new_root; // update root pointer
deleteLast();
}
}
根据你的main,你想在某个元素之后插入,你得先找到它。然后创建一个新元素并将其 next
设置为原始元素的 next
,这样您就不会丢失列表的其余部分。最后将原元素的next
设置为新元素。
void shiftInsertAnywhere(Node *position, int v) {
int i;
Node *temp;
temp = root;
for(i = 0; temp->value != position->value; i++) {
temp = temp->next;
}
if (temp != NULL) {
Node * new_root;
/* Create new root */
new_root = malloc(sizeof (new_root));
new_root->next = temp->next; // save the rest of the list
new_root->value = v; // set new value
position->next = new_root; // insert the new element after "position" element
deleteLast();
}
}
这将在位置
之后插入。
例子:
printList();
shiftInsertRoot(88);
printList();
shiftInsertRoot(33);
printList();
shiftInsertAnywhere(root->next->next, 99);
printList();
shiftInsertAnywhere(root, 17171);
printList();
输出:
关于C链表: Placing number infront of the list and making all numbers shift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40061574/
我并不总是编写 make 文件,但当我这样做时,我喜欢尝试并写好它们。试图使界面与其他开发人员的期望一致始终是一项艰巨的任务。我正在寻找的是所有常见的 make some clean (GNU) ma
例如,我在运行 makefile 时收到这样的错误: make[3]: *** [/home/ziga/Downloads/openwrt/rakun_openwrt/staging_dir/ho
我必须创建一个 Makefile,它从不同文件夹中的 .c 文件创建单个可执行文件。 .c 文件包含来自任何这些文件夹的头文件。根目录有3个子目录x/y、x/z、a,所有这些子目录都有一些.c和.h文
您好,我有一个简单的 MakeFile,其中包含: clean: rm -f ex1 但是当我运行命令make clean 时,出现以下错误: make: *** No rule to mak
我已经为一些软件安装了它,但现在我根本不使用那个软件,所以我需要移除MinGW才能使用Cygwin进行Android开发。。我使用的是64位Windows 7
以下是针对我遇到的问题的简化生成文件: all: /tmp/makey/../filey @echo All done /tmp/filey: @echo Filey 当我运行 mak
获取错误: make: *** No rule to make target all. Stop." 在安装nagios主机期间运行此命令make all 最佳答案 可能的常见错误: 确保将文件命名为
当使用 -jN 运行 gnu-make 规则时,make 会创建 jobserver用于管理跨子制造商的工作数量。此外,您可以通过在 make 配方前添加 + 前缀来“将作业服务器环境传递”到 mak
使用 GNU Make 4.1 概括 我调用一个子品牌 b.mk来自生成文件 a.mk .b.mk被调用以确保构建子系统。 有时我想强制一个目标为 a.mk重制: make -f a.mk --al
这个问题与问题 2543127 的精神相似。 . 我有一个带有头文件列表的 gnu makefile。每个头文件可能位于不同的目录中,例如, HEADERS = $(wildcard *.h) $(w
假设我有以下 GNU make 目标: create_dir: @mkdir objects build_asm: $(ASM_FILES) @echo
我有一个具有以下结构的 Makefile(工作示例)。 .PHONY: image flashcard put-files put-files: @echo "=== put-files" i
我想要一个这样的makefile: cudaLib : # Create shared library with nvcc ocelotLib : # Create shared li
有没有比更好的方法来获取 GNU make 变量的第一个字符 FIRST=$(shell echo $(VARIABLE) | head -c 1) (不仅笨重而且还要调用外部shell)? 最佳答案
我通常使用像 cmake 这样的高级构建系统来构建我的 C/C++ 代码。但是由于各种原因,我直接使用 GNU make。 我正在进行递归构建,其中每个目录都有一个 makefile。 我最近不得不将
我通常使用像 cmake 这样的高级构建系统来构建我的 C/C++ 代码。但是由于各种原因,我直接使用 GNU make。 我正在进行递归构建,其中每个目录都有一个 makefile。 我最近不得不将
我安装了最新的mingw,发现没有mingw32-make了。有make.exe,所以我想知道最近是否将mingw32-make重命名为make.exe。 最佳答案 我不知道您从哪里获得 MinGW,
我正在使用 CentOS,但由于一个错误,许多软件包被删除了。所以我没有 yum 和 rpm。所以我想从源代码手动制作 yum,但我也没有制作。我知道一切都会用“制作包”制作。但是 make 自己呢?
考虑这个Makefile: .PHONY: all all: main.txt main.txt: build/main.txt cp build/main.txt . %/main.txt:
假设目录输入中有 1000 个扩展名为 .xhtml 的文件,并且这些文件的某个子集(输出路径在 $(FILES) 中)需要通过 xslt 转换为目录输出中具有相同名称的文件.一个简单的 make 规
我是一名优秀的程序员,十分优秀!