- 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/
在通过自动完成输入框查找地址时,我试图从城市或地区获取 Place-id。问题是,当我查找任何地址时,我可以获得城市名称和其他一些详细信息(JSON 格式),但是...... 有没有办法直接从第一个查
我将 Place Picker 添加到我的 android 应用程序中。当您知道要选择的地点的地址并填写研究栏时,它就会起作用。但是我希望用户可以在使用红色选择器时选择他选择的位置,而这部分不起作用。
我已将 Jetpack Compose 从 1.1.0-beta03 升级到 1.1.0-beta04,除了需要做一些更改外什么也没发生,但现在我在“DetailScreen”上启动应用程序时出现此错
$(function () { var input = do
我正在使用Google的Place API自动填充用户键入的城市名称(网页)。加载了API,并使用语言(pt-BR)作为参数,并且使用葡萄牙语正确填充了文本框,但是执行方法getPlace()时,它将
如何将Google Place API评论从5增加到所有评论?目前,我只获得google plus商业页面的5条评论,我想获取所有评论! 有人可以帮忙吗? 最佳答案 您可以联系Google:https
https://google-developers.appspot.com/maps/documentation/javascript/examples/places-autocomplete 我有一
你们中的许多人都曾在 android 中开发过 LBS 应用程序,并且还使用了 Google Places API Web 服务来获取各个地方的信息。而且您可能还注意到,印度的数据并不准确,这意味着您
我有一个应用程序,它使用地点 API 来帮助查找目的地附近的地点(如伦敦)。我更喜欢在附近使用,因为它可以让我专注于一个区域,而且与文本搜索相比,它也更便宜。 不幸的是,我得到的答案没有多大意义。例如
关闭。这个问题是not about programming or software development .它目前不接受答案。 这个问题似乎不是关于 a specific programming
我正在尝试使用 Google Places api 来搜索位置。但不幸的是,我只收到一条响应请求被拒绝的消息。我创建了新的 API key ,但 API 访问菜单显示了一些警告图标,如下图所示,它是否
Google Place API 未获取特定地址的单位编号。 Example: 3/12 Selwyn Avenue Elwood, 3184, Mel, VIC 但有些地址它正在正确获取单元号。 E
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想要改善这个问题吗?更新问题,以便将其作为on-topi
我正在为运输行业的客户构建一个网站,我正在使用 Google Places API 获取上车地点和目的地。如果接机地点是机场,则一项要求是显示“航类号”字段。 为了确定机场是否从 Google Map
我正在研究以下内容是否可行,如果可以的话,我将如何实现这一目标。 我们会从客户那里收集企业的评论,并希望将这些评论发布到他们的评论中,并将其发布到Google商家信息中。 我想知道如何使我们的网站将这
我们开发了一个用于构建旅行路线的平台。 行程计划(行程)是由用户定义的流程排序的地点组合而成的。 我们想使用Google Places API搜索地点。我们想存储一个place_id,并用它来获取行程
截至今天(2016年5月25日),Google Places API中似乎不再有user_ratings_total的数据。我用它来获得一家企业的评论总数。是否有另一种方法来获取此数据? 最佳答案 我
有没有办法让 Google Places Autocomplete 仅限于一个国家(如法国)? 我有这个:components=country:fr https://maps.googleapis.c
我正在设置一个自定义自动填充字段,在其中显示Google地方信息中的位置以及数据库中与搜索查询匹配的事件。因此,我使用Google地方信息自动填充服务来获取查询预测,而不是将地方信息自动填充功能直接插
自2014年6月24日起,Google已将reference和id字段标记为已弃用,并将其替换为一个place_id。 到目前为止,我只看到place_id的长度恰好是27个字符,但是想知道是否有任何
我是一名优秀的程序员,十分优秀!