Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
128 views

Binary Tree/list Deletion

Recently for a data structures class I was asked the question of how a lazy deletion (that is, a deletion that first marks the items needed to be deleted, and then at some time later deletes all the ...
4
votes
1answer
75 views

C - Merging Two Unsorted and Unsortable Trees

Right, I am studying CS and have been completing a lab in C, it has all gone pretty well but I've now hit something that appears to be impossible to solve for the bonus marks. I've been on this for a ...
4
votes
3answers
461 views

When do you know when to use a TreeSet or LinkedList?

What are the advantages of each structure? In my program I will be performing these steps and I was wondering which data structure above I should be using: Taking in an unsorted array and adding ...
4
votes
3answers
471 views

Valgrind Uninitialized Values (making a linked list data struct)

I've created a linked list class, but this function is producing valgrind errors based saying that there is a conditional jump based upon an uninitialized value in this function. I'm not exactly sure ...
3
votes
5answers
342 views

C++: STL linked list - representing a Polynomial

I'm working on a problem which requires me to use the STL linked list class to represent a polynomials. I've made a good start on getting the class definition, however I'm a little confused as to ...
3
votes
1answer
172 views

Linked List Structure in Java

i have a question about circularly linked lists. My linked list object has two references, first and last, and the next node of the last reference is first. I want to write a method that inserts a ...
3
votes
1answer
81 views

C Progamming: Linked Lists

I'm writing a program using linked list (such a nightmare). Anyway, the purpose of the program is to enter 8 characters and have the program print the characters back out to you and also print the ...
3
votes
3answers
525 views

Perl - insert multiple values into an array

I am needing to process a large amount of data in arrays with perl. At certain points, I will need to insert the values of a second array within a primary array. I have seen that splice should ...
3
votes
2answers
163 views

Class design for self-linked classes with generic pointer type

I am currently modifying a complex class that has nodes pointing to themselves just like linked lists or graphs. I want it to be used in shared memory using boost::interprocess functions. Now I am ...
3
votes
1answer
213 views

Getting merged/unified entries from ABAddressBook

I'm developing an application that is showing the iPhone contacts. The ABAddressBookRef returns duplicate entries for a contact that appears only once in the iPhone contacts application. Looking on ...
3
votes
3answers
740 views

Is there an intelligent way to know the name of the library to link to at compile time? (Linux/Kubuntu)

Please bear with me. I really want to know as I am curious about the answer: Is there an intelligent way to know the name of the library to link to at compile time? Allow me to give you an example ...
3
votes
1answer
507 views

Deleting first and last element of a linked list in C

struct person { int age; char name[100]; struct person *next; }; void delfirst(struct person **p)// For deleting the beginning { struct person *tmp,*m; m = (*p); tmp = ...
3
votes
6answers
498 views

Deleting a node from linked list in C

My problem is deleting a node from linked list. I have two structs : typedef struct inner_list { int count; char word[100]; inner_list*next; } inner_list; typedef struct outer_list { char ...
3
votes
5answers
444 views

<template> replacement for C linkedList

Just finished small linked list in C, and realized that I got a problem :) There is no template arguments for C, so at the start of the file I declaring my data type for list, something like: ...
3
votes
4answers
3k views

Preserving linked tables for Access DBs in same folder when the folder changes

I've got two Access databases that share linked tables. They are deployed together in a directory and accessed via code in a Word form. How can I make sure that the links are preserved when the two ...
2
votes
1answer
34 views

Java: NPE in Circular Linked List :(

import javax.swing.JOptionPane; public class RotateArrayCircularLL { private Node head=null; public void init() { int choice = 0; while (choice != -1){ choice ...
2
votes
3answers
47 views

Implementing K stacks in one array algorithm

How to implement K stacks in an array , with best storage usage ( stacks should be dynamic) * ( a job interview Question which i came across and wanted to know the best answer ) thanks Already
2
votes
4answers
169 views

Interview: Summing numbers in two linked lists

During an interview yesterday, I was asked how I would go about summing the values of two singly linked lists that contained digits. They also said the lists could be unequal lengths. I asked if the ...
2
votes
4answers
374 views

Declaring static variables in a generic class

I've read that you cannot declare static variables/methods inside a generic class and I really have no idea how to solve my problem or work around it so I ask for your guidance. What I want is a ...
2
votes
2answers
278 views

doubly-circular linked list in c#

I am using a doubly-circular linked list. After adding values I am retrieving values from the list. I am using this code to add values: public void Add(T data) { if (root == null) { ...
2
votes
7answers
154 views

Linked List in Java, How to cast String array into List?

Can you tell me what does this method return type is: List<passenger> recommend(Car a, Driver b) { ... } I just want to know about List keyword. Is this standard linked list or soemthing ...
2
votes
2answers
80 views

Separating comma delimited text within a field using Python

I'm currently trying to convert a table into RDF using Python and attach the values from each cell to the end of a URL (eg E00 becomes statistics.data.gov.uk/id/statistical-geography/E00). I can do ...
2
votes
1answer
43 views

Mapping to different linked servers per database

I have an MSSQL Server 2008 database "DBLive" that link to three different external servers [ExtServer1, ExtServer2, ExtServer3], all defined in sys.servers. There are several stored procedures that ...
2
votes
3answers
60 views

appending to linked list

i was wondering how the while loop ever executes. since we set 'next' to be null when we first declare it, when does it get changed to not null? and also what does ' Node n = this; ' mean? Is that ...
2
votes
5answers
427 views

typedef and linked list

I am getting confused with typedef can anyone transcribe this to a normal composition? of structures? I really don't want to handle typedef since it's gets me confuse struct stackNode { int data; ...
2
votes
2answers
350 views

MS Access to MySQL Linked Table via ODBC >> Is there any way to decrypt columns

I have a MS Access Frontend to a MySQL DB via a linked table this was working well but recently implemented MySQL encryption for a new security concern. Do you guys know any way to decrypt the ...
2
votes
4answers
136 views

Allocate a consecutive linked list in c

Im trying to create a linked list in c. The twist is that I want to allocate the memory for the list so that all the nodes are consecutively stored in memory. Maybe an array structure is the way to ...
2
votes
1answer
80 views

Social Media connect

Hello I am want to add social media connect to my web app which includes twitter,facebook and linkedin. I want to include twitter connect to my site. But I am not getting how to do it. I have ...
2
votes
3answers
252 views

C LinkedList add Ordered question

I have a linked List c file/head as an independent library i am using for a project. I dont yet have a add ordered method in the library. My problem is writing a compare function because i want to ...
2
votes
1answer
70 views

To create a view in a linked SQL Server 2005 database with some data types transformations

good day! There are two linked SQL Server 2005 machines, server A with a lot of data and empty base on sever B. Our user does not have a permission to create views on A, but have this ability on ...
2
votes
4answers
121 views

using malloc for block of structs

I am trying to allocate a block of memory, and store a list of structures without using multiple mallocs for each... this is just a generic example, I don't have the original code I was working with ...
2
votes
2answers
235 views

LinkedList parameters in Java

I created a program that contains linked lists that are passed various methods. While this works just fine in Java... a style checker program we have to use doesn't like it It says: Declaring ...
2
votes
5answers
3k views

Manually sorting a linked list in Java (lexically)

I am implementing my own linked list in Java. The node class merely has a string field called "name" and a node called "link". Right now I have a test driver class that only inserts several names ...
2
votes
2answers
3k views

Reporting Services: Overriding a default parameter with an expression in a linked report

So I've got a "daily dashboard" report in SSRS 2005. It has a parameter, @pDate, which defaults to "=Now". I'd like to use this same report in a linked report to show yesterday's final dashboard ...
1
vote
3answers
75 views

The time it takes to initilize a Linked list vs an array

For a project we have to optimize code to calculate a certain prime number. My question is in terms of time how much faster or slower is it to initialize a Linked list in comparison to an array. ...
1
vote
2answers
50 views

List within a Tree?

A small query really with reference to Structs. If I had a Struct Node { char *number; struct Node *next; }List; and a tree Structure: struct Node { char *name; char *number; ...
1
vote
2answers
135 views

Sorting Linked List in C

I want to add elements to the my linked list order by ascending but my code just hold minimum node of the lists correctly. My function take an argument as data. Anybody have any idea about my fault? ...
1
vote
2answers
32 views

How can I change the order of the nodes in a simple linked list?

If I have, for instance 5 nodes containing the variables 1, 2, 3, 4, 5, how can I link the nodes in order to obtain 3, 2, 1, 4, 5 ? (Change the first node with the third one, and the third with the ...
1
vote
2answers
87 views

java linked list copy constructor

Im having trouble with a constructor for a linked list. it takes a string and is supposed to create a node for every character. i get a nullpointerexception everytime i try to print out the list. ...
1
vote
1answer
40 views

Linked server provider problem

We have recently changed the database servers, and had to move the linkedserver setup from one server to the other. In the previous server the linked server's provider was MSDAORA and in the new ...
1
vote
1answer
104 views

How to delete right elements from linked list?

I'm writing this code to learn by my self how to work correctly with files and strings. I've managed successfully with the part of reading and writing to the file but stacked for a while at the point ...
1
vote
1answer
280 views

C# Asp.net Linkedin authorization using Linkedintoolkit with DotNetOpenAuth

I am trying to authorize my ASP.net application to use the Linkdin APIs but can't seem to authenticate properly. I was hoping someone could take a look at my source code and see what I might be ...
1
vote
1answer
54 views

Big O Speed of Removing Duplicates from Linked List Without Buffer

The approach I'm referring to is the dual-pointer technique. Where the first pointer is a straightforward iterator and the second pointer goes through only all previous values relative to the first ...
1
vote
3answers
266 views

How to prevent the default behavior on internal linked pages in jQueryMobile?

How can I prevent the default behavior on internal linked pages? My goal is to prevent the user from accessing page contents without first authenticate.
1
vote
4answers
184 views

How would you traverse a linked list in O(n^0.5)?

This is an interview question of Apple. I have found no convincing argument in support or against it yet.
1
vote
1answer
123 views

With linked ComboBoxes, secondary combobox always starts empty

I've been trying for two days now to figure this out, and repeatedly searching for answers. It seems like it should be so simple. The goal: I have two comboboxs. One is for an object Country, the ...
1
vote
1answer
127 views

SQL 2008 Linked Server returns different results than local query

(remote linked server) select * from [linkedserver].master.sys.sysdatabases columns returned: name dbid sid mode status status2 crdate reserved category cmptlevel filename ...
1
vote
1answer
47 views

Why keep 'previous' while deleting duplicates in linked list?

i was wondering if anyone could explain what is the purpose of using the 'LinkedListNode previous' variable. i understand the general idea of trying to remove the duplicate. you look through the ...
1
vote
1answer
670 views

Extremely slow insert OpenQuery performance on SQL Server to MySQL linked server

Using SQL Server Management Studio to copy the entire contents of a table from SQL Server to an identical table on a MySQL machine. The MySQL db is connected to Management Studio as a linked server ...
1
vote
1answer
579 views

Load WebView with .html file linked to /assets folder

I need to load .html file into WebView but this file is situated in external folder on disk. I cannot copy file into /assets folder under my android project. But i can create a link to this file in ...

1 2 3 4