我想做一个应用程序,以一种简单的方式在电影院分配座位。
我有一个LinkedList,其中随机填写了0“座位可用”或1“座位已被占用”。此LinkedList由变量int“seatsTotal”生成,然后用数学填充LinkedList。具有1或0的随机函数。
这个想法是用户给出一个变量,即他们想预订多少座位,之后,一个(也许是递归的)方法将查找(例如)标有0(可用)的5个座位。
如果后面(旁边)没有5个座位可用,该方法必须寻找4个可用座位和1个单独的座位。如果没有4个座位可用,应用程序将查找3个座位和2个座位等。
我的第一个问题是;我知道我可以使用LinkedList。contains()检查是否存在某个值,但如何检查(例如)0是否连续出现5次?
我的第二个问题是;如果没有5个座位可用,我将不得不寻找4个座位和1个座位(例如),我如何处理这种方法?
我真的被这件事困住了,非常感谢你的帮助。
public class Main {
static int seatCount = 10;
int verzoekAantal = 3;
int consecutiveLength = 0; // Consecutive free seats length
int index = 0;
int startIndex = -1; // Store the start of consecutive free seats
LinkedList<Seat> consecutiveList = new LinkedList<>(); // Store startIndex -> length
public static void main(String[] args) {
// System.out.println(Arrays.toString(fillList(seatCount).toArray()));
System.out.println(fillSeats(3).toString());
}
//Deze methode geeft via de Math package een willekeurig getal, 1 (bezet) of 0 (vrij)
static int giveRandomAvailability() {
return intValue(Math.random() * 2);
}
//Deze methode creëert een LinkedList van grootte 'seatCount' en vult de plaatsen een voor een met 0 of 1 op willekeur
static LinkedList fillList(int seats){
LinkedList<Seat> list = new LinkedList<Seat>();
seats = seatCount;
for(int i = 0; i < seats; i++){
Seat seat = new Seat();
seat.availability = giveRandomAvailability();
seat.seatNumber = (i + 1);
list.add(seat);
}
return list;
}
static Map fillSeats(int n){
LinkedList<Seat> newList = fillList(seatCount);
int consecutiveLength = 0; // Consecutive free seats length
int index = 0;
int startIndex = -1; // Store the start of consecutive free seats
int remConsecutiveLength = 0;
System.out.println(newList.toString());
Map<Integer, Integer> consecutiveMap = new HashMap<>(); // Store startIndex -> length
for (Seat seat : newList) {
if (seat.IsFree()) {
if (startIndex < 0) {
startIndex = index;
}
consecutiveLength ++;
} else {
consecutiveMap.put(startIndex + 1, consecutiveLength);
if (consecutiveLength >= n) {
System.out.println("SEATS FOUND, " + n + " seats available counting from " + (seat.seatNumber - n));
}
// if(consecutiveLength > remConsecutiveLength) {
// remConsecutiveLength = consecutiveLength;
// }
startIndex = -1;
consecutiveLength = 0;
}
index++;
}
if (startIndex >= 0) {
consecutiveMap.put(startIndex + 1, consecutiveLength);
}
// if (remConsecutiveLength < n) {
// while(n > 1) {
// System.out.println("Looking for seats which are not next to eachother");
// n--;
// fillSeats(n);
// }
// }
Map<Integer, Integer> treeMap = new TreeMap<Integer, Integer>(consecutiveMap);
return treeMap;
}
}
您需要找到连续的座位并存储这些项目。
假设您正在将座位信息存储在seat
类中,我们有列表
int consecutiveLength = 0; // Consecutive free seats length
int index = 0;
int startIndex = -1; // Store the start of consecutive free seats
Map<Integer, Integer> consecutiveMap = new HashMap<>(); // Store startIndex -> length
for (Seat seat : seats) {
if (seat.isFree()) {
if (startIndex < 0) {
startIndex = index;
}
consecutiveLength ++;
} else {
consecutiveMap.put(startIndex, consecutiveLength);
if (consecutiveLength == n) {
// Found, do something here
}
// Reset
startIndex = -1;
consecutiveLength = 0;
}
index++;
}
在此之后,您可以访问
连续地图
中的所有连续长度
。
您也可以通过上述
ore
块中的test连续长度==n
立即返回。
通过访问每个数量的
连续长度
,您可以选择子选项(4个连续1个单一等)
编辑
运行代码后,您的连续映射将如下所示
{1 -> 1, 3 -> 4, 8 ->1, ...}
上面写着:在索引1处,有一个连续的座位。
在索引3处,有一个连续的4个座位区。。。。
您可以通过连续映射访问列表中的连续长度。values()
它将为您提供<代码>{1,4,1,2,…} 。
您的问题简化为:在数组中选择几个项目,使它们的总和为n
。您甚至可以对它们进行排序,以从较大到较小的连续长度进行选择。
这很简单。
您也可以在这里施暴,因为每排座位的数量不是很大。
回答问题的第一部分:
如果你想找到n个连续的空座位,你必须遍历你的LinkedList并计数空闲座位,直到你找到n个连续的座位,或者你遍历所有座位。
public List<Seat> findNConsecutiveEmptySeats(List<Seat> seats, int n) {
List<Seat> freeSeats = new LinkedList<Seat>();
for(Seat s : seats) {
if(s.isEmpty()) {
freeSeats.add(s);
} else {
freeSeats.clear();
}
if(freeSeats.size() >= n) {
break;
}
}
if(freeSeats.size() < n) {
freeSeats.clear();
}
return freeSeats;
}
要回答问题的第二部分,需要使用n=5调用前面的方法。如果返回的列表包含5个座位,很好,您找到了,请返回它。如果它包含空列表,请使用n=4然后n=1调用该方法。等
public List<Seat> findNEmptySeats(List<Seat> seats, int n) {
List<Seats> freeSeats = findNConsecutiveEmptySeats(seats, n);
if(freeSeats.size() == n) {
return freeSeats;
}
freeSeats = findConsecutiveEMptySeats(seats, n-1);
freeSeats.addAll(findConsecutiveEMptySeats(seats, 1));
if(freeSeats.size() == n) {
return freeSeats;
}
freeSeats = findConsecutiveEMptySeats(seats, n-2);
freeSeats.addAll(findConsecutiveEMptySeats(seats, 2));
if(freeSeats.size() == n) {
return freeSeats;
}
...
}
注意:此代码不完整,例如在查找n-1个座位后,您需要在查找1个座位之前删除找到的座位,否则您可能会返回一个已经找到的座位。
我有四个UITextFields我想在UIAlertView中使用,目前这是它看起来的样子 我希望能够做的是限制每个框为4个字符,每个字段一旦达到4个字符的限制,那么我希望下一个UITextField成为第一个响应器。 我也希望能够做到这一点反过来,所以如果字符正在删除,一旦没有字符可用在第二个字段,到第一个,并开始删除,等等。
我有下面的代码,这是有点难看的多个空检查。 所以我尝试使用,如下所示,但是如果有人阅读我的代码,仍然很难理解。 在Java9中,我们可以使用和,但是在Java8中还有其他方法吗?
我对简单的单链表有很大的困惑,比如:在Java中。 节点类: 链表类: 这里有一个很大的混乱,如果链表是空的,并且我试图添加新节点例如: 第一个节点的数据为1,第一个节点的下一个为空,最后一个节点的数据为1,最后一个节点的下一个为空 现在,如果我添加了一个新节点,例如: 最后一个节点的数据将是2,最后一个节点的下一个将是null,第一个节点的数据仍然是1,但第一个节点的下一个将是tail,这是如何
通常,我可以看到如下代码结构: 我想知道是否有任何广泛使用的库(Google、Apache等)可以同时检查多个对象的空性,例如: 或 更新: > 我完全知道怎么自己写 我知道这可能是程序结构不佳的结果,但在这里不是个案 让我们使它更具挑战性,并用这样的内容替换原始示例: 更新2: 我已经为Apache Commons Lang库创建了一个pull请求,以修复这个漏洞: 问题:https://iss
问题内容: 我想使用Spring Security JSP标签库根据角色有条件地显示一些内容。但是在Spring Security 3.1.x中,仅检查一个角色。 我可以使用,但 ifAllGranted 已弃用。 有什么帮助吗? 问题答案: 春季安全性中有一个特殊的安全性表达: hasAnyRole(角色列表) -如果已授予用户指定的任何角色(以逗号分隔的字符串 列表形式) ,则为true。 我
正如您所看到的,我已经尝试实现NPE但没有成功。如何在一个JUnit方法中检查多个异常?我在网上检查了一些操作方法,但也失败了。