Pinned Repositories
80X86ALP-answer
《80X86汇编语言程序设计》课后习题答案(个人版本)
A-star
A-star启发式搜索算法,用于求解最短路径。
awesome-hust
HUST experiments, reports, and useful tools.
awesome-wechat-weapp
微信小程序开发资源汇总 :100:
BeijingSubway
# 北京地铁最短路径 ### 一、项目背景和要求 北京的地铁交通网络已经基本成型,建成的地铁线十多条,站点上百个,现需建立一个换乘指南打印系统,通过输入起点和终点站,打印出地铁换乘指南,指南内容包括起点站、换乘站、终点站。 ### 二、功能介绍 * 地铁指定线路的查看 * 换乘指南查询 ### 三、开发平台 * 开发语言 Java1.8 * 集成开发环境:IDEA ### 四、实现算法 * BFS深度优先算法 ### 五、类职责划分 ***Station 类 存放站点信息** `public class Station { private String StationName;/*记录站点名*/ private boolean Visited;/*是否被遍历过*/ private String PreStation;/*便于搜索是返回和记录*/ List<String> StationLine = new ArrayList<>();/*该站点存在的所有线路信息*/ List<Station> NearStation = new ArrayList<>();/*该站点存在的所有邻近站点信息*/ }` ***Line 类 存放线路信息** `public class Line { String LineName;/*记录当前线路名*/ ArrayList<String> Station = new ArrayList<>();/*记录该线路中所有的站点名*/ }` [*Main 类 实现程序运转的主要功能]() `public class Main { static ArrayList<Line> LineList = new ArrayList<>();//存放所有线路的列表 static ArrayList<Station> StationList = new ArrayList<>();//存放线路站点的列表 static HashMap<String, Station> stationHashMap = new HashMap<>();//存放对应站点的Hash /*对文件进行读入和存储操作*/ public static void SubwayMessage(String pathname){}; /*输出线路信息*/ public static void PrintMessage(String StartStation, String EndStation){}; }`
CCF-CSP-and-PAT-solution
CCF CSP和PAT考试题解(使用C++11语法)
codecraft
最短路径
Computer-Graphics
CS-Notes
:books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计、Java、Python、C++
developer-roadmap
Roadmap to becoming a web developer in 2020
pj4746's Repositories
pj4746/pj47461
1
pj4746/wpf-abp
Cross-platform mobile project and WPF client based on ABP framework Xamarin.Forms
pj4746/Prism-Samples-Wpf
Samples that demonstrate how to use various Prism features with WPF
pj4746/Microsoft-Activation-Scripts
A Windows and Office activator using HWID / KMS38 / Online KMS activation methods, with a focus on open-source code and fewer antivirus detections.
pj4746/redis
Native port of Redis for Windows. Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs. This repository contains unofficial port of Redis to Windows.
pj4746/hust-lab
Labs for Computer Science - c, asm, data structure, csapp, hsi, matlab, digital logic, verilog, compilers, operating systems
pj4746/miniob
pj4746/awesome-wechat-weapp
微信小程序开发资源汇总 :100:
pj4746/HUSTCS
华中科技大学CS文件存留,包含相关资料,代码以及报告
pj4746/SimpleBot
pj4746/frontend-bootcamp
Frontend Workshop from HTML/CSS/JS to TypeScript/React/Redux
pj4746/CCF-CSP-and-PAT-solution
CCF CSP和PAT考试题解(使用C++11语法)
pj4746/CS-Notes
:books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计、Java、Python、C++
pj4746/HUSTER-CS
华中科技大学 计算机科学与技术学院 学习资料💯 以及 实验资料💾
pj4746/mini3d
3D Software Renderer in 700 Lines !!
pj4746/developer-roadmap
Roadmap to becoming a web developer in 2020
pj4746/BeijingSubway
# 北京地铁最短路径 ### 一、项目背景和要求 北京的地铁交通网络已经基本成型,建成的地铁线十多条,站点上百个,现需建立一个换乘指南打印系统,通过输入起点和终点站,打印出地铁换乘指南,指南内容包括起点站、换乘站、终点站。 ### 二、功能介绍 * 地铁指定线路的查看 * 换乘指南查询 ### 三、开发平台 * 开发语言 Java1.8 * 集成开发环境:IDEA ### 四、实现算法 * BFS深度优先算法 ### 五、类职责划分 ***Station 类 存放站点信息** `public class Station { private String StationName;/*记录站点名*/ private boolean Visited;/*是否被遍历过*/ private String PreStation;/*便于搜索是返回和记录*/ List<String> StationLine = new ArrayList<>();/*该站点存在的所有线路信息*/ List<Station> NearStation = new ArrayList<>();/*该站点存在的所有邻近站点信息*/ }` ***Line 类 存放线路信息** `public class Line { String LineName;/*记录当前线路名*/ ArrayList<String> Station = new ArrayList<>();/*记录该线路中所有的站点名*/ }` [*Main 类 实现程序运转的主要功能]() `public class Main { static ArrayList<Line> LineList = new ArrayList<>();//存放所有线路的列表 static ArrayList<Station> StationList = new ArrayList<>();//存放线路站点的列表 static HashMap<String, Station> stationHashMap = new HashMap<>();//存放对应站点的Hash /*对文件进行读入和存储操作*/ public static void SubwayMessage(String pathname){}; /*输出线路信息*/ public static void PrintMessage(String StartStation, String EndStation){}; }`
pj4746/awesome-hust
HUST experiments, reports, and useful tools.
pj4746/HUSTDoubleDegree
华中科技大学计算机科学与技术双学位
pj4746/maze_miniprogram
微信小程序/canvas/迷宫
pj4746/TSP_Ant
蚁群算法求城市最短路径
pj4746/v2rayN
pj4746/UPC-Map-V2.0
校园地图路径规划,最短路计算(基于Dijkstra算法)
pj4746/Dijkstra_shortest_path
Implementation of the Dijkstra algorithm for shortest path problem
pj4746/MiGong
迷宫-一款独立开发的微信小游戏,核心玩法已完成,养成系统待开发.....
pj4746/MazeCreater
自己写的迷宫(微信小程序版)
pj4746/HUST-Homeworks
HUST Homeworks(Course design / Reports / Labs / etc. )
pj4746/QT
城市最短路径
pj4746/ostep-translations
Various translations of OSTEP can be found here. Help the cause and contribute!
pj4746/Terminal
The new Windows Terminal, and the original Windows console host -- all in the same place!