摘要:
内容提供者 参考: Android四大组件之内容提供者--ContentProvider - java小兵 - CSDN博客http://blog.csdn.net/wodewutai17quiet/article/details/46670597 Android四大组件之内容提供者--Conten 阅读全文
摘要:
图的储存 5 71 2 21 3 41 4 72 3 12 5 23 4 13 5 6 1、邻接矩阵 1 #include <bits/stdc++.h> 2 using namespace std; 3 int n,m; 4 int al[15][15]; 5 void printAL(); 6 阅读全文
摘要:
MVC架构模式 参考: MVC框架_百度百科https://baike.baidu.com/item/MVC%E6%A1%86%E6%9E%B6/9241230?fr=aladdin MVC框架 MVC全名是Model View Controller,是模型(model)-视图(view)-控制器( 阅读全文
摘要:
最短路(临街矩阵) 求最短路: 输入数据: 5 71 2 21 3 41 4 72 3 12 5 23 4 13 5 6 Floyed: 1 #include <bits/stdc++.h> 2 using namespace std; 3 int n,m; 4 int al[15][15]; 5 阅读全文