0
votes
6answers
68 views
Pointing to the first object in a linked list, inside or outside class?
Which of these is a more correct way to store the first object in a linked list?
Or could someone please point out the advantages/disadvantages of each. Thanks.
class Node
{
int var;
Node …
2
votes
5answers
178 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 …
0
votes
5answers
107 views
Java Linked List Question
Hello,
Using a Comparator and Iterator, I am trying to add objects into a linked list in order. So far, I have the following:
public class ComparatorClass implements Comparator<Integer> {
…
1
vote
2answers
127 views
Linked list Recursion
Hi everyone. So, I was reading about linked lists and recursion. I just wanted to know why can't I use recursion in a method that is static void? Also, I was wondering in Java in the linked list …
1
vote
3answers
197 views
return a list<int> from a function c++
Every time I try to use my add function and return a list from it. I get an undefined symbol error. What am I doing wrong here.
this is the error:
Undefined first referenced
…
1
vote
1answer
99 views
Issue calling a MySQL stored procedure (with params) via a linked server (SQL Server 2005) using OPENQUERY syntax
Hello,
I'm having issues when trying to call a MySQL (5.0.77) stored procedure with parameters, via a linked server (SQL Server 2005) using the OPENQUERY syntax.
The MySQL stored procedure returns a …
0
votes
4answers
202 views
How to remove specific element on List
How to remove specific element on List?
...
java.util.List<Polygon> triangles = new LinkedList<Polygon>();
Point startDrag, endDrag, midPoint;
Polygon triangle;
....
int[] xs = { …
0
votes
5answers
895 views
Sorting a Doubly Linked List C++ Question
Trying to do it through a loop that traverses through the list.
In the loop im feeding the head node into a sorting function that I have defined and then im using strcmp to find out if which name in …
0
votes
2answers
98 views
List Linked List reference
How to get the data reference/index in Linked list?
e.g. if I have this linked list
java.util.List<Polygon> triangles = new LinkedList<Polygon>();
polygon triangle, selectedTriangle;
…
0
votes
4answers
580 views
Crystal Report subreport loses linked parameter on production server.
I have created a crystal report called 'Order Details'. I used visual studio 2005 (crystal ver 10).
The order details report uses a stored procedure to populate itself.
It contains a subreport …
1
vote
5answers
135 views
Results returned from a view using linked server may vary?
i have a view that is using linked server to retrieve data from a remote server in SQL Server. On each time viewing the view, the results returned are vary. For example, 1st time execution may return …
1
vote
4answers
1k 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 …
0
votes
2answers
802 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 …
0
votes
0answers
11 views
linking files as a HTML-file and it’s folder
In a windows-environment if you have a .html-file, you can make a copy of it and move it in the file-system. But the folder containing the additional files (images, scripts, .css-files) is moved with …
