Tagged Questions
The swap tag has no wiki summary.
61
votes
3answers
2k views
Why does swapping values with XOR fail when using this compound form?
I found this code to swap two numbers without using a third variable, using the XOR ^ operator.
Code:
int i = 25;
int j = 36;
j ^= i;
i ^= j;
j ^= i;
Console.WriteLine("i:" + i + " j:" + ...
24
votes
2answers
334 views
What can I do with a moved-from object?
Does the standard define precisely what I can do with an object once it has been moved from? I used to think that all you can do with a moved-from object is do destruct it, but that would not be ...
23
votes
6answers
34k views
how to find out which processes are swapping in linux?
Under Linux, how do I find out which process is using the swap space more?
Any scripts/links appreciated..
18
votes
7answers
2k views
Benefits of a swap function?
Browsing through some C++ questions I have often seen comments that a STL-friendly class should implement a swap function (usually as a friend.) Can someone explain what benefits this brings, how the ...
17
votes
8answers
10k views
Is there a native jQuery function to switch elements?
Can I easily swap two elements with jQuery?
I'm looking to do it with one line if possible
I have a select element and I have two buttons to move up or down the options, and I already have the ...
16
votes
6answers
2k views
Potential Problem in “Swapping values of two variables without using a third variable”
I recently came along this method for swapping the values of two variables without using a third variable.
a^=b^=a^=b
But when I tried the above code on different compilers, I got different results, ...
15
votes
3answers
299 views
Linker performance related to swap space?
Here's a conundrum for your nerdy pleasure. Sometimes it's handy to
mock up something with a little C program that uses a big chunk of
static memory. While programming one these such programs, I ...
15
votes
2answers
190 views
Why does `basic_ios::swap` only do a partial swap?
C++11 §27.5.4.2/21:
void swap(basic_ios& rhs);
Effects: The states of *this and rhs shall be exchanged, except that rdbuf() shall return the same value as it returned before the ...
14
votes
1answer
227 views
C++: efficient swap() when using a custom allocator
It seems to be the month of C++ templates for me...
I have a SecureString. SecureString looks just like a std::string, except it uses a custom allocator which zeroizes on destruction:
class ...
12
votes
4answers
214 views
Is specializing std::swap deprecated now that we have move semantics?
This is how std::swap looks like in C++11:
template<typename T>
void swap(T& x, T& y)
{
T z = std::move(x);
x = std::move(y);
y = std::move(z);
}
Do I still have to ...
12
votes
1answer
332 views
Why was std::swap moved to <utility>?
Why has std::swap been moved to the <utility> header for C++11?
N3290 C.2.7 says:
17.6.3.2
Effect on original feature: Function swap moved to a different header
Rationale: ...
12
votes
5answers
762 views
Making swap faster, easier to use and exception-safe
I could not sleep last night and started thinking about std::swap. Here is the familiar C++98 version:
template <typename T>
void swap(T& a, T& b)
{
T c(a);
a = b;
b = c;
}
...
11
votes
4answers
381 views
Move semantics == custom swap function obsolete?
Recently, many questions pop up on how to provide your own swap function. With C++11, std::swap will use std::move and move semantics to swap the given values as fast as possible. This, of course, ...
11
votes
2answers
343 views
how to provide a swap function for my class?
What is the proper way to enable my swap in STL algorithms?
1) Member swap. Does std::swap use SFINAE trick to use the member swap.
2) Free standing swap in the same namespace.
3) Partial ...
10
votes
1answer
220 views
Will std::swap still be defined by including algorithm in C++0x?
The swap function template was moved from <algorithm> to <utility> in C++0x. Does the former include the latter in C++0x? Or do they both include a common header the defines swap?
In ...
10
votes
7answers
6k views
Is it possible to write swap method in Java?
Here is the question: write a method that swaps two variables. These two variables should be primitives. It doesn't need to be generic e.g. two int variables. Is there a way?!
10
votes
5answers
3k views
Can I tell Linux not to swap out a particular processes' memory?
Is there a way to tell Linux that it shouldn't swap out a particular processes' memory to disk?
Its a Java app, so ideally I'm hoping for a way to do this from the command line.
I'm aware that you ...
9
votes
13answers
2k views
How to write a basic swap function in Java
I am new to java. How to write the java equivalent of the following C code.
public void Swap(int &p, int &q)
{
int temp;
temp = *p;
*p = *q;
*q = temp;
}
9
votes
10answers
11k views
Swap two variables without using a temp variable
I'd like to be able to swap out two variables without the use of a temp variable in C#. Can this be done?
decimal startAngle = Convert.ToDecimal(159.9);
decimal stopAngle = Convert.ToDecimal(355.87);
...
8
votes
2answers
315 views
Swapping Variables (C++, processor level)
click here to access the chatroom for this question.
I would like to swap two variables. and i would like to do it through the pipeline using a Read After Write hazard to my advantage.
Pipeline:
...
8
votes
4answers
191 views
Does STL sort use swap or binary copy?
I'm having trouble finding a good answer to this. For some reason I thought STL sort would be implemented using swap for better support of complicated types, but as I ended up digging through the code ...
8
votes
3answers
179 views
Swap trick: a=b+(b=a)*0;
a=b+(b=a)*0;
This sentence can swap the value between a and b.
I've tried it with C# and it works.
But I just don't konw how it works.
e.g.
a = 1, b = 2
I list the steps of it as below:
b = a ...
8
votes
4answers
409 views
What's a good and functional way to swap collection elements in Scala?
In a project of mine one common use case keeps coming up. At some point I've got a sorted collection of some kind (List, Seq, etc... doesn't matter) and one element of this collection. What I want to ...
7
votes
2answers
111 views
How to prohibit Java VM from creating any dump upon crash / writing sensitive data to disk
I'm writing a Java program that stores sensitive data (password and private keys) in memory. It will be deployed freely to any OS. I know that a user can create a memory dump manually on almost any ...
7
votes
3answers
264 views
STL swap on return?
sorry for such a long question but I try to be as clear as possible. This somehow follows my previous question about strings in C++. I'm trying to figure out how I could return std::string from a ...
7
votes
1answer
177 views
'Bank Switching' Sprites on old NES applications
I'm currently writing in C# what could basically be called my own interpretation of the NES hardware for an old-school looking game that I'm developing. I've fired up FCE and have been observing how ...
7
votes
2answers
1k views
Permutation of a vector
suppose I have a vector:
0 1 2 3 4 5
[45,89,22,31,23,76]
And a permutation of its indices:
[5,3,2,1,0,4]
Is there an efficient way to resort it according to the permutation thus obtaining:
...
6
votes
3answers
163 views
how to swap images on canvas in android?
I have displayed images from resource in my application as rows and columns randomly.
From those rows and columns i would like to swap the two images when user click on beside of images only.The ...
6
votes
7answers
247 views
Swapping without 3rd variable [closed]
I found one of the way to swap two numbers without using 3rd temp variable,
But I couldn't understand the logic behind this swapping.
#include <stdio.h>
int main() {
int a = 10;
...
6
votes
3answers
219 views
Should I use throw() when implementing non-throwing swap?
When implementing the non-throwing swap idiom, should I use throw()?
namespace A
{
struct B
{
void swap( B& other ) throw()
{ /* fancy stuff that doesn't throw */ }
};
void ...
6
votes
2answers
98 views
Syntax for specializing function templates
Is there a difference between the following approaches?
// approach 1
namespace std
{
template<>
void swap<Foo>(Foo& x, Foo& y) // note the <Foo>
{
...
6
votes
7answers
763 views
Does std::vector call the swap function when growing? Always or only for some types?
As far as I know I can use a vector of vectors (std::vector< std::vector >) and this will be quite efficient, because internally the elements will not be copied, but swapped, which is much faster, ...
6
votes
6answers
562 views
Overloading global swap for user-defined type
The C++ standard prohibits declaring types or defining anything in namespace std, but it does allow you to specialize standard STL templates for user-defined types.
Usually, when I want to specialize ...
6
votes
7answers
902 views
Switch pointers in a function in the C programming language
How do you switch pointers in a function?
void ChangePointers(int *p_intP1, int *p_intP2);
int main() {
int i = 100, j = 500;
int *intP1, *intP2; /* pointers */
intP1 = &i;
intP2 = &j;
...
6
votes
5answers
449 views
Pythonic Swap?
I found that i have to perform a swap in python and i write something like this.
arr[first], arr[second] = arr[second], arr[first]
I suppose this is not so pythonic. Does somebody know how to do a ...
6
votes
5answers
958 views
Swapping ms-sql tables
I want to swap to tables in the best possible manner.
I have an IpToCountry table, and I create a new one on a weekly basis according to an external CSV file which I import.
The fastest way I've ...
5
votes
2answers
60 views
Swap classes between div's
I have 2 main div's. Group1 and group2. Those group divs contain other 2 (or more) div each. All the div's inside the group's have a class of .grp_item. Now grp_item is display:none and only one div ...
5
votes
5answers
145 views
How to copy (or swap) objects of a type that contains members that are references or const?
The problem I am trying to address arises with making containers such as an std::vector of objects that contain reference and const data members:
struct Foo;
struct Bar {
Bar (Foo & foo, int ...
5
votes
2answers
199 views
Why do some people use swap for move assignments?
For example, stdlibc++ has the following:
unique_lock& operator=(unique_lock&& __u)
{
if(_M_owns)
unlock();
unique_lock(std::move(__u)).swap(*this);
__u._M_device = 0;
...
5
votes
2answers
245 views
Generic Swap difficulty
I'm coming from C++ where it's easy to do something like this:
template<class T>
void Swap(T &a, T &b)
{
T temp = a;
a = b;
b = temp;
}
and then use it to swap values in a ...
5
votes
6answers
183 views
Is there a way to code re-factor swapping integers
We have this code in many places where we swap integers if one value is higher than the other. Is there a way to re-factor this code, so it can be re-used?
int numerator2 = <some random ...
5
votes
4answers
770 views
Is there a better way to reverse an array of bytes in memory?
typedef unsigned char Byte;
...
void ReverseBytes( void *start, int size )
{
Byte *buffer = (Byte *)(start);
for( int i = 0; i < size / 2; i++ ) {
std::swap( buffer[i], buffer[size ...
5
votes
5answers
5k views
Can I swap colors in image using GD library in PHP?
I got the image like this (it's a graph):
I want to change the colours, so the white is black, the graph line is light blue, etc.. is it possible to achieve with GD and PHP?
4
votes
6answers
111 views
Is there a built in swap function in C?
Is there any built in swap function in C which works without using a third variable?
4
votes
1answer
89 views
How to swap the bitmap images on View in android?
I am working with small application for display bubbles images on android screen.I have displayed all bubbles images from resource directory.I have implemented code as follows in view class.
onDraw ...
4
votes
3answers
118 views
Variable swap with and without auxiliary variable - which is faster?
I guess you all heard of the 'swap problem'; SO is full of questions about it.
The version of the swap without use of a third variable is often considered to be faster since, well, you have one ...
4
votes
5answers
166 views
C - fastest method to swap two memory blocks of equal size?
What is the fastest way to swap two non-overlapping memory areas of equal size? Say, I need to swap (t_Some *a) with (t_Some *b). Considering space-time trade-off, will increased temporary space ...
4
votes
3answers
105 views
Swapping keys and values of a map in c++
I'm looking for a function in C++ that for swap the contents of a map ...
that is:
those that were the keys now become the items and those that the items were now the keys.
Can you tell me if there ...
4
votes
3answers
130 views
Is it OK to have a throwing swap member-implementation?
The general guideline when writing classes (using the copy-and-swap idiom) is to provide a non throwing swap member function. (Effective C++, 3rd edition, Item 25 and other resources)
However, what ...
4
votes
4answers
113 views
swap fails in case of int and works in case of string
#include <iostream>
#include <string>
#include <algorithm>
int main()
{
std::string str1 = "good", str2 = "luck";
swap(str1,str2); /*Line A*/
int x = 5, y= 3;
swap(x,y); ...