介绍 jq is like for JSON data you can use it to slice and filter and map and transform structured data with the same ease that , , and friends let you p ...
分类:
Web程序 时间:
2020-03-14 23:54:54
阅读次数:
89
There are N students in a class. Some of them are friends, while some are not. Their friendship is transitive in nature. For example, if A is a direct ...
分类:
其他好文 时间:
2020-03-11 12:41:31
阅读次数:
74
//1.数组去重 var fruits = ["banana", "apple", "orange", "watermelon", "apple", "orange", "grape", "apple"]; //方法一 var arr = Array.from(new Set(fruits)) // ...
分类:
编程语言 时间:
2020-03-05 22:31:16
阅读次数:
85
个人博客 "http://www.milovetingting.cn" Android中网络框架的简单封装 前言 作为一款主要应用在移动终端的操作系统,访问网络是必不可少的功能。访问网络,最基本的接口有: ,``HttpClient Volley OkHttp Retrofit``等网络封装库。由于 ...
分类:
移动开发 时间:
2020-03-05 01:32:18
阅读次数:
106
题:http://acm.csu.edu.cn/csuoj/problemset/problem?pid=2004 题意:给定n个模式串,m个询问,每个询问是“前缀+‘*’+后缀 ”的组合的串S,输出n个模式串中有几个和S是相同的,‘*’可以是0和或更多的字符组成 分析:一般是用给定的模式串来减tr ...
分类:
其他好文 时间:
2020-02-28 01:33:25
阅读次数:
81
我们可以通过Bot.friends 以及Bot.groups 来获取到所有的好友以及聊天群,这里需要注意的是,聊天群 需要保存到通讯录中 ,不然可能会出现找不到聊天群的情况。 摘自:http://www.oicqzone.com/qqjiqiao/2017122024039.html 在这里感谢一下 ...
分类:
其他好文 时间:
2020-02-27 19:25:15
阅读次数:
93
- var friends = 10 case friends when 0 p 您没有朋友 when 1 p 您有一个朋友 default p 您有 #{friends} 个朋友 等价于 > <p>您有 10 个朋友</p> 另一种块展开的写法: - var friends = 1 case fr ...
分类:
其他好文 时间:
2020-02-25 23:00:00
阅读次数:
80
基础并查集~ #include<cstdio> #include<algorithm> #include<cstring> #include<unordered_map> #include<iostream> #include<string> using namespace std; const i ...
分类:
其他好文 时间:
2020-02-13 22:48:22
阅读次数:
94
大水题,dfs判连通块的数量,bfs每个点找朋友圈的最大直径~ #include<bits/stdc++.h> using namespace std; const int maxn=1014; vector<int> g[maxn]; bool visit[maxn]; int N; int ma ...
分类:
其他好文 时间:
2020-02-13 13:20:03
阅读次数:
84
Codeforces Round #611 (Div. 3) 题意:给定的一维数组中,每i个元素为f(i),f(i)有两种取值,若f(i)为0,表示第i人不知道将礼物给谁,若f(i)>=1&&f(i)<=n表示第i人将礼物送给第f(i)人,要注意题目规定每个人只能收一件礼物也只能发一件礼物给别人,而 ...
分类:
其他好文 时间:
2020-02-12 18:28:24
阅读次数:
57