- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用以下代码向后遍历树,我现在得到的是末尾的分隔符,例如 child/grandchild/<-- 我想删除该分隔符。我不知道要在算法中修改什么才能这样做。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct node { struct node *parent; char *name; };
char *buildPath(node* node, bool use_register_name)
{
struct node *temp = node;
int length =0;
do
{
length+=strlen(temp->name)+1; // for a slash;
temp = temp->parent;
} while(temp !=NULL);
char * buffer =malloc(length+1);
buffer[0] = '\0';
do
{
if(!use_register_name)
{
use_register_name=true;
node = node->parent;
continue;
}
char *name = strdup(node->name);
strcat(buffer,"/");
strrev(name);
strcat(buffer,name);
node = node->parent;
free(name);
} while (node != NULL &&strcmp(node->name,"root")<0);
strrev(buffer);
return buffer;
}
int main(void)
{
struct node node1 = { NULL, "root" };
struct node node2 = { &node1, "child" };
struct node node3 = { &node2, "grandchild" };
char * result = buildPath(&node3, false);
printf(result);
return EXIT_SUCCESS;
}
最佳答案
假设您获得的每个输出都有尾部正斜杠,您可以简单地将其从最终输出中删除。在下面的代码片段中,我有条件地检查 result
是否至少有一个字符,并且最后一个字符是正斜杠。如果满足这些条件,我将删除正斜杠。
char * result = buildPath(&node3, false);
if (result && *result) { // make sure result has at least
if (result[strlen(result) - 1] == '/') // one character
result[strlen(result) - 1] = 0;
}
更新:
这是您的问题的解决方案,它修改了算法本身。尝试将您的代码修改为以下内容:
int firstCall = 1; // flag to keep track of whether this is first call (leaf node)
do {
if(!use_register_name)
{
use_register_name=true;
node = node->parent;
continue;
}
char *name = strdup(node->name);
if (firstCall) {
firstCall = 0;
}
else {
// ONLY add this slash to a non-terminal node
strcat(buffer,"/");
}
strrev(name);
strcat(buffer,name);
node = node->parent;
free(name);
} while (node != NULL &&strcmp(node->name,"root")<0);
这是您的算法当前如何为您的 OP 中的输入构建路径:
buffer = "/dlihcdnarg" // note carefully this leading (really trailing) slash
buffer = "/dlihcdnarg/dlihc"
然后您的代码在某个时候反转缓冲区以获得此:
"child/grandchild/"
在这种情况下,通过添加对叶节点的检查,而不是添加前导(实际上是尾随)斜杠,您将获得以下输出:
"child/grandchild"
关于c - 删除字符串末尾的路径分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32777785/
我正在更改链接网址以添加 www.site.com/index.html?s=234&dc=65828 我通过此代码得到的是:site.com/&dc=65828 var target="&dc=65
我在编译过程中收到错误: src/smtp.c:208:1: warning: control reaches end of non-void function [-Wreturn-type] 这是相
这是我的 bootstrap/html 代码: Put email 位置正确,但我希望输入字段的大小延伸到 div 末尾。谁能帮帮我? 最佳答案 只需按百分比指定宽度,如下所示
我正在尝试获取一个像这样的 json 对象: filters = {"filters": myArray}; 并将其附加到 URL 的末尾,使用: this.router.navigate([`/de
这个问题已经有答案了: Remove hash from url (5 个回答) 已关闭 10 年前。 我有一个网站,stepaheadresidents.com ,并且井号 (#) 会自动添加到 u
我有这个代码 $('container a').appendTo('.container'); dzedzdqdqdqzdqdzqdzqdqzdqd Forgot password
为了练习更多 Python 知识,我尝试了 pythonchallenge.com 上的挑战 简而言之,作为第一步,此挑战要求从末尾带有数字的 url 加载 html 页面。该页面包含一行文本,其中有
我对 FS2 很陌生,需要一些有关设计的帮助。我正在尝试设计一个流,它将从底层的 InputStream 中提取 block ,直到结束。这是我尝试过的: import java.io.{File,
我对 FS2 很陌生,需要一些有关设计的帮助。我正在尝试设计一个流,它将从底层的 InputStream 中提取 block ,直到结束。这是我尝试过的: import java.io.{File,
我正在编写一个 ajax 应用程序,并且在 php 脚本中有一个函数: public function expire_user() { $r=array("return"=>'OK');
我正在使用一个QListView,它包装了一个非常简单的列表模型。我想尝试实现类似于某些网页中看到的“无限滚动”的东西。 目前,模型通过最多添加 100 个项目的方法更新(它们取自外部 Web API
运行 cucumber 测试给我以下错误 end of file reached (EOFError) /usr/lib64/ruby/2.0.0/net/protocol.rb:153:in
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我想知道版本命名的具体作用是什么? 喜欢 jquery.js?ver=1.4.4 我的意思是如果我使用像这样的 cdn jquery/1.4.4/jquery.min.js?ver=1.4.4但是另一
" data-fancybox-group="gallery" title="">" alt="" /> 在此代码中 echo $prod['item_image_url'];打印存储在我的表中的图像
我目前使用 Wordpress 作为博客平台,但我想更改为使用 Jekyll 来生成静态页面。在 WordPress 上,我的 URL 使用以下格式: /年/月/日/标题 但我想将其重定向到 /年/月
根据docs这应该是不可能的 Regular expressions cannot be anchored to the beginning or end of a token 尽管如此,它似乎对我有
有没有办法创建 dijit 并将其附加到 div 的末尾?假设我有以下代码: Add Person 我在网上找到了以下代码,但这替换了我的“attendants”div: var personCo
我有这段代码: //execute post (the result will be something like {"result":1,"error":"","id":"4da775
我需要一些函数方面的帮助。 我想编写一个插入链表的函数。但不仅仅是中间,如果必须插入前端或末尾,它也必须起作用。 结构: typedef struct ranklist { i
我是一名优秀的程序员,十分优秀!