There are N gas stations along a circular route, where the amount of gas at station i is gas[i].
You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to
...
分类:
其他好文 时间:
2014-12-13 09:39:54
阅读次数:
182
Car.jarclass Car{ private String brand; private String prod; private double price; //省略set/get方法 }Person.jarclass Person{ private String...
分类:
编程语言 时间:
2014-12-13 09:33:32
阅读次数:
161
Hi,Joy,I am sorry that my Porsche Piwis Tester II from your shop said “No VCI has been detected” when I was trying to read car ECU. I bought the tool ...
分类:
其他好文 时间:
2014-12-11 10:17:08
阅读次数:
194
一.类的声明和实现#import // : NSObject 目的是:让Car这个类具备创建对象的能力@interface Car : NSObject{ // 用来声明对象属性(实例变量\成员变量,默认会初始化为0) // @public可以让外部的指针间接访问对象内部的成员变量 ...
分类:
其他好文 时间:
2014-12-10 13:57:21
阅读次数:
192
来自练习2.18请定义出过程reverse,它以一个表为参数,返回的表中所包含的元素与参数表相同,但排列顺序与参数表相反:(reverse (list 1 4 9 16 25))(25 16 9 4 1) 有几个难点:0、不能采用(cons (reverse (cdr lst) ) (car ls....
分类:
其他好文 时间:
2014-12-10 12:16:44
阅读次数:
150
首先,让我们来看几个内建函数(cons x y),作用是把x和y绑定成一个序对(car z),作用是提取z序对的第一个元素(cdr z),作用是提取z序对的第二个元素容易看出,这个东西有点类似OO语言里的类,car和cdr是get方法,x和y是成员变量。但是,但是!函数式的编程方式,居然可以利用过程...
分类:
其他好文 时间:
2014-12-09 12:07:25
阅读次数:
185
题目连接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1333
题意:给你一个n个顶点,m条边(每条边都有三个参数,开放时间,关闭时间,和通过这条边的时间)的有向图;
要你求从s 到 t 的最短路;dijkstra算法可解;
坑点:我用的是队列优化+Vector存储每条边; 在每次调用dijkstra后,必须初始化邻接表,在这个地方坑了好...
分类:
其他好文 时间:
2014-12-08 15:35:11
阅读次数:
150
9.5Givenasortedarrayofstringswhichisinterspersedwithemptystrings,writeamethodtofindthelocationofagivenstring.Example:find“ball”in[“at”,“”,“”,“”,“ball”,“”,“”,“car”,“”,“”,“dad”,“”,“”]willreturn4Example:find“ballcar”in[“at”,“”..
分类:
其他好文 时间:
2014-12-05 19:50:00
阅读次数:
135
一、计数器的基本操作1> retain : +12> release :-13> retainCount : 获得计数器二、set方法的内存管理1> set方法的实现- (void)setCar:(Car *)car{ if ( _car != car ) { [_car ...
分类:
其他好文 时间:
2014-12-05 10:37:29
阅读次数:
144
1.定义事件参数public class CarInfoEventArgs:EventArgs{ public string Car{get;private set;} public CarInfoEventArgs(string car){Car=car;}}2.事件源public class.....
分类:
其他好文 时间:
2014-12-04 09:57:28
阅读次数:
192