Tagged Questions
The reverse tag has no wiki summary.
23
votes
1answer
1k views
Can somebody explain this Javascript method?
Original source: http://twitter.com/tobeytailor/status/8998006366
(x=[].reverse)() === window // true
I've noticed that this behavior affects all the native types. What exactly is happening ...
21
votes
10answers
10k views
Can one do a for each loop in java in reverse order?
I need to run through a List in reverse order using Java.
So where this does it forwards:
for(String string: stringList){
//...do something
}
Is there some way to iterate the stringList in ...
14
votes
10answers
14k views
How do you reverse a string in place in JavaScript?
How do you reverse a string in place (or in-place) in JavaScript when passed to a function with a return statement? All without using the built-in functions? .reverse(), .charAt(), etc.
Thanks!
13
votes
7answers
2k views
How to generate random strings that match a given regexp?
Duplicate:
Random string that matches a regexp
No, it isn't. I'm looking for an easy and universal method, one that I could actually implement. That's far more difficult than randomly generating ...
12
votes
11answers
507 views
Reverse a string in Python two characters at a time (Network byte order)
Say you have this string:
ABCDEFGH
And you want to reverse it so that it becomes:
GHEFCDAB
What would be the most efficient / pythonic solution? I've tried a few different things but they all ...
11
votes
4answers
1k views
10
votes
2answers
719 views
How to do reverse URL search in Django namespaced reusable application
Consider that I include namespaced reusable application:
urlpatterns = patterns('',
# ella urls
url('^ella/', include('ella.core.urls', namespace="ella")),
)
Now, the Ella applications has ...
10
votes
5answers
4k views
Read a file in reverse order using python
How to read a file in reverse order using python? I want to read a file from last line to first line. Any one can help me?
Thanks in advance,
Nimmy
10
votes
3answers
569 views
How can I reverse a string that contains combining characters in Perl?
I have the the string "re\x{0301}sume\x{0301}" (which prints like this: résumé) and I want to reverse it to "e\x{0301}muse\x{0301}r" (émusér). I can't use Perl's ...
10
votes
4answers
23k views
Sorted Dictionary in C#
Is there any way I can iterate backwards (in reverse) through a SortedDictionary in c#?
Or is there a way to define the SortedDictionary in descending order to begin with?
9
votes
5answers
1k views
Django reverse() for JavaScript
In my project I have a lot of Ajax methods, with external client-side scripts (I don't want to include JavaScript into templates!) and changing URLs is kind of pain for me because I need to change ...
9
votes
3answers
2k views
How to reverse a Unicode string
It was hinted in a comment to an answer to this question that PHP can not reverse Unicode strings.
As for Unicode, it works in PHP
because most apps process it as
binary. Yes, PHP is 8-bit ...
9
votes
6answers
3k views
filter to reverse lines of a text file
I'm writing a small shell script that needs to reverse the lines of a text file. Is there a standard filter command to do this sort of thing?
My specific application is that I'm getting a list of Git ...
8
votes
7answers
4k views
How can I get the reverse url for a Django Flatpages template
How can I get the reverse url for a Django Flatpages template
7
votes
2answers
132 views
R: Reversing the data in a time series object
I figured out a way to backcast (ie. predicting the past) with a time series. Now I'm just struggling with the programming in R.
I would like to reverse the time series data so that I can forecast ...
7
votes
3answers
2k views
Reverse massive text file in Java
What would be the best approach to reverse a large text file that is uploaded asynchronously to a servlet that reverses this file in a scalable and efficient way?
text file can be massive (gigabytes ...
7
votes
4answers
4k views
C++ to UML ( Reverse engineer / Round-trip engineering )
I am looking for a tool that can reverse engineer C++ to UML (and vice-versa). However, the crucial requirement is that it can correctly parse method (member function) bodies so that dependencies are ...
6
votes
6answers
156 views
Pairs of strings in reverse order in a list of more than million strings?
Recently asked during some interview that "How to find reverse of all strings if exists in a list of more than million strings?
For E.g. str[1] = "abc", I need to check for "cba" exactly, no ...
6
votes
5answers
113 views
Reversing multiplication operation that has overflowed
Given the code:
uint Function(uint value)
{
return value * 0x123456D;
}
Inputting the value 0x300 yields the result 0x69D04700. This is only the lower 32 bits of the result.
Given the result ...
6
votes
1answer
2k views
How can I capture which direction is being panned using UIPanGestureRecognizer?
Ok so I have been looking around at just about every option under the sun for capturing multi-touch gestures, and I have finally come full circle and am back at the UIPanGestureRecognizer.
The ...
6
votes
8answers
4k views
How can I reverse a list in python?
How can i do this in python?
array=[0,10,20,40]
for (i = array.length() - 1 ;i >= 0; i--)
I need to have the elements of an array but from the end to the beginning.
6
votes
7answers
331 views
Function passing arguments in reverse
Here is my function:
void abc(char *def, unsigned int w, unsigned int x, unsigned int y, unsigned int z)
{
printf("val 1 : %d\n", w);
printf("val 2 : %d\n", x);
printf("val 3 : %d\n", y);
...
6
votes
5answers
294 views
How can you reverse traversal through a c# collection?
Is it possible to have a foreach statement that will traverse through a Collections object in reverse order?
If not a foreach statement is there any other way? Thanks.
6
votes
2answers
862 views
How to reverse String.fromCharCode?
String.fromCharCode(72) gives H. How to get number 72 from char H?
6
votes
3answers
416 views
what is the use of Long.reverse(long ) method?
I found one method in Long class
public static long reverse(long i) {..}
What is the use of this method?
6
votes
1answer
2k views
how to use django reverse a generic view?
Here is the question how do I use reverse for the generic view object_detail?
If I use it like the following, the error message will be:
NoReverseMatch at /comment/add/
Reverse for '' with arguments ...
5
votes
4answers
69 views
Does passing reverse=True when sorting a list in Python affect efficiency?
When calling sort() on a list in Python, passing cmp=f slows down the sort. Does passing reverse=True affect the efficiency of the sort in any way (or is it identical to sorting without reversing)?
5
votes
2answers
115 views
java.lang.StackOverflowError in clojure tail recursion
I encountered the StackOverflowError for the following code:
(defn recursive-reverse
([coll] (recursive-reverse [coll nil]))
([coll acc]
(if (= coll '()) acc
(recur (rest coll) (cons ...
5
votes
1answer
164 views
Slice NSArray from end of array
What is the best way to "slice" an NSArray from the end, rather than the beginning, of the array (for example, finding the subarray containing the last few elements of a NSArray of unknown length)? In ...
5
votes
2answers
548 views
Reverse a string in C solution segfaulting
I've come up with the following solution in C for reversing a string:
#include <stdio.h>
void reverse(char * head);
void main() {
char * s = "sample text";
reverse(s);
printf("%s", s);
...
5
votes
6answers
705 views
Reverse a byte using assembly language
I'm in a microprocessors class and we are using assembly language in Freescale CodeWarrior to program a 68HCS12 micro controller. Our assignment this week is to revers a byte, so if the byte was ...
5
votes
3answers
302 views
Best way to create a “reversed” list in Python?
In Python, what is the best way to create a new list whose items are the same as those of some other list, but in reverse order? (I don't want to modify the existing list in place.)
Here is one ...
5
votes
3answers
169 views
Reverse Search Best Practices?
I'm making an app that has a need for reverse searches. By this, I mean that users of the app will enter search parameters and save them; then, when any new objects get entered onto the system, if ...
5
votes
9answers
1k views
How to reverse a string in Go?
How can we reverse a simple string in Go? A Perl-like 'reverse' function does not seem to exist there.
5
votes
2answers
2k views
django 'url' template tag error
My URLconf contains this pattern:
url(r'^accounts/logout/$','django.contrib.auth.views.logout', name="logout"),
And I've trying to reverse that in a template with the URL tag like this:
<a ...
5
votes
3answers
519 views
Reverse engineering a statistics data file from my insulin pump controller
This may or may not be a grey area subject, though my intentions are certainly not, so my intention is not to stir up an ethical debate on the topic of reverse engineering.
I'm a type 1 diabetic ...
4
votes
3answers
67 views
How to traverse Linked Hash Map in reverse? [closed]
Possible Duplicate:
Iterating through a LinkedHashMap in reverse order
How to traverse Linked Hash Map in a reverse order? Is there any predefined method in map to do that?
I'm creating it ...
4
votes
5answers
96 views
arguments are reversed for a C function
I have a function that multiply two matrices A and B then prints the result.
I got two different outputs when running the program in two similar ways.
first:
FILE *f;
f = ...
4
votes
6answers
157 views
Best way to loop over python string backward
What is the best way to loop over python string backward?
The following seems a little awkward for all the need of -1 offset:
string = "trick or treat"
for i in range(len(string)-1, 0-1, -1):
...
4
votes
6answers
162 views
Reversing a string, weird output c++
Okay, so I'm trying to reverse a C style string in C++ , and I'm coming upon some weird output. Perhaps someone can shed some light?
Here is my code:
int main(){
char str[] = "string";
...
4
votes
4answers
1k views
Linux: Find all symlinks of a given 'original' file? (reverse 'readlink')
Consider the following command line snippet:
$ cd /tmp/
$ mkdir dirA
$ mkdir dirB
$ echo "the contents of the 'original' file" > orig.file
$ ls -la orig.file
-rw-r--r-- 1 $USER $USER 36 ...
4
votes
2answers
217 views
Reverse range-like functionality in php arrays
I have an array like this:
array(0, 2, 4, 5, 6, 7, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99);
and I want to get it as a the following string:
0, 2, 4-7, 90+
Any examples out there before I start ...
4
votes
5answers
820 views
why i can't reverse a list of list in python
i wanted to do something like this but this code return list of None (i think it's because list.reverse() is reversing the list in place):
map(lambda row: row.reverse(), figure)
i tried this one, ...
4
votes
3answers
3k views
Linked list recursive reverse
I was looking at the code below from stanford library:
void recursiveReverse(struct node** head_ref)
{
struct node* first;
struct node* rest;
/* empty list */
if (*head_ref == NULL)
...
4
votes
8answers
324 views
Why does *(str+i) = *(str +j) not work here?
void reverse(char *str){
int i,j;
char temp;
for(i=0,j=strlen(str)-1; i<j; i++, j--){
temp = *(str + i);
*(str + i) = *(str + j);
*(str + j) = temp;
...
4
votes
3answers
960 views
Django cross-site reverse URLs
Probably simple question and I'm just missing something, but I'm stuck out of ideas.
I have Django project serving several sites with distinct sessions.py and completely different ROOT_URLCONFs. One ...
4
votes
4answers
664 views
Value of the last element of a list
how to get the value of the last element of a List? I've noted that List.hd (or .Head) return an item, while List.tl (or .Tail) returns a List.
Is rev the List and get the hd the only way around? ...
4
votes
5answers
9k views
Reverse iteration through ArrayList gives IndexOutOfBoundsException
When I reverse iterate over an ArrayList I am getting a IndexOutOfBoundsException. I tried doing forward iteration and there is no problem. I expect and know that there are five elements in the list. ...
3
votes
2answers
70 views
Deep-reverse for trees in Scheme (Lisp)
I have a deep reverse for a basic tree data structure in Scheme
(define (deep-reverse t)
(cond ((null? t) '())
((not (pair? t)) t)
(else (cons (deep-reverse (cdr t)) (deep-reverse ...
3
votes
7answers
64 views
Reverse $.each output in jQuery
I'm making a little secret tool. The output will be in a table, and on the left-hand side I'd like to list the numbers I have stored in $.each(). So here's my code:
$.each([1,2,3,4,5], function(i, ...