码迷,mamicode.com
首页 >  
搜索关键字:friend    ( 1299个结果
Angel图算法
Angel图算法 [2.0]CommonFriends 计算两个好友的共同好友数,某种程度上可以刻画两个节点之间的紧密程度。 输入 输入数据路径:输入文件所在路径,无权网络数据, 数据格式为两列 srcId(long) | dstId(long), 其中|为分隔符,分隔字段表示空白符或者逗号等。 输 ...
分类:编程语言   时间:2021-03-01 13:31:13    阅读次数:0
令C/C++初学者头疼,5个常见C/C++错误
1.不能被重载的运算符在C++中,不能被重载的运算符有:?.成员运算符?.*成员指针运算符?::作用域运算符??:条件运算符2.神奇的变量名y1显示变量y1和C++标准库中的某个变量名称冲突,这个问题应当引起注意。这不是头文件写成<bits/stdc++.h>引起的,即使换成各具体的头文件(<iostream>,<algorithm>,<ctring>
分类:编程语言   时间:2020-12-05 10:27:02    阅读次数:9
【编测编学】零基础学python_02_字符串(大小写转换)
python干货第二弹
分类:编程语言   时间:2020-11-16 13:41:51    阅读次数:8
AtCoder Grand Contest 019
Preface 最后四天,最后四场! A - Ice Tea Store 有手就行,考虑偶数部分和多出的一个$0/1$分别用什么买最优即可 #include<cstdio> #include<iostream> #define RI register int #define CI const int ...
分类:其他好文   时间:2020-11-13 12:58:36    阅读次数:6
C - Friends and Gifts-CodeForces - 1283C-ZUT周赛
C. Friends and Gifts time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output There are nn friend ...
分类:其他好文   时间:2020-11-01 10:31:24    阅读次数:17
21 操作符重载
1 需要解决的问题 复数运算 class Complex { public: int a; int b; }; int main() { Complex c1 = {1,2}; Complex c2 = {3,4}; Compelx c3 = c1 + c2; //error: no match f ...
分类:其他好文   时间:2020-09-24 21:59:44    阅读次数:51
leetcode 299. Bulls and Cows
You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time ...
分类:其他好文   时间:2020-09-17 22:49:35    阅读次数:38
美语初级 L143:Man's Best Friend 解析
一、Reading The dog is man's best friend. He can do many things for us. He can protect our homes. He can guide the blind. He is loyal to his master and ...
分类:其他好文   时间:2020-09-17 21:40:24    阅读次数:37
POJ - 2352 Stars 树状数组 略坑
注意建树范围开大一点。 x 先让其 +1 ,树状数组不能维护0 这个点。 int n; int c[32005]; struct Point { int x, y; Point(int _x = 0, int _y = 0) { x = _x; y = _y; } friend bool opera ...
分类:编程语言   时间:2020-08-07 12:36:18    阅读次数:81
结构体内的一些操作
结构体内的一些操作 重载 #include <bits/stdc++.h> using namespace std; struct test { int a, b; friend bool operator < (const test &x, const test &y) { return x.a ...
分类:其他好文   时间:2020-07-26 23:02:39    阅读次数:72
1299条   上一页 1 2 3 4 ... 130 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!