資料結構上機實驗3——圖——外賣成本最優問題
graph.h
#ifndef GRAPH_H
#include <stdio.h>
#include <stdlib.h>
#define MaxSize 500
#define MaxPoint 10000
enum graph_val { hasmoved = -1, can = 0, block = 1, shop = 2, user = 3 };
int vis[MaxSize][MaxSize];//記錄已走過
typedef struct {
int node[MaxSize][MaxSize];//路圖
int milk_count;//奶茶店個數
int user_count;//客戶個數
int block_count;//不可走個數
int edge_count;//邊長度(不含邊框)
}Graph;
#endif // !GRAPH_H
queue.h
#ifndef QUEUE_H
#include "graph.h"
typedef struct
{
int x, y, w;
}Point;
typedef struct
{
Point data[MaxPoint];
int front, rear;
int count;//佇列長度
}QuType;
void InitQueue(QuType*& q)
{
q = (QuType*)malloc(sizeof(QuType));
q->front = q->rear = -1;
q->count = 0;
}
void DestroyQueue(QuType*& q)
{
free(q);
}
bool QueueEmpty(QuType* q)
{
return q->count != 0;
}
bool enQueue(QuType*& q, Point e)
{
if (q->rear == MaxPoint - 1)
{
return false;
}
q->rear++;
q->data[q->rear] = e;
q->count++;
return true;
}
Point deQueue(QuType*& q)
{
Point tmp;
tmp.x = -1;
tmp.y = -1;
tmp.w = -1;
if (q->front == q->rear)
{
return tmp;
}
q->front++;
tmp = q->data[q->front];
q->count--;
return tmp;
}
Point getTop(QuType* q) {
return q->data[q->front];
}
#endif // !QUEUE_H
main.cpp
#include "queue.h"
QuType* qu;
int n, m, k, d;
int dx[] = { 0, 0, 1, -1 };
int dy[] = { 1, -1, 0, 0 };
int bfs(Graph* g) {
int ans = 0;
while (QueueEmpty(qu)) {
Point p = getTop(qu);
deQueue(qu);
int i;
Point cur;
for (i = 0; i < 4; i++) {
int xx = p.x + dx[i];
int yy = p.y + dy[i];
if (xx >= 1 && xx <= g->edge_count && yy >= 1 && yy <= g->edge_count && !vis[xx][yy]) {
ans += g->node[xx][yy] * (p.w + 1);
vis[xx][yy] = 1;
cur.x = xx;
cur.y = yy;
cur.w = p.w + 1;
enQueue(qu, cur);
}
}
}
return ans;
}
int main() {
Graph* g = (Graph*)malloc(sizeof(Graph));
InitQueue(qu);
printf("請分別輸入方格圖大小、奶茶分店數量、客戶數量、不能經過的點的數量:");
scanf("%d %d %d %d", &n, &m, &k, &d);
g->edge_count = n;
g->milk_count = m;
g->user_count = k;
g->block_count = d;
//初始化內容
for (int i = 1; i < n + 1; i++) {
for (int j = 1; j < n + 1; j++) {
g->node[i][j] = 0;
}
}
//初始化奶茶店
for (int i = 0; i < g->milk_count; i++) {
int x, y;
printf("請輸入第%d個奶茶店的x、y座標:", i + 1);
scanf("%d %d", &x, &y);
Point shop;
shop.x = x;
shop.y = y;
shop.w = 0;
enQueue(qu, shop);
}
//初始化客戶
for (int i = 0; i < g->user_count; i++) {
int x, y, count;
printf("請輸入第%d個客戶的x、y座標和訂單數:", i + 1);
scanf("%d %d %d", &x, &y, &count);
g->node[x][y] += count;
}
//初始化不可走
for (int i = 0; i < g->block_count; i++) {
int x, y;
printf("請輸入第%d個不可走的x、y座標:", i + 1);
scanf("%d %d", &x, &y);
vis[x][y] = 1;
}
printf("\n最低總成本為:%d\n", bfs(g));
DestroyQueue(qu);
}
相關文章
- 迷宮問題【資料結構實驗報告】資料結構
- (C++)資料結構實驗二——迷宮問題C++資料結構
- 解決外賣配送最後一公里:外賣櫃存在哪些問題
- 資料結構實驗(4)資料結構
- 資料結構實驗1資料結構
- 資料結構學習(C++)——圖【3】(無向圖)(上) (轉)資料結構C++
- 資料結構實驗三 2024_樹與圖實驗資料結構
- 大資料實驗問題大資料
- 資料結構實驗之圖論二:圖的深度遍歷資料結構圖論
- 資料結構實驗課五-1資料結構
- 資料結構實驗三:線性表綜合實驗資料結構
- F - 資料結構實驗之圖論六:村村通公路資料結構圖論
- 03.Java資料結構問題Java資料結構
- 資料結構括號匹配問題資料結構
- 【資料結構】停車場問題資料結構
- 資料結構——RMQ(ST表)問題資料結構MQ
- 圖論 最小生成樹問題(最優連線問題)圖論
- [JLU] 資料結構與演算法上機題解思路分享-資料結構演算法
- 資料結構連結串列各種問題資料結構
- JavaScript資料結構——圖的實現JavaScript資料結構
- 資料結構 - 圖資料結構
- 資料結構實驗:連結串列的應用資料結構
- iPhone的真實成本–資料資訊圖iPhone
- IT名企演算法與資料結構題目最優解--棧和佇列演算法資料結構佇列
- 資料結構實驗之連結串列八:Farey序列資料結構
- 資料結構 - 圖之程式碼實現資料結構
- [JLU] 資料結構與演算法上機題解思路分享-第三次上機資料結構演算法
- 【資料結構——圖和圖的儲存結構】資料結構
- 資料結構:圖(Graph)資料結構
- 資料結構之圖資料結構
- 資料結構實驗 多維陣列的實現資料結構陣列
- 資料結構實驗 二維矩陣的實現資料結構矩陣
- 資料結構實驗之佇列一:排隊買飯遇到的函式傳值問題資料結構佇列函式
- Flowtown:Facebook上營銷的成本–資料資訊圖
- 【dawn·資料結構】迷宮問題(C++)資料結構C++
- 資料結構初階--堆排序+TOPK問題資料結構排序TopK
- 資料結構實驗一:順序表的建立與操作實現、順序表實現約瑟夫環問題資料結構
- 演算法與資料結構番外(1):優先佇列演算法資料結構佇列