1. 所有STL sort算法函数的名字列表:
函数名 功能描述
sort 对给定区间所有元素进行排序
stable_sort 对给定区间所有元素进行稳定排序
partial_sort 对给定区间所有元素部分排序
partial_sort_copy 对给定区间复制并排序
nth_element ...
分类:
其他好文 时间:
2014-08-07 18:59:20
阅读次数:
231
这道题可以用双指针的方法解,将两个指针p,q的距离保持在n-1,然后移动q到List的最后一个元素,那么此时p指向的便是the Nth node from the end。要删除这个node,要分两种情况,一种是该node为head,另一种该node是中间node。对于第一种情况,可以简单的采用以下...
分类:
其他好文 时间:
2014-08-07 18:19:10
阅读次数:
176
问题:删除距离末尾n个距离的结点分析:先找出距离末尾n个距离的结点其距离开始的距离多少,然后再删除/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ...
分类:
其他好文 时间:
2014-08-06 21:58:02
阅读次数:
199
import javax.swing.JOptionPane;public class Salary { public static void main(String[] args){ String name = JOptionPane.showInputDialog(null,...
分类:
其他好文 时间:
2014-08-06 18:47:51
阅读次数:
193
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2014-08-06 14:35:41
阅读次数:
177
/*Elevator
The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It...
分类:
其他好文 时间:
2014-08-05 19:23:40
阅读次数:
209
格式化输入输出:printf("hello world!");printf("期望薪资:%d\n",salary); //%站位符格式化传分为两种: 1.普通字符,原样输出 2.转换说明:从%开始,%-0m.nl|h+转换说明 % 站位符,转换说明的开始,不能省略 - 左对...
分类:
其他好文 时间:
2014-08-02 12:25:13
阅读次数:
197
$('li:nth-child(3n)').css('color','red');//表示第3、6、9、12……个li的颜色变为红色,n即1、2、3、4、5……
分类:
Web程序 时间:
2014-07-23 16:18:01
阅读次数:
509
Another Double pointer solution. 1A!class Solution {public: ListNode *removeNthFromEnd(ListNode *head, int n) { ListNode *p = NULL; ...
分类:
其他好文 时间:
2014-07-23 14:52:16
阅读次数:
176
题目:Given a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. Af...
分类:
编程语言 时间:
2014-07-23 12:20:26
阅读次数:
243