Questions tagged «reverse»

重新排列顺序的顺序,使最终顺序为原始图像的镜像。



11
jQuery .each()向后
我正在使用JQuery选择页面上的一些元素,然后在DOM中移动它们。我遇到的问题是我需要按照JQuery自然希望选择它们的相反顺序来选择所有元素。例如: <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> <li>Item 5</li> </ul> 我想选择所有li项目并在它们上使用.each()命令,但是我要从项目5开始,然后从项目4开始,等等。这可能吗?


6
Python列表按降序排序
如何按降序对列表进行排序? timestamp = [ "2010-04-20 10:07:30", "2010-04-20 10:07:38", "2010-04-20 10:07:52", "2010-04-20 10:08:22", "2010-04-20 10:08:22", "2010-04-20 10:09:46", "2010-04-20 10:10:37", "2010-04-20 10:10:58", "2010-04-20 10:11:50", "2010-04-20 10:12:13", "2010-04-20 10:12:13", "2010-04-20 10:25:38" ]
334 python  sorting  reverse 

17
反向角度重复
我怎样才能得到一个角度反向阵列?我正在尝试使用orderBy过滤器,但是它需要一个谓词(例如'name')进行排序: <tr ng-repeat="friend in friends | orderBy:'name':true"> <td>{{friend.name}}</td> <td>{{friend.phone}}</td> <td>{{friend.age}}</td> <tr> 有没有一种方法可以反转原始数组,而不进行排序。像那样: <tr ng-repeat="friend in friends | orderBy:'':true"> <td>{{friend.name}}</td> <td>{{friend.phone}}</td> <td>{{friend.age}}</td> <tr>

12
如何在Java中的列表上获得反向列表视图?
我想在列表上有一个反向列表视图(以与List#sublist在列表上提供子列表视图类似的方式)。是否有提供此功能的功能? 我既不想复制列表,也不想修改列表。 在这种情况下,如果我至少可以在列表上获得一个反向迭代器就足够了。 另外,我知道自己如何实施。我只是问Java是否已经提供了类似的东西。 演示实现: static <T> Iterable<T> iterableReverseList(final List<T> l) { return new Iterable<T>() { public Iterator<T> iterator() { return new Iterator<T>() { ListIterator<T> listIter = l.listIterator(l.size()); public boolean hasNext() { return listIter.hasPrevious(); } public T next() { return listIter.previous(); } public void remove() { listIter.remove(); } }; } …


13
可以以相反的顺序为Java中的每个循环做一个吗?
我需要使用Java以相反的顺序遍历一个List。 所以它转发到哪里: for(String string: stringList){ //...do something } 是否有某种方法可以针对每种语法以相反的顺序迭代stringList ? 为了清楚起见:我知道如何以相反的顺序迭代列表,但想知道(出于好奇的缘故)如何针对每种样式进行处理。
148 java  reverse  foreach 


4
正确的方法来反转pandas.DataFrame?
这是我的代码: import pandas as pd data = pd.DataFrame({'Odd':[1,3,5,6,7,9], 'Even':[0,2,4,6,8,10]}) for i in reversed(data): print(data['Odd'], data['Even']) 当我运行此代码时,出现以下错误: Traceback (most recent call last): File "C:\Python33\lib\site-packages\pandas\core\generic.py", line 665, in _get_item_cache return cache[item] KeyError: 5 During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\*****\Documents\******\********\****.py", line 5, in …
117 python  pandas  reverse 


7
c#尝试反向列表
public class CategoryNavItem { public int ID { get; set; } public string Name { get; set; } public string Icon { get; set; } public CategoryNavItem(int CatID, string CatName, string CatIcon) { ID = CatID; Name = CatName; Icon = CatIcon; } } public static List<Lite.CategoryNavItem> getMenuNav(int CatID) { …
90 c#  list  reverse 

3
在Python中创建“反向”列表的最佳方法?
在Python中,创建一个与其他列表的项目相同但顺序相反的新列表的最佳方法是什么?(我不想修改现有列表。) 这是我想到的一种解决方案: new_list = list(reversed(old_list)) 也可以复制old_list然后在原处反向复制: new_list = list(old_list) # or `new_list = old_list[:]` new_list.reverse() 有没有我忽略的更好的选择?如果不是,是否有令人信服的理由(例如效率)来使用上述方法中的一种?

4
我如何使用Django URLResolvers反向传递GET参数
我正在使用django 1.2,并使用urlresolvers反向方法从一个视图转到另一个视图。 url = reverse(viewOne) 我想传递一个get参数,例如 名称=“乔” 这样在viewOne中,如果我愿意 def viewOne(request): request.GET['name'] 我会得到 joe 我怎么做 ?
81 django  get  reverse 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.