Quantcast
Channel: User rmn - Stack Overflow
Browsing all 39 articles
Browse latest View live
↧

Comment by rmn on Why is the size of a character sizeof('a') different in C...

This is pretty much a generic answer given the above code, :P

View Article


Comment by rmn on A C++ syntax question involving non trivial templating and...

Your answer to question two seems reasonable, thanks. However, the syntax of question 1 seems pretty much off to me.. Even more so since the template argument (typename S) isn't used in the friend...

View Article


Comment by rmn on A C++ syntax question involving non trivial templating and...

It's not the syntax itself that I'm asking about, but its difference from what I would guess it should be - from looking at the rest of the language. Perhaps you disagree, which is - as you said...

View Article

Comment by rmn on A C++ syntax question involving non trivial templating and...

The line 'template <typename S>' would define the relevant S, I don't understand your point. It is just the same as if I would define two clashing names anywhere in the class.. You explanation to...

View Article

Comment by rmn on Unit Testing Private Method in Resource Managing Class (C++)

It doesnt matter. private/public access is only enforced by the compiler, and doesnt exist in run time. so it would work just the same. Just use this define before the include of the header you're...

View Article


Comment by rmn on Help with geometry problem - don't have any idea

@poita incorrect. each flood fill should just overrun every square it gets to, besides the walls ofcourse. then you have at most 1 flood fill per square, which is very reasonable, and alot easier to...

View Article

Comment by rmn on Sleeping in the kernel using set_current_state

I'm not sure you're right -- what about interrupts and preemption (after your time slice is up) ?

View Article

Comment by rmn on Sleeping in the kernel using set_current_state

the question is what happens if we get rescheduled (due to normally consuming our time slice, or because an interrupt has occurred) after line 4254 and before line 4255

View Article


Comment by rmn on How to expand variadic arguments in a macro?

Seems very similar to efesx.com/2010/08/31/overloading-macros and efesx.com/2010/07/17/… You are most welcome to have a look.

View Article


Comment by rmn on compare function in inbuilt qsort function

@JimBalter You're right, I haven't noticed its C - my apologies. I've upvoted your reply so its first, and I'll let mine stay.. maybe he'll upgrade to c++ sometime :)

View Article

Comment by rmn on Maximum size of Receive Buffer/Queue in udp socket

@AyeshaHassan, right. There's a shared socket buffer maintained by the operating system, from which you pull data through recvfrom() and the likes.

View Article

Comment by rmn on Hanoi Tower amount of combination?

@TimurKukharskiy, you are slightly wrong since to store values between 0 and 1000 you'll need at least a short (two bytes, since 1 byte isn't enough), and that will lead to roughly 2KB of storage for...

View Article

Comment by rmn on comparing two vectors, make it more efficient

I imagine the first thing any such implementation would do is compare array sizes before looping tho :)

View Article


Answer by rmn for Is there a way to have a single static variable for a...

The syntax fortemplate <class T> friend class Foo<T>;istemplate <class T> friend class Foo;(which means that every instantiation of Foo is a friend of the class you define it in)So...

View Article

Answer by rmn for Find duplicates between arrays

What you are looking for is just a set of the two arrays (set contains every element once at most). The solution in c++:#include <set>int main () { int a[] = { 1,2,3 }; int b[] = { 4,2,3 };...

View Article


Answer by rmn for Working program gets an Illegal instruction fault on 'clean...

Quoting: "The development machine is an Intel Core2 Quad and the clean machine is a Pentium 4 Dual. I assume g++ defaults to using a common subset of x86 instructions and that the processor difference...

View Article

Answer by rmn for c++ deque vs queue vs stack

deque supports insert/pop from back & frontqueue only supports insert to the back, and pop from the front. You know, a FIFO (first in first out).

View Article


Answer by rmn for Program crash with pointers trying to make strcpy-like

Fixed: #include <iostream> using namespace std; void mycpy(char *b , char *a); int main() { char *original = "this is a text" ; char copied[30]; // you need to actualy allocate space // (this is...

View Article

Answer by rmn for C++ Declaring int in the for loop

It's all the same.

View Article

Answer by rmn for Disjoint Set ADT Implementation in C++

You have way too many requirements, we're not here to do your homework for you.Have a look at http://en.wikipedia.org/wiki/Disjoint-set_data_structure

View Article
Browsing all 39 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>