码迷,mamicode.com
首页 >  
搜索关键字:list item    ( 66280个结果
[leetcode]Remove Nth Node From End of List @ Python
原题地址:http://oj.leetcode.com/problems/remove-nth-node-from-end-of-list/题意:Given a linked list, remove thenthnode from the end of list and return its he...
分类:编程语言   时间:2014-05-01 06:42:15    阅读次数:332
遍历文件
void listFiles(){ namespace fs = boost::filesystem; boost::filesystem::path path=boost::filesystem::current_path(); fs::directory_iterator item_beg...
分类:其他好文   时间:2014-05-01 05:23:07    阅读次数:310
LeetCode:Rotate List
题目链接Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.首...
分类:其他好文   时间:2014-05-01 04:52:19    阅读次数:288
Reverse Linked List II
链表反转的简单变形。
分类:其他好文   时间:2014-05-01 03:46:43    阅读次数:248
Leetcode:Reorder List 单链表重排序
Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes' values. For example, Given {1,2,3,4}, reorder it to ...
分类:其他好文   时间:2014-04-29 13:42:21    阅读次数:427
如何从一个数组中生成随机数组
有一个需要,给定一个数组,从中生成要求个数的随机数组,不重复,即getRandomArray(int[] originalArray,int number) 这样的一个函数。想了一下,可以这样做: 把数组元素放到一个List中从List中随机取一个数把取到的数从List中删除重复上述过程 代码如下: import java.util.ArrayList; import java.ut...
分类:其他好文   时间:2014-04-29 13:41:20    阅读次数:295
Json解析tool工具
JsonTools package com.example.weather_json.tools; import java.util.ArrayList; import java.util.List; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import co...
分类:Web程序   时间:2014-04-29 13:37:21    阅读次数:1039
struts2 <s: select 标签取值
JSP页面: listValue="name"  key="name"   cssStyle="width:130px"> 后台: private  List navs; navs=navservice.allNav();调用dao层取得所有的值集合。 注: listValue="name"通过设置这个属性显示所有的select内容...
分类:其他好文   时间:2014-04-29 13:32:23    阅读次数:236
C++ Primer 学习笔记_48_类与数据抽象 --类的定义和声明【下】
类--类的定义和声明【下】三、关于类定义的更多内容【接上】//P374 习题12.8 class Sales_item { public: double avg_price() const; bool same_isbn(const Sales_item &rhs) const { return rhs.isbn == isbn; } Sa...
分类:编程语言   时间:2014-04-29 13:28:21    阅读次数:324
C++ Primer 学习笔记_47_类与数据抽象 --类的定义和声明【上】
类--类的定义和声明【上】引言:   在C++中,用类来定义自己的抽象数据类型。通过定义类型来对应所要解决的问题中的各种概念,可以使我们更容易编写、调试和修改程序。可以使得自己定义的数据类型用起来与内置类型一样容易和直观。 一个前面曾经定义过的类:class Sales_item { private: std::string isbn; unsigned units_sold; ...
分类:编程语言   时间:2014-04-29 13:21:21    阅读次数:347
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!