Top "Swap" questions

Changing position of two items.

convert big endian to little endian in C [without using provided func]

I need to write a function to convert big endian to little endian in C. I can not use any …

c swap endianness
How to find out which processes are using swap space in Linux?

Under Linux, how do I find out which process is using the swap space more?

linux memory swap
Is there a standardized method to swap two variables in Python?

In Python, I've seen two variable values swapped using this syntax: left, right = right, left Is this considered the standard …

python syntax swap conventions
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. void Swap(int *p, …

java swap
Swap two variables without using a temporary variable

I'd like to be able to swap two variables without the use of a temporary variable in C#. Can this …

c# algorithm swap
How to swap two variables in JavaScript

I have this two variables: var a = 1, b = 2; My question is how to swap them? Only this variables, not any …

javascript variables swap
C++ trying to swap values in a vector

This is my swap function: template <typename t> void swap (t& x, t& y) { t temp = …

c++ vector swap
Is there a native jQuery function to switch elements?

Can I easily swap two elements with jQuery? I'm looking to do this with one line if possible. I have …

jquery swap javascript
Replace Div with another Div

I have this thing I m trying to do. I have a main picture of a map and within that …

jquery html swap
Java method to swap primitives

how do I make my swap function in java if there is no method by which we can pass by …

java swap