Sponsored Content
Full Discussion: Reverse single linked list
Top Forums Programming Reverse single linked list Post 302122096 by porter on Tuesday 19th of June 2007 06:33:07 AM
Old 06-19-2007
Should be able to do this in a single loop....

Code:
struct item
{ 
      struct item*next;
};

struct item *forward=get_list_to_revese();
struct item *reverse=NULL;

         while (forward)
         {
                 struct item *p=forward; /* pop first from forward */
                 forward=forward->next;
                 p->next=reverse;         /* push onto reverse */
                 reverse=p;
                 printf("%p\n",p);
         }

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

List linked files

A perl script that displays the list of files which have multiple links..! ls -l shows number of links in a field. (0 Replies)
Discussion started by: aadi_uni
0 Replies

2. Programming

How to attach a linked list to the shared memory?

Hi all, I have been working on shared memory. I have created the shared memory and a linked list of 5 nodes. Now I want to attach the linked list to shared memory. When we attach a shared memory it returns a void pointer, but here I am in a fix , how to relate this void pointer to linked list.... (4 Replies)
Discussion started by: jimmyuk
4 Replies

3. Programming

shared memory with linked list??

is this possible, if so plz please share with me.. Correct English please, not Cyber-/Leetspeak (11 Replies)
Discussion started by: vijay_manpage
11 Replies

4. Programming

I need C++ Code for single linked list

I need C++ Code for single linked list With operations as 1)insert at any position 2)delete any 3)change the data of any position (2 Replies)
Discussion started by: girija
2 Replies

5. Programming

Help with linked list in C

i have this code typedef struct client_list { char *client_name; struct client_list * next; int client_socket_fd; } client; client *current, *head; head = NULL; char *h="test"; add_client(current, h, head, &client_socket_fd); ... (24 Replies)
Discussion started by: omega666
24 Replies

6. Programming

How to check if something exists in linked list in C?

i have a linked list set up like typedef struct client_list { char *client_name; int client_socket_fd; struct client_list *next; } client; client *client_list=NULL; before adding to the list i check if it already exists, only if it does not then i add if (client_list==NULL... (1 Reply)
Discussion started by: omega666
1 Replies

7. UNIX for Advanced & Expert Users

Unix linked-list placement

Hi, I am programming in kernel, and I want to use a double linked list that holds infos that every process could access and modify THIS list. So, I suppose it is a 'global' variable since every process(thread) can reach it, I am wondering where to put it? by changing some of the kernel files? (1 Reply)
Discussion started by: louisTan
1 Replies

8. Programming

Help with linked list.

#include<stdio.h> #include<stdlib.h> struct LinkedList { int val; struct LinkedList *next; }node; /*Creating a structure variable*/ typedef struct LinkedList Node; Node *start = NULL; int create(int i) { Node *temp = NULL; if (start == NULL) ... (5 Replies)
Discussion started by: prinsh
5 Replies

9. Programming

How to delete the last node in a linked list.?

How to delete the last node in a single linked list given only the pointer to last node ? Head node will not be given. (5 Replies)
Discussion started by: VSSajjan
5 Replies

10. Programming

How to reverse a linked list by traversing only once.?

Program to reverse a linked list by traversing only once. (1 Reply)
Discussion started by: VSSajjan
1 Replies
ARES_SET_SERVERS(3)					     Library Functions Manual					       ARES_SET_SERVERS(3)

NAME
ares_set_servers - Initialize an ares_channel name servers configuration SYNOPSIS
#include <ares.h> int ares_set_servers(ares_channel channel, struct ares_addr_node *servers) DESCRIPTION
The ares_set_servers(3) function initializes name servers configuration for the channel data identified by channel, from a servers pointer to a linked list of ares_addr_node structs holding name servers address data. The name server linked list pointer argument may be the result of a previous call to ares_get_servers(3) or a linked list of ares_addr_node structs setup by other means. This function replaces any potentially previously configured name servers with the ones given in the linked list. So, in order to configure a channel with more than one name server all the desired ones must be specified in a single list. ares_set_servers(3) does not take ownership of the linked list argument. The caller is responsible for freeing the linked list when no longer needed. This function is capable of handling IPv4 and IPv6 name server addresses simultaneously, rendering ares_init_options(3) with optmask ARES_OPT_SERVERS functionally obsolete except for IPv4-only name server usage. RETURN VALUES
ares_set_servers(3) may return any of the following values: ARES_SUCCESS The name servers configuration was successfuly initialized. ARES_ENOMEM The process's available memory was exhausted. ARES_ENODATA The channel data identified by channel was invalid. ARES_ENOTINITIALIZED c-ares library initialization not yet performed. SEE ALSO
ares_set_servers_csv(3), ares_get_servers(3), ares_init_options(3), ares_dup(3) AVAILABILITY
ares_set_servers(3) was added in c-ares 1.7.1 AUTHOR
Implementation of this function and associated library internals are based on code, comments and feedback provided in November and December of 2008 by Daniel Stenberg, Gregor Jasny, Phil Blundell and Yang Tse, December 2009 by Cedric Bail, February 2010 by Jakub Hrozek. On March 2010 Yang Tse shuffled all the bits and this function popped out. Copyright 1998 by the Massachusetts Institute of Technology. Copyright (C) 2008-2010 by Daniel Stenberg 5 March 2010 ARES_SET_SERVERS(3)
All times are GMT -4. The time now is 02:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy