我们来看个非常简单的例子。有一个”国家”(Country)类,我们将要用Country对象作为key,它的首都的名字(String类型)作为value。下面的例子有助于我们理解key-value对在HashMap中是如何存储的。 1. Country.java 1 2 3 4 5 6 7 8 9 1 ...
分类:
其他好文 时间:
2018-04-09 18:57:32
阅读次数:
128
通过if else 来做的一个小型简单的国家首都查询 static void Main(string[] args) { //国家首都查询 Console.Write("请输入国家名:"); string country = Console.ReadLine(); if (country == "中 ...
分类:
其他好文 时间:
2018-04-05 23:11:02
阅读次数:
174
一、面向过程:面向过程的程序设计的核心是过程(流水线式思维),过程即解决问题的步骤, 面向过程的设计就好比精心设计好一条流水线,考虑周全什么时候处理什么东西。 优点:极大地降低了写成学的复杂度,只需要顺着执行的步骤,堆叠代码即可 缺点:一套流水线或者流程就是用来解决一个问题,如果修改代码就都得改变 ... ...
分类:
其他好文 时间:
2018-04-04 20:48:36
阅读次数:
160
Description Windy has a country, and he wants to build an army to protect his country. He has picked up N girls and M boys and wants to collect them t ...
分类:
其他好文 时间:
2018-03-28 18:52:48
阅读次数:
187
1003. Emergency (25) As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities ...
分类:
其他好文 时间:
2018-03-25 15:55:26
阅读次数:
159
Light OJ 1002 - Country Roads 1.Dijkstra 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 const int N=555; 5 int d[N]; 6 bool vis[N]; 7 const int ...
分类:
其他好文 时间:
2018-03-19 22:40:43
阅读次数:
213
$.ajax({ url: '/Account/Personal_GetCommunityListByUserNeima', type: "GET", dataType: "JSON", data: { CountryCode: countryCode, Mob... ...
分类:
Web程序 时间:
2018-03-12 13:31:06
阅读次数:
190
As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some ro ...
分类:
其他好文 时间:
2018-03-10 14:01:51
阅读次数:
167
import xml.etree.ElementTree as tree import io xml = ''' 2 2008 141100 5 2011 59900 69 ... ...
分类:
编程语言 时间:
2018-03-08 10:40:37
阅读次数:
250
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4352 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Problem Descripti ...
分类:
其他好文 时间:
2018-03-07 23:53:49
阅读次数:
240