The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
66 views

Copy a linked list in c

typedef struct slist *LInt; typedef struct slist{ int value; LInt prox; }Node; LInt clone2(LInt l){ LInt nova=NULL,aux2=NULL; while(l){ aux2=nova; nova=(LInt)malloc(sizeof(Node)); ...
0
votes
1answer
14 views

android linkedin Scribe API gets null pointer exception

I'm using Scribe API to integrate with linked in encountered with problem which I get NPE, code: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
-2
votes
3answers
43 views

C Compilation error: request for member ___ in something not a structure or union

I'm currently trying to create a hash table of strings. However in my search function I've been running into an error: request for member _ in something not a structure or union.. again /*search ...
1
vote
2answers
74 views

C error: request for member ___ in something not a structure or union

So the code is saying that List and size is not a structure? typedef struct HashTable{ int size; ListRef **List; } hash; typedef struct hash *hash_ref; hash_ref *newHash(int size){ ...
-4
votes
0answers
40 views

Searching in vectors of linked lists c++ [closed]

I have a homework which consists of a complicated hierarchy of classes with vectors of arrays in them and I can't advance in it... :( Here's the code (the part of I've successfully created, but can ...
0
votes
1answer
56 views

Variables to store node while sorting linked list

I'm a distant learning student and this time I would ask community 'where to go'. This program produce operations with linked list. I understand the idea about three pointers to nodes and two ...
0
votes
2answers
37 views

Process in which new nodes are added to a linked list in C

I know how the program works but i can't wrap my head around the concenpt. Here is the main function: void main() { lista node1, p, q; int n, i; int a; node1 = NULL; printf("data = "); scanf("%d", ...
0
votes
0answers
11 views

Can I retrieve all the comments made by a user on group discussion posts on linkedin using API ?

My application requires to show all the comments made by an authenticated user on any discussion posts from Linked in Groups the user is a member of. But looking at Comments resource and Groups ...
-6
votes
1answer
48 views

C++ linked list node class [closed]

my code will not compile i dont know wat is the problem its linked list implementation using node class, list class, add method, get method and next method. I am learning c++ this program is supposed ...
0
votes
1answer
56 views

Linked Lists and structs

I'm working on a school project and I'm trying to understand doubly linked lists and structs a bit better. Currently, I'm trying to implement a function, one that creates a new linked list. Because I ...
1
vote
0answers
22 views

Describe a memory diagram to show [closed]

Describe a memory diagram to show: (1) - An empty link list (2) - A list with two nodes I can't work out what this question means, What I think it to be is for (1) just draw a Head and tail box with ...
0
votes
2answers
39 views

Adding an element to a singlechained linked list

Okay, the solution is probably very easy but I don't understand it at the moment. Code: ListElem<T> first; int size = 0; public void add(T value) { if (value == null) return; ...
-4
votes
0answers
38 views

How to make a hashtable in C with the keys of type linked list and long? [closed]

SO I currently have a struct with keys of type long and a linked list typedef struct Node{ long key;/*book id*/ ListRef data; /*type linked list*/ struct Node* next; struct Node* ...
1
vote
1answer
30 views

QuickSort on a LinkedList in VBA

I've unfortunately inherited some VBA code which uses LinkedLists in VBA but nothing is sorted, and needs to be sorted. LinkedList example: http://support.microsoft.com/kb/166394 I'm trying to do a ...
0
votes
1answer
32 views

Creating a linked list of notes from a Phrase (Jmusic)

I have this constructor that takes in a phrase of jmusic notes, and i'm trying to set each individual note to an individual node in a linked list of SoloNodes which hold one individual note only. most ...
0
votes
0answers
19 views

Code Optimization using less Arrays

The following is a section of code that computes dynamic time warping of two vectors by filling up d[rows][col] with the difference between two vectors. D[rows][cols] goes through d[rows][cols] and ...
0
votes
1answer
66 views

Recursive parameters for quicksort

I'm trying to implement a simple Quicksort Algorithm (Doubly Linked List, circular). The Algorithm works pretty well, but it's much too slow, because of the following operation: iEl = ...
1
vote
1answer
15 views

Linked Server is not working in Trigger

I have a Linked Server that executes correctly in a Query, but when i tried to execute it inside a Trigger i was getting this: Error Source: .Net SqlClient Data Provider Error Message: The operation ...
0
votes
2answers
44 views

how to copy linked file thru tcl

I want to copy file thru tcl proggraming , these files are linked. this is the code: if { [file type $sfile] == "link" } { set fget [file readlink $sfile ] } file copy ...
0
votes
2answers
17 views

How unrolled linked list works

Can any one explain me what is unrolled linked list. As per my knowledge its a linked list in which each node have array of elements. And of course this makes the searching faster. ...
0
votes
1answer
65 views

Quicksort Linked List Pivot Last Element

I'm trying to implement a quicksort for sorting a CYCLIC LINKED LIST! There is a DoublyLinkedList which contains ListElements. The ListElement has the Element First, which has a reference to its ...
1
vote
1answer
65 views

Nodes, Type Definitions, how Null works (C programming language) C linked lists

I am struggling to understand something with nodes in linked lists in C. I am given a list of 6 nodes on paper, and I am trying to draw how the nodes change after a few different sets of commands. ...
0
votes
0answers
68 views

quicksort with linked lists in java

my quicksort program takes a unsorted list as argument and returns sorted list when i implement the program its giving out the output for one list and showing nullpointerexception for another list ...
0
votes
1answer
56 views

Insertion sort linked list c++

Im trying to sort a filled linked list with random numbers. The function I have made doesnt work as it should. I can't see what is wrong, its not sorting the numbers properly. Would really appreciate ...
1
vote
1answer
24 views

Setting 'Connect' property of table drops primary key. Why? (Access 2010)

I am working on an 'accdb' application. Most of my tables are linked to SQL Server 2008. I want to give the user an option to connect to a different database, so I'm providing a screen that does the ...
0
votes
1answer
30 views

C/C++: What is the difference between a statically-linked library and an object file?

I understand that code included in an executable at compile-time can come from object files (.o files) and statically-linked libraries (.lib/.a files). What is fundamentally and conceptually the ...
1
vote
5answers
59 views

Printing out contents of a list from the c++ list library [duplicate]

I wanted to print out the contents of a list for a simple program I'm writing. I'm using the built in list library #include <list> however, I've no idea how to print out the contents of this ...
0
votes
5answers
57 views

remove at index linked list

Hi im trying to remove a link in part of a linked list but i'm not sure how to remove the link. when i run it the links are still there. im using a junit to test the function if that matters . Here ...
1
vote
2answers
56 views

Linked List in C error — Invalid Initalizer error

I am attempting to create a Linked List using C (NOT C++). The Linked List is initialized through the function llinit() which should return a list struct. However, when I compile the code I get an ...
0
votes
3answers
55 views

Writing an operator== for a singly linked stack

I'm having a lot of trouble writing an operator== function for my stack class, I just can't seem to get the logic down. Currently I have: template<class myType> bool ...
0
votes
1answer
60 views

Linked list C char set last name added to everyone

I wrote a program to be used as a line organizer, but when the time comes to show the a person's name, it sets the last person added to all others. How can I fix it? If I change the info in struct, ...
0
votes
1answer
55 views

User input to make a linked list

Any help would be great. I have a project for a c 99 programming class that requires us to ask a user for a sentence and then take that sentence char-by-char and store each char individually in a ...
0
votes
2answers
158 views

Insertion and deletion in linked lists in alloy

I had created a simple version of linked list using alloy . Now I want to create a linked list in which I could perform insertion and deletion. I have just begun coding in alloy. for now I am having ...
1
vote
2answers
142 views

Generic Linked List of Objects (Java)

I'm pretty new to Java, with this being my second class (in College) using it. Towards the beginning of the semester, I made a simple class representing Zombies that holds their age, type, and name. ...
0
votes
0answers
156 views

Implementation of deque based on doubly-linked list

I am working on a project that requires me to implement a deque based on a doubly linked list. The user should be able to carry out the normal operations on the deque. I am looking for some input on ...
-1
votes
0answers
91 views

Combine the programme of priority queue based amd a sorted linked list [closed]

I want to implement a priority queue based on a sorted linked list. The remove operation on the priority queue should remove the item with a smallest key. That means how to combine the programme of ...
0
votes
1answer
68 views

Linked list program with dynamic memory allocation

#include "PersonList.h" #include <iostream> #include <string> using namespace std; PersonList::PersonList() { head=NULL; //Head is a PersonRec* } struct PersonRec { string aName; ...
-4
votes
0answers
85 views

Create a Tree that have a Linked list in is Leaf nodes in C [closed]

I need to implement a tree, and insert ver and print them Assume the tree is represented by a data structure where each node has three pointers: parent, left-child, right-sibling Example: Tree ... 1 ...
-1
votes
0answers
127 views

I want to implement a priority queue based on a sorted linked list [closed]

I want to implement a priority queue based on a sorted linked list. The remove operation on the priority queue should remove the item with a smallest key. That means how to combine the programme of ...
1
vote
1answer
50 views

Linked lists and pointers

#include "PersonList.h" #include <iostream> #include <string> using namespace std; PersonList::PersonList() { head=NULL; //Head is a PersonRec* } struct PersonRec { string ...
0
votes
0answers
28 views

Trying to point one node to another node to link the nodes and having some troubles

Alright I'm trying to link one node to another node and I just cant seem to get it to work. Can you give me a tip? I think the error is on line 44 but I'm not sure how to fix it. #include ...
0
votes
1answer
90 views

MSSQL stored procedure with sybase linked server getting recompiled for each execution

I have a stored procedure in MS SQL Server that uses a Sybase linked server. Each time the stored procedure is executed it runs for a long time and looks like it is recompiling before execution. Any ...
1
vote
2answers
46 views

Is there any way to modify this function so that it removes the previous element in the array - C

So I've been given the task of modifying a previous code (which simulates a deck of card) to do it more accuarely by having the cards in the array be removed after they are drawn. I know there are ...
1
vote
1answer
71 views

How to convert GML/JSON to RDF?

i've got a geo-related dataset with coordinates and want to convert it into RDF to publish it as Linked Data. The dataset exists in the formats GML, KML, JSON, CSV and XSD. The content is just about ...
0
votes
0answers
61 views

binary tree to linked list python

How can I convert a binary tree to a linked list in python using inorder traversal? I have the solution on how to do this, but there is a part that i don't understand. class BTNode: def ...
0
votes
2answers
78 views

Using bubble sort with a linked list

I'm trying to write a method that will sort objects of a linked list based on an integer variable (named priority) of each object. I've used bubble sort before with arraylists and had no trouble, but ...
0
votes
0answers
51 views

Java Linked Listed with File

Create a File called "Words.txt" that contains a list of words. Write a program to read the file and store each word in a linked list called allWords. Allow a user to enter a word to determine if it ...
0
votes
1answer
38 views

XSLT - interlink attributes from different child elements

I have the following XML file that stores movies and actors: <database xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="movies.xsd"> <movies> ...
2
votes
1answer
75 views

A linked list for each location in an array

I am working on an assignment and have run into an issue with my code. In the assignment, we are to take in a series of numbers, hash them, then place them into an array where each location is a ...
1
vote
1answer
52 views

Error Trap SQL Statement Linked Server

I am using SQL2008R2 and have a large stored procedure containing a section of SQL that INSERTS a record to a LINKED server (also SQL2008R2). I want to be able to continue on with the stored procedure ...

1 2 3 4 5 9