树状数组: 维护每一个数前面比它小的数的个数,和这个数后面比他大的数的个数
树状数组: 维护每一个数前面比它小的数的个数,和这个数后面比他大的数的个数
本页所有内容来自官方网站 https://www.imapbox.com 新闻来源:互联网搜索引擎和新闻站 本网 […]
PMAC应该看成一台独立的电脑,它有自己的实时操作系统,为了更方便简单的使用,PMAC有自己的一套操作语言来对PMAC的输入输出信号进行控制(IO、电机等信号)。和大多数的嵌入式开发一样,PMAC提供一套PC工具来方便查看PMAC控制卡的各种状态变量和编写、调试PMAC程序。
本页所有内容来自官方网站 https://www.imapbox.com 新闻来源:互联网搜索引擎和新闻站 本网 […]
靠人不如靠己,准备做自己得MathLib:/// <summary> /// 行列式计算,本程序属于MyMathLib的一部分,欢迎使用,参考,提意见。 /// 有时间用函数语言改写,做自己得MathLib,里面的算法经过验证,但没经过 /// 严格测试,如需参考,请慎重. /// </summary> public static partial class LinearAlgebra { /// <summary> /// 求逆序数 /// </summary> /// <param name="Numbers">数字序列</param> /// <returns></returns> public static int CalcInverseNumber(string Numbers) { int theRet = 0; if (string.IsNullOrWhiteSpace(Numbers)) { return theRet; } else { string[] theNumbers = Numbers.Split(new string[] { ",", " " }, StringSplitOptions.RemoveEmptyEntries); return CalcInverseNumber(theNumbers); } } /// <summary> /// 求逆序数 /// </summary> /// <param name="Numbers">数字序列</param> /// <returns></returns> public static int CalcInverseNumber(string[] Numbers) { var theRet = 0; if (Numbers.Count() <= 0) { return theRet; } else { string[] theNumbers = Numbers.ToArray(); int[] theNums = new int[theNumbers.Count()]; for (int i = 0; i < theNumbers.Count(); i++) { theNums[i] = Convert.ToInt32(theNumbers[i]); } for (int theI = 0; theI < theNums.Count() – 1; theI++) { for (int theJ = theI + 1; theJ < theNums.Count(); theJ++) { if (theNums[theI] > theNums[theJ]) { theRet++; } } } } return theRet; } private static string HandlingMultiExp(string Exp, int Sign) { decimal theRetNum = Sign; var theRetLine = ""; var theDigits = Exp.Split(‘*’); foreach (var theD in theDigits) { decimal theDec = 0; if (decimal.TryParse(theD, out theDec)) { theRetNum *= theDec; } else { if (theRetLine == "") { theRetLine = theD; } else { theRetLine += "*" + theD; } } } if (theRetNum == 0) { return ""; } else { if (theRetNum == 1) { return theRetLine; } if (theRetNum == -1) { return "-" + theRetLine; } return theRetNum.ToString() + theRetLine; } } /// <summary> /// 行列式表达式展开 /// </summary> /// <param name="Determinants">N阶行列式</param> /// <returns></returns> public static string DeterminantToExpression(string[,] Determinants) { int theR = Determinants.GetLength(0); int theC = Determinants.GetLength(1); if (theR != theC) { throw new Exception("不是N阶行列式!"); } var theResults = new List<string>(); List<string> theNs = new List<string>(); for (int i = 1; i <= theC; i++) { theNs.Add(i.ToString()); } FullPermutation(theNs, 0, theC – 1, theResults); var theNExp = ""; var thePExp = ""; foreach (var theAL in theResults) { var theInverseNum = Convert.ToInt32(Math.Pow(-1, CalcInverseNumber(theAL))); var theLine = ""; string[] theNums = theAL.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries); for (int i = 1; i <= theC; i++) { var theV = Determinants[i – 1, int.Parse(theNums[i – 1]) – 1]; theLine += "*" + theV; } theLine = HandlingMultiExp(theLine.Substring(1), theInverseNum); if (!string.IsNullOrEmpty(theLine)) { if (theLine[0] == ‘-‘) { theNExp += "" + theLine; } else { thePExp += "+" + theLine; } } } return thePExp.Substring(1) + theNExp; } /// <summary> /// 对数组进行全排列 /// </summary> /// <param name="lsArray">要进行全排列的数组</param> /// <param name="begin">进行全排列的开始下标</param> /// <param name="end">进行全排列的结束下标</param> public static void FullPermutation(List<string> lsArray, int begin, int end, List<string> Result) { if (begin == end) { string theLine = ""; for (int i = 0; i <= end; i++) { theLine += "," + lsArray[i]; } Result.Add(theLine.Substring(1)); } for (int i = begin; i <= end; i++) { Swap(lsArray, begin, i); FullPermutation(lsArray, begin + 1, end, Result); Swap(lsArray, begin, i); } } /// <summary> /// 交换数组中的下标为x,y的值 /// </summary> /// <param name="lsArray">该数组</param> /// <param name="x"></param> /// <param name="y"></param> private static void Swap(List<string> lsArray, int x, int y) { string t = lsArray[x]; lsArray[x] = lsArray[y]; lsArray[y] = t; } /// <summary> /// 化三角法行列式计算, /// </summary> /// <param name="Determinants">N阶行列式</param> /// <returns>计算结果</returns> public static decimal CalcDeterminant(decimal[,] Determinants) { int theSign = 1;//正负符号,如果需要变换,将记录变换后的符号. int theN = Determinants.GetLength(0); //从第1列到第theN-1列 for (int i = 0; i < theN – 1; i++) { //从第theN-1行到第i+1行,将D[j,i]依次变为0 for (int j = theN – 1; j > i; j–) { //如果为当前值为0,则不处理,继续处理上一行 if (Determinants[j, i] == 0) { continue; } //如果[j,i]的上一行[j-1, i]的值为0则交换 if (Determinants[j – 1, i] == 0) { //每次交换,行列式的值大小不变,符号取反 theSign = 0 – theSign; for (int k = 0; k < theN; k++) { decimal theTmpDec = Determinants[j, k]; Determinants[j, k] = Determinants[j – 1, k]; Determinants[j – 1, k] = theTmpDec; } } else { //将当前行减去上一行与theRate的积。 var theRate = Determinants[j, i] / Determinants[j – 1, i]; for (int k = 0; k < theN; k++) { Determinants[j, k] = Determinants[j, k] – Determinants[j – 1, k] * theRate; } } } } //结果为对角线上的元素的乘积,注意符号的处理。 decimal theRetDec = theSign; for (int i = 0; i < theN; i++) { theRetDec *= Determinants[i, i]; } return theRetDec; } }
小背景
先前一直是deepin_music的用户.当使用13.04时还无丝毫问题,简单如直接加一个ppa,就很容易的上手, 继之apt-get update, apt-get install *然倘若如此,亦无记录必要,新手入门即学此法.而但自从更换系统后,用的是ubuntu-kylin14.10.此源不能添加了. 无奈只能手动安装了,这个也是挺蛋疼的地方.
本页所有内容来自官方网站 https://www.imapbox.com 新闻来源:互联网搜索引擎和新闻站 本网 […]
特别注意:1. 可变参数只能是所有参数中的最后一个 2. NS_REQUIRES_NIL_TERMINATION, 用于编译时非nil结尾的检查
在Crawl中的main函数中有一句是:// initializecrawlDb
fill_parent: 指定子组件的高度,宽度与父容器的高度,宽度相同(实际上还要减去填充的空白的距离)。
在Linux 中,线程是由进程来实现,线程就是轻量级进程( lightweight process ),因此在 Linux 中,线程的调度是按照进程的调度方式来进行调度的,也就是说线程是调度单元。 Linux 这样实现的线程的好处的之一是:线程调度直接使用进程调度就可以了,没必要再搞一个进程内的线程调度器。在 Linux 中,调度器是基于线程的调度策略( scheduling policy )和静态调度优先级( static scheduling priority )来决定那个线程来运行。
实现两张图片渐隐渐现的过渡效果Transition Drawable实现两张图片之间动态过度效果的方式。
Liu-Zhou定理: 若 G= ( X, Y ) 是连通二分图,则 G 的最大导出匹配数为 iμ( G ) = Max{ | S | | S ⊆ X 且对于任意 T ⊆ S 有 N G( S ) ≠ N G( T ) }
问题及代码/* * Copyright (c) 2014, 烟台大学计算机学院 * All rights reserved. * 文件名称:test.cpp * 作 者:辛彬 * 完成日期:2014年 12 月 20 日 * 版 本 号:v1.0 * * 问题描述: 阅读下面的程序,写出期望中的运行结果。上机运行对照,并用单步执行的方法再次体会,完全掌握用指针和引用作为形式参数的用法。。 * 输入描述:没有输入。 * 程序输出:结果; */ #include <iostream> using namespace std; void fun1(int &x,int &y); void fun2(int *x, int *y); int main() { int a,b; a=11; b=22; fun2(&a,&b); cout<<"a="<<a<<" b="<<b<<endl; fun1(a, b); cout<<"a="<<a<<" b="<<b<<endl; return 0; } void fun1(int &x,int &y) { int t; t=x; x=y; y=t; } void fun2(int *x, int *y) { int *t; t=x; x=y; y=t; }
运行结果:
本页所有内容来自官方网站 https://www.imapbox.com 新闻来源:互联网搜索引擎和新闻站 本网 […]
One of the tablespace is read-only in your database. The los s of all
https://weheartit.com/zhanghesu/collections/61100795-20141220
https://weheartit.com/jiaweidi/collections/61100794-20141220
https://weheartit.com/couhuangyong/collections/61100793-20141220
https://weheartit.com/zhanghesu/collections/61100813-20141220
https://weheartit.com/haoshuosu/collections/61100826-20141220
https://weheartit.com/jiaweidi/collections/61100833-20141220
https://weheartit.com/couhuangyong/collections/61100836-20141220
https://weheartit.com/tanyangu/collections/61100802-20141220
https://weheartit.com/haoshuosu/collections/61100860-20141220
https://weheartit.com/jiaweidi/collections/61100859-20141220
https://weheartit.com/zhanghesu/collections/61100847-20141220
https://weheartit.com/couhuangyong/collections/61100861-20141220
https://weheartit.com/tanyangu/collections/61100866-20141220
https://weheartit.com/haoshuosu/collections/61100876-20141220
https://weheartit.com/zhanghesu/collections/61100879-20141220
https://weheartit.com/couhuangyong/collections/61100885-20141220
https://weheartit.com/tanyangu/collections/61100887-20141220
https://weheartit.com/zhanghesu/collections/61100908-20141220
https://weheartit.com/jiaweidi/collections/61100877-20141220
https://weheartit.com/couhuangyong/collections/61100910-20141220
https://weheartit.com/haoshuosu/collections/61100904-20141220
https://weheartit.com/tanyangu/collections/61100914-20141220
https://weheartit.com/zhanghesu/collections/61100932-20141220
https://weheartit.com/couhuangyong/collections/61100938-20141220
https://weheartit.com/tanyangu/collections/61100951-20141220
https://weheartit.com/zhanghesu/collections/61100953-20141220
https://weheartit.com/couhuangyong/collections/61100958-20141220
https://weheartit.com/haoshuosu/collections/61100950-20141220
https://weheartit.com/jiaweidi/collections/61100934-20141220
https://weheartit.com/tanyangu/collections/61100966-20141220
https://weheartit.com/couhuangyong/collections/61100978-20141220
https://weheartit.com/jiaweidi/collections/61100988-20141220
https://weheartit.com/zhanghesu/collections/61100971-20141220
https://weheartit.com/couhuangyong/collections/61101000-20141220
https://weheartit.com/haoshuosu/collections/61100985-20141220
https://weheartit.com/tanyangu/collections/61100992-20141220
https://weheartit.com/jiaweidi/collections/61101008-20141220
https://weheartit.com/zhanghesu/collections/61101009-20141220
https://weheartit.com/tanyangu/collections/61101027-20141220
https://weheartit.com/couhuangyong/collections/61101020-20141220
https://weheartit.com/haoshuosu/collections/61101026-20141220
https://weheartit.com/zhanghesu/collections/61101030-20141220
https://weheartit.com/jiaweidi/collections/61101028-20141220
https://weheartit.com/tanyangu/collections/61101049-20141220
https://weheartit.com/couhuangyong/collections/61101054-20141220
https://weheartit.com/haoshuosu/collections/61101058-20141220
https://weheartit.com/jiaweidi/collections/61101063-20141220
https://weheartit.com/tanyangu/collections/61101076-20141220
https://weheartit.com/haoshuosu/collections/61101082-20141220
https://weheartit.com/couhuangyong/collections/61101083-20141220
https://weheartit.com/jiaweidi/collections/61101102-20141220
https://weheartit.com/zhanghesu/collections/61101061-20141220
https://weheartit.com/haoshuosu/collections/61101116-20141220
https://weheartit.com/tanyangu/collections/61101104-20141220
https://weheartit.com/jiaweidi/collections/61101132-20141220
https://weheartit.com/zhanghesu/collections/61101137-20141220
https://weheartit.com/couhuangyong/collections/61101119-20141220
https://weheartit.com/tanyangu/collections/61101149-20141220
https://weheartit.com/zhanghesu/collections/61101170-20141220
https://weheartit.com/jiaweidi/collections/61101171-20141220
https://weheartit.com/couhuangyong/collections/61101173-20141220
https://weheartit.com/haoshuosu/collections/61101142-20141220
https://weheartit.com/tanyangu/collections/61101182-20141220
https://weheartit.com/zhanghesu/collections/61101191-20141220
https://weheartit.com/couhuangyong/collections/61101198-20141220
https://weheartit.com/tanyangu/collections/61101202-20141220
https://weheartit.com/jiaweidi/collections/61101194-20141220
https://weheartit.com/couhuangyong/collections/61101226-20141220
https://weheartit.com/tanyangu/collections/61101229-20141220
https://weheartit.com/zhanghesu/collections/61101220-20141220
https://weheartit.com/haoshuosu/collections/61101199-20141220
https://weheartit.com/jiaweidi/collections/61101232-20141220
https://weheartit.com/couhuangyong/collections/61101251-20141220
https://weheartit.com/jiaweidi/collections/61101261-20141220
https://weheartit.com/tanyangu/collections/61101255-20141220
https://weheartit.com/zhanghesu/collections/61101257-20141220
https://weheartit.com/haoshuosu/collections/61101259-20141220
https://weheartit.com/couhuangyong/collections/61101284-20141220
https://weheartit.com/jiaweidi/collections/61101289-20141220
https://weheartit.com/zhanghesu/collections/61101298-20141220
https://weheartit.com/couhuangyong/collections/61101310-20141220
https://weheartit.com/tanyangu/collections/61101296-20141220
https://weheartit.com/haoshuosu/collections/61101305-20141220
https://weheartit.com/zhanghesu/collections/61101322-20141220
https://weheartit.com/jiaweidi/collections/61101320-20141220
https://weheartit.com/couhuangyong/collections/61101330-20141220
https://weheartit.com/tanyangu/collections/61101339-20141220
https://weheartit.com/zhanghesu/collections/61101347-20141220
https://weheartit.com/jiaweidi/collections/61101358-20141220
https://weheartit.com/tanyangu/collections/61101374-20141220
https://weheartit.com/couhuangyong/collections/61101381-20141220
https://weheartit.com/zhanghesu/collections/61101376-20141220
https://weheartit.com/haoshuosu/collections/61101356-20141220
https://weheartit.com/jiaweidi/collections/61101388-20141220
https://weheartit.com/tanyangu/collections/61101397-20141220
https://weheartit.com/haoshuosu/collections/61101409-20141220
https://weheartit.com/jiaweidi/collections/61101410-20141220
https://weheartit.com/couhuangyong/collections/61101400-20141220
https://weheartit.com/tanyangu/collections/61101425-20141220
https://weheartit.com/haoshuosu/collections/61101429-20141220
https://weheartit.com/couhuangyong/collections/61101432-20141220
https://weheartit.com/zhanghesu/collections/61101407-20141220
https://weheartit.com/jiaweidi/collections/61101431-20141220
https://weheartit.com/haoshuosu/collections/61101444-20141220
https://weheartit.com/couhuangyong/collections/61101446-20141220
https://weheartit.com/tanyangu/collections/61101442-20141220
https://weheartit.com/zhanghesu/collections/61101447-20141220
https://weheartit.com/jiaweidi/collections/61101454-20141220
https://weheartit.com/haoshuosu/collections/61101460-20141220
https://weheartit.com/couhuangyong/collections/61101461-20141220
https://weheartit.com/tanyangu/collections/61101464-20141220
https://weheartit.com/zhanghesu/collections/61101467-20141220
https://weheartit.com/jiaweidi/collections/61101472-20141220
https://weheartit.com/haoshuosu/collections/61101481-20141220
https://weheartit.com/tanyangu/collections/61101484-20141220
https://weheartit.com/couhuangyong/collections/61101483-20141220
https://weheartit.com/jiaweidi/collections/61101497-20141220
https://weheartit.com/zhanghesu/collections/61101489-20141220
https://weheartit.com/tanyangu/collections/61101504-20141220
https://weheartit.com/jiaweidi/collections/61101515-20141220
https://weheartit.com/zhanghesu/collections/61101518-20141220
https://weheartit.com/haoshuosu/collections/61101508-20141220
https://weheartit.com/couhuangyong/collections/61101512-20141220
https://weheartit.com/tanyangu/collections/61101525-20141220
https://weheartit.com/jiaweidi/collections/61101532-20141220
https://weheartit.com/haoshuosu/collections/61101538-20141220
https://weheartit.com/zhanghesu/collections/61101535-20141220
https://weheartit.com/tanyangu/collections/61101545-20141220
https://weheartit.com/couhuangyong/collections/61101540-20141220
https://weheartit.com/jiaweidi/collections/61101553-20141220
https://weheartit.com/haoshuosu/collections/61101562-20141220
https://weheartit.com/zhanghesu/collections/61101564-20141220
https://weheartit.com/couhuangyong/collections/61101575-20141220
https://weheartit.com/haoshuosu/collections/61101582-20141220
https://weheartit.com/zhanghesu/collections/61101584-20141220
https://weheartit.com/jiaweidi/collections/61101579-20141220
https://weheartit.com/tanyangu/collections/61101580-20141220
https://weheartit.com/couhuangyong/collections/61101594-20141220
https://weheartit.com/zhanghesu/collections/61101602-20141220
https://weheartit.com/tanyangu/collections/61101618-20141220
https://weheartit.com/couhuangyong/collections/61101627-20141220
https://weheartit.com/jiaweidi/collections/61101611-20141220
https://weheartit.com/haoshuosu/collections/61101599-20141220
https://weheartit.com/zhanghesu/collections/61101642-20141220
https://weheartit.com/couhuangyong/collections/61101654-20141220
https://weheartit.com/tanyangu/collections/61101659-20141220
https://weheartit.com/haoshuosu/collections/61101671-20141220
https://weheartit.com/couhuangyong/collections/61101682-20141220
https://weheartit.com/tanyangu/collections/61101693-20141220
https://weheartit.com/jiaweidi/collections/61101667-20141220
https://weheartit.com/zhanghesu/collections/61101697-20141220
https://weheartit.com/haoshuosu/collections/61101696-20141220
https://weheartit.com/couhuangyong/collections/61101709-20141220
https://weheartit.com/tanyangu/collections/61101715-20141220
https://weheartit.com/zhanghesu/collections/61101722-20141220
https://weheartit.com/haoshuosu/collections/61101730-20141220
https://weheartit.com/couhuangyong/collections/61101734-20141220
https://weheartit.com/jiaweidi/collections/61101719-20141220
https://weheartit.com/zhanghesu/collections/61101751-20141220
https://weheartit.com/couhuangyong/collections/61101761-20141220
https://weheartit.com/jiaweidi/collections/61101766-20141220
https://weheartit.com/tanyangu/collections/61101750-20141220
https://weheartit.com/haoshuosu/collections/61101757-20141220
https://weheartit.com/jiaweidi/collections/61101784-20141220
https://weheartit.com/tanyangu/collections/61101788-20141220
https://weheartit.com/zhanghesu/collections/61101781-20141220
https://weheartit.com/haoshuosu/collections/61101792-20141220
https://weheartit.com/couhuangyong/collections/61101783-20141220
https://weheartit.com/jiaweidi/collections/61101809-20141220
https://weheartit.com/tanyangu/collections/61101811-20141220
https://weheartit.com/haoshuosu/collections/61101815-20141220
https://weheartit.com/couhuangyong/collections/61101818-20141220
https://weheartit.com/zhanghesu/collections/61101826-20141220
https://weheartit.com/jiaweidi/collections/61101834-20141220
https://weheartit.com/tanyangu/collections/61101835-20141220
https://weheartit.com/haoshuosu/collections/61101841-20141220
https://weheartit.com/couhuangyong/collections/61101842-20141220
https://weheartit.com/tanyangu/collections/61101868-20141220
https://weheartit.com/zhanghesu/collections/61101851-20141220
https://weheartit.com/couhuangyong/collections/61101876-20141220
https://weheartit.com/haoshuosu/collections/61101883-20141220
https://weheartit.com/jiaweidi/collections/61101867-20141220
https://weheartit.com/jiaweidi/collections/61101909-20141220
https://weheartit.com/couhuangyong/collections/61101908-20141220
https://weheartit.com/zhanghesu/collections/61101920-20141220
https://weheartit.com/tanyangu/collections/61101892-20141220
https://weheartit.com/haoshuosu/collections/61101910-20141220
https://weheartit.com/jiaweidi/collections/61101931-20141220
https://weheartit.com/zhanghesu/collections/61101940-20141220
https://weheartit.com/couhuangyong/collections/61101935-20141220
https://weheartit.com/tanyangu/collections/61101942-20141220
https://weheartit.com/haoshuosu/collections/61101953-20141220
https://weheartit.com/jiaweidi/collections/61101954-20141220
https://weheartit.com/zhanghesu/collections/61101964-20141220
https://weheartit.com/haoshuosu/collections/61101978-20141220
https://weheartit.com/jiaweidi/collections/61101979-20141220
https://weheartit.com/couhuangyong/collections/61101983-20141220
https://weheartit.com/zhanghesu/collections/61101984-20141220
https://weheartit.com/haoshuosu/collections/61102001-20141220
https://weheartit.com/tanyangu/collections/61101975-20141220
https://weheartit.com/jiaweidi/collections/61102008-20141220
https://weheartit.com/couhuangyong/collections/61102010-20141220
https://weheartit.com/zhanghesu/collections/61102028-20141220
https://weheartit.com/tanyangu/collections/61102038-20141220
https://weheartit.com/jiaweidi/collections/61102049-20141220
https://weheartit.com/couhuangyong/collections/61102054-20141220
https://weheartit.com/zhanghesu/collections/61102056-20141220
https://weheartit.com/haoshuosu/collections/61102032-20141220
https://weheartit.com/couhuangyong/collections/61102078-20141220
https://weheartit.com/zhanghesu/collections/61102081-20141220
https://weheartit.com/haoshuosu/collections/61102087-20141220
https://weheartit.com/jiaweidi/collections/61102072-20141220
https://weheartit.com/haoshuosu/collections/61102112-20141220
https://weheartit.com/couhuangyong/collections/61102102-20141220
https://weheartit.com/tanyangu/collections/61102061-20141220
https://weheartit.com/zhanghesu/collections/61102105-20141220
https://weheartit.com/jiaweidi/collections/61102113-20141220
https://weheartit.com/tanyangu/collections/61102132-20141220
https://weheartit.com/couhuangyong/collections/61102130-20141220
https://weheartit.com/zhanghesu/collections/61102140-20141220
https://weheartit.com/jiaweidi/collections/61102141-20141220
https://weheartit.com/haoshuosu/collections/61102128-20141220
https://weheartit.com/zhanghesu/collections/61102160-20141220
https://weheartit.com/haoshuosu/collections/61102172-20141220
https://weheartit.com/jiaweidi/collections/61102166-20141220
https://weheartit.com/tanyangu/collections/61102155-20141220
https://weheartit.com/zhanghesu/collections/61102179-20141220
https://weheartit.com/couhuangyong/collections/61102154-20141220
https://weheartit.com/haoshuosu/collections/61102193-20141220
https://weheartit.com/jiaweidi/collections/61102195-20141220
https://weheartit.com/tanyangu/collections/61102197-20141220
https://weheartit.com/zhanghesu/collections/61102202-20141220
https://weheartit.com/haoshuosu/collections/61102222-20141220
https://weheartit.com/jiaweidi/collections/61102224-20141220
https://weheartit.com/couhuangyong/collections/61102218-20141220
https://weheartit.com/tanyangu/collections/61102238-20141220
https://weheartit.com/jiaweidi/collections/61102246-20141220
https://weheartit.com/couhuangyong/collections/61102253-20141220
https://weheartit.com/tanyangu/collections/61102254-20141220
https://weheartit.com/zhanghesu/collections/61102242-20141220
https://weheartit.com/haoshuosu/collections/61102245-20141220
https://weheartit.com/jiaweidi/collections/61102267-20141220
https://weheartit.com/couhuangyong/collections/61102277-20141220
https://weheartit.com/tanyangu/collections/61102282-20141220
https://weheartit.com/zhanghesu/collections/61102286-20141220
https://weheartit.com/haoshuosu/collections/61102287-20141220
https://weheartit.com/jiaweidi/collections/61102291-20141220
https://weheartit.com/couhuangyong/collections/61102299-20141220
https://weheartit.com/zhanghesu/collections/61102305-20141220
https://weheartit.com/haoshuosu/collections/61102306-20141220
https://weheartit.com/tanyangu/collections/61102304-20141220
https://weheartit.com/jiaweidi/collections/61102312-20141220
https://weheartit.com/couhuangyong/collections/61102319-20141220
https://weheartit.com/zhanghesu/collections/61102327-20141220
https://weheartit.com/haoshuosu/collections/61102329-20141220
https://weheartit.com/tanyangu/collections/61102332-20141220
https://weheartit.com/jiaweidi/collections/61102335-20141220
https://weheartit.com/couhuangyong/collections/61102341-20141220
https://weheartit.com/zhanghesu/collections/61102350-20141220
https://weheartit.com/tanyangu/collections/61102355-20141220
https://weheartit.com/jiaweidi/collections/61102359-20141220
https://weheartit.com/haoshuosu/collections/61102351-20141220
https://weheartit.com/couhuangyong/collections/61102365-20141220
https://weheartit.com/zhanghesu/collections/61102373-20141220
https://weheartit.com/jiaweidi/collections/61102384-20141220
https://weheartit.com/haoshuosu/collections/61102388-20141220
https://weheartit.com/couhuangyong/collections/61102389-20141220
https://weheartit.com/tanyangu/collections/61102382-20141220
https://weheartit.com/zhanghesu/collections/61102395-20141220
https://weheartit.com/jiaweidi/collections/61102402-20141220
https://weheartit.com/haoshuosu/collections/61102407-20141220
https://weheartit.com/tanyangu/collections/61102415-20141220
https://weheartit.com/couhuangyong/collections/61102408-20141220
https://weheartit.com/zhanghesu/collections/61102422-20141220
https://weheartit.com/haoshuosu/collections/61102429-20141220
https://weheartit.com/tanyangu/collections/61102436-20141220
https://weheartit.com/couhuangyong/collections/61102443-20141220
https://weheartit.com/jiaweidi/collections/61102428-20141220
https://weheartit.com/tanyangu/collections/61102456-20141220
https://weheartit.com/zhanghesu/collections/61102450-20141220
https://weheartit.com/jiaweidi/collections/61102463-20141220
https://weheartit.com/couhuangyong/collections/61102462-20141220
https://weheartit.com/tanyangu/collections/61102472-20141220
https://weheartit.com/jiaweidi/collections/61102478-20141220
https://weheartit.com/haoshuosu/collections/61102455-20141220
https://weheartit.com/zhanghesu/collections/61102474-20141220
https://weheartit.com/tanyangu/collections/61102485-20141220
https://weheartit.com/tanyangu/collections/61102500-20141220
https://weheartit.com/jiaweidi/collections/61102489-20141220
https://weheartit.com/haoshuosu/collections/61102491-20141220
https://weheartit.com/zhanghesu/collections/61102492-20141220
https://weheartit.com/couhuangyong/collections/61102479-20141220
https://weheartit.com/jiaweidi/collections/61102514-20141220
https://weheartit.com/haoshuosu/collections/61102515-20141220
https://weheartit.com/couhuangyong/collections/61102524-20141220
https://weheartit.com/tanyangu/collections/61102513-20141220
https://weheartit.com/jiaweidi/collections/61102530-20141220
https://weheartit.com/zhanghesu/collections/61102529-20141220
https://weheartit.com/tanyangu/collections/61102537-20141220
https://weheartit.com/couhuangyong/collections/61102536-20141220
https://weheartit.com/jiaweidi/collections/61102545-20141220
https://weheartit.com/zhanghesu/collections/61102548-20141220
https://weheartit.com/haoshuosu/collections/61102531-20141220
https://weheartit.com/tanyangu/collections/61102553-20141220
https://weheartit.com/couhuangyong/collections/61102554-20141220
https://weheartit.com/jiaweidi/collections/61102558-20141220
https://weheartit.com/zhanghesu/collections/61102560-20141220
https://weheartit.com/haoshuosu/collections/61102564-20141220
https://weheartit.com/tanyangu/collections/61102567-20141220
https://weheartit.com/zhanghesu/collections/61102575-20141220
https://weheartit.com/jiaweidi/collections/61102573-20141220
https://weheartit.com/tanyangu/collections/61102583-20141220
https://weheartit.com/couhuangyong/collections/61102568-20141220
https://weheartit.com/jiaweidi/collections/61102596-20141220
https://weheartit.com/couhuangyong/collections/61102599-20141220
https://weheartit.com/zhanghesu/collections/61102591-20141220
https://weheartit.com/tanyangu/collections/61102597-20141220
https://weheartit.com/haoshuosu/collections/61102594-20141220
https://weheartit.com/jiaweidi/collections/61102612-20141220
https://weheartit.com/couhuangyong/collections/61102613-20141220
https://weheartit.com/zhanghesu/collections/61102616-20141220
https://weheartit.com/tanyangu/collections/61102620-20141220
https://weheartit.com/haoshuosu/collections/61102621-20141220
https://weheartit.com/jiaweidi/collections/61102624-20141220
https://weheartit.com/couhuangyong/collections/61102626-20141220
https://weheartit.com/zhanghesu/collections/61102629-20141220
https://weheartit.com/jiaweidi/collections/61102636-20141220
https://weheartit.com/tanyangu/collections/61102635-20141220
https://weheartit.com/couhuangyong/collections/61102637-20141220
https://weheartit.com/haoshuosu/collections/61102638-20141220
https://weheartit.com/zhanghesu/collections/61102645-20141220
https://weheartit.com/jiaweidi/collections/61102654-20141220
https://weheartit.com/tanyangu/collections/61102655-20141220
https://weheartit.com/haoshuosu/collections/61102657-20141220
https://weheartit.com/couhuangyong/collections/61102656-20141220
https://weheartit.com/tanyangu/collections/61102672-20141220
https://weheartit.com/haoshuosu/collections/61102673-20141220
https://weheartit.com/couhuangyong/collections/61102682-20141220
https://weheartit.com/jiaweidi/collections/61102671-20141220
https://weheartit.com/tanyangu/collections/61102686-20141220
https://weheartit.com/zhanghesu/collections/61102670-20141220
https://weheartit.com/couhuangyong/collections/61102690-20141220
https://weheartit.com/tanyangu/collections/61102697-20141220
https://weheartit.com/haoshuosu/collections/61102689-20141220
https://weheartit.com/jiaweidi/collections/61102696-20141220
https://weheartit.com/zhanghesu/collections/61102698-20141220
https://weheartit.com/couhuangyong/collections/61102714-20141220
https://weheartit.com/tanyangu/collections/61102716-20141220
https://weheartit.com/jiaweidi/collections/61102722-20141220
https://weheartit.com/haoshuosu/collections/61102723-20141220
https://weheartit.com/zhanghesu/collections/61102727-20141220
https://weheartit.com/tanyangu/collections/61102733-20141220
https://weheartit.com/jiaweidi/collections/61102737-20141220
https://weheartit.com/zhanghesu/collections/61102740-20141220
https://weheartit.com/couhuangyong/collections/61102730-20141220
https://weheartit.com/haoshuosu/collections/61102739-20141220
https://weheartit.com/tanyangu/collections/61102745-20141220
https://weheartit.com/jiaweidi/collections/61102747-20141220
https://weheartit.com/haoshuosu/collections/61102752-20141220
https://weheartit.com/zhanghesu/collections/61102749-20141220
https://weheartit.com/tanyangu/collections/61102757-20141220
https://weheartit.com/couhuangyong/collections/61102754-20141220
https://weheartit.com/jiaweidi/collections/61102760-20141220
https://weheartit.com/zhanghesu/collections/61102765-20141220
https://weheartit.com/jiaweidi/collections/61102774-20141220
https://weheartit.com/tanyangu/collections/61102768-20141220
https://weheartit.com/haoshuosu/collections/61102763-20141220
https://weheartit.com/couhuangyong/collections/61102773-20141220
https://weheartit.com/zhanghesu/collections/61102779-20141220
https://weheartit.com/haoshuosu/collections/61102787-20141220
https://weheartit.com/jiaweidi/collections/61102783-20141220
https://weheartit.com/couhuangyong/collections/61102791-20141220
https://weheartit.com/tanyangu/collections/61102784-20141220
https://weheartit.com/haoshuosu/collections/61102798-20141220
https://weheartit.com/jiaweidi/collections/61102800-20141220
https://weheartit.com/zhanghesu/collections/61102797-20141220
https://weheartit.com/tanyangu/collections/61102803-20141220
https://weheartit.com/couhuangyong/collections/61102802-20141220
https://weheartit.com/haoshuosu/collections/61102804-20141220
https://weheartit.com/jiaweidi/collections/61102805-20141220
https://weheartit.com/zhanghesu/collections/61102808-20141220
https://weheartit.com/tanyangu/collections/61102809-20141220
https://weheartit.com/couhuangyong/collections/61102810-20141220
https://weheartit.com/jiaweidi/collections/61102815-20141220
https://weheartit.com/zhanghesu/collections/61102817-20141220
https://weheartit.com/tanyangu/collections/61102818-20141220
https://weheartit.com/couhuangyong/collections/61102822-20141220
https://weheartit.com/haoshuosu/collections/61102814-20141220
https://weheartit.com/jiaweidi/collections/61102834-20141220
https://weheartit.com/zhanghesu/collections/61102839-20141220
https://weheartit.com/tanyangu/collections/61102841-20141220
https://weheartit.com/haoshuosu/collections/61102846-20141220
https://weheartit.com/couhuangyong/collections/61102845-20141220
https://weheartit.com/jiaweidi/collections/61102859-20141220
https://weheartit.com/tanyangu/collections/61102864-20141220
https://weheartit.com/zhanghesu/collections/61102872-20141220
https://weheartit.com/haoshuosu/collections/61102870-20141220
https://weheartit.com/jiaweidi/collections/61102880-20141220
https://weheartit.com/couhuangyong/collections/61102881-20141220
https://weheartit.com/tanyangu/collections/61102882-20141220
https://weheartit.com/zhanghesu/collections/61102894-20141220
https://weheartit.com/couhuangyong/collections/61102907-20141220
https://weheartit.com/haoshuosu/collections/61102897-20141220
https://weheartit.com/jiaweidi/collections/61102906-20141220
https://weheartit.com/tanyangu/collections/61102908-20141220
https://weheartit.com/zhanghesu/collections/61102931-20141220
https://weheartit.com/couhuangyong/collections/61102928-20141220
https://weheartit.com/haoshuosu/collections/61102934-20141220
https://weheartit.com/jiaweidi/collections/61102943-20141220
https://weheartit.com/zhanghesu/collections/61102955-20141220
https://weheartit.com/tanyangu/collections/61102960-20141220
https://weheartit.com/haoshuosu/collections/61102970-20141220
https://weheartit.com/couhuangyong/collections/61102961-20141220
https://weheartit.com/zhanghesu/collections/61102980-20141220
https://weheartit.com/jiaweidi/collections/61102974-20141220
https://weheartit.com/tanyangu/collections/61102994-20141220
https://weheartit.com/haoshuosu/collections/61102995-20141220
https://weheartit.com/couhuangyong/collections/61102999-20141220
https://weheartit.com/zhanghesu/collections/61103012-20141220
https://weheartit.com/haoshuosu/collections/61103023-20141220
https://weheartit.com/jiaweidi/collections/61103030-20141220
https://weheartit.com/tanyangu/collections/61103022-20141220
https://weheartit.com/zhanghesu/collections/61103049-20141220
https://weheartit.com/couhuangyong/collections/61103042-20141220
https://weheartit.com/jiaweidi/collections/61103058-20141220
https://weheartit.com/haoshuosu/collections/61103061-20141220
https://weheartit.com/tanyangu/collections/61103064-20141220
https://weheartit.com/zhanghesu/collections/61103071-20141220
https://weheartit.com/haoshuosu/collections/61103073-20141220
https://weheartit.com/tanyangu/collections/61103077-20141220
https://weheartit.com/jiaweidi/collections/61103070-20141220
https://weheartit.com/couhuangyong/collections/61103068-20141220
https://weheartit.com/zhanghesu/collections/61103081-20141220
https://weheartit.com/jiaweidi/collections/61103086-20141220
https://weheartit.com/couhuangyong/collections/61103088-20141220
https://weheartit.com/haoshuosu/collections/61103089-20141220
https://weheartit.com/zhanghesu/collections/61103092-20141220
https://weheartit.com/tanyangu/collections/61103091-20141220
https://weheartit.com/couhuangyong/collections/61103094-20141220
https://weheartit.com/jiaweidi/collections/61103093-20141220
https://weheartit.com/tanyangu/collections/61103102-20141220
https://weheartit.com/zhanghesu/collections/61103100-20141220
https://weheartit.com/haoshuosu/collections/61103101-20141220
https://weheartit.com/couhuangyong/collections/61103108-20141220
https://weheartit.com/jiaweidi/collections/61103107-20141220
https://weheartit.com/couhuangyong/collections/61103118-20141220
https://weheartit.com/zhanghesu/collections/61103116-20141220
https://weheartit.com/haoshuosu/collections/61103117-20141220
https://weheartit.com/jiaweidi/collections/61103123-20141220
https://weheartit.com/tanyangu/collections/61103115-20141220
https://weheartit.com/couhuangyong/collections/61103128-20141220
https://weheartit.com/haoshuosu/collections/61103134-20141220
https://weheartit.com/jiaweidi/collections/61103135-20141220
https://weheartit.com/zhanghesu/collections/61103129-20141220
https://weheartit.com/couhuangyong/collections/61103139-20141220
https://weheartit.com/zhanghesu/collections/61103149-20141220
https://weheartit.com/tanyangu/collections/61103144-20141220
https://weheartit.com/haoshuosu/collections/61103142-20141220
https://weheartit.com/couhuangyong/collections/61103157-20141220
https://weheartit.com/zhanghesu/collections/61103160-20141220
https://weheartit.com/tanyangu/collections/61103163-20141220
https://weheartit.com/haoshuosu/collections/61103167-20141220
https://weheartit.com/couhuangyong/collections/61103169-20141220
https://weheartit.com/jiaweidi/collections/61103146-20141220
https://weheartit.com/zhanghesu/collections/61103171-20141220
https://weheartit.com/tanyangu/collections/61103172-20141220
https://weheartit.com/haoshuosu/collections/61103178-20141220
https://weheartit.com/jiaweidi/collections/61103186-20141220
https://weheartit.com/tanyangu/collections/61103190-20141220
https://weheartit.com/zhanghesu/collections/61103189-20141220
https://weheartit.com/haoshuosu/collections/61103196-20141220
https://weheartit.com/couhuangyong/collections/61103201-20141220
https://weheartit.com/jiaweidi/collections/61103207-20141220
https://weheartit.com/zhanghesu/collections/61103212-20141220
https://weheartit.com/couhuangyong/collections/61103217-20141220
https://weheartit.com/jiaweidi/collections/61103222-20141220
https://weheartit.com/tanyangu/collections/61103210-20141220
https://weheartit.com/zhanghesu/collections/61103226-20141220
https://weheartit.com/couhuangyong/collections/61103227-20141220
https://weheartit.com/haoshuosu/collections/61103218-20141220
https://weheartit.com/jiaweidi/collections/61103229-20141220
https://weheartit.com/zhanghesu/collections/61103233-20141220
https://weheartit.com/couhuangyong/collections/61103241-20141220
https://weheartit.com/tanyangu/collections/61103240-20141220
https://weheartit.com/haoshuosu/collections/61103246-20141220
https://weheartit.com/zhanghesu/collections/61103250-20141220
https://weheartit.com/jiaweidi/collections/61103243-20141220
https://weheartit.com/tanyangu/collections/61103255-20141220
https://weheartit.com/haoshuosu/collections/61103257-20141220
https://weheartit.com/zhanghesu/collections/61103263-20141220
https://weheartit.com/tanyangu/collections/61103267-20141220
https://weheartit.com/couhuangyong/collections/61103252-20141220
https://weheartit.com/haoshuosu/collections/61103269-20141220
https://weheartit.com/jiaweidi/collections/61103266-20141220
https://weheartit.com/zhanghesu/collections/61103275-20141220
https://weheartit.com/tanyangu/collections/61103276-20141220
https://weheartit.com/haoshuosu/collections/61103279-20141220
https://weheartit.com/jiaweidi/collections/61103281-20141220
https://weheartit.com/couhuangyong/collections/61103277-20141220
https://weheartit.com/zhanghesu/collections/61103284-20141220
https://weheartit.com/haoshuosu/collections/61103288-20141220
https://weheartit.com/couhuangyong/collections/61103291-20141220
https://weheartit.com/tanyangu/collections/61103287-20141220
https://weheartit.com/jiaweidi/collections/61103289-20141220
https://weheartit.com/couhuangyong/collections/61103298-20141220
https://weheartit.com/zhanghesu/collections/61103295-20141220
https://weheartit.com/tanyangu/collections/61103300-20141220
https://weheartit.com/haoshuosu/collections/61103301-20141220
https://weheartit.com/zhanghesu/collections/61103307-20141220
https://weheartit.com/tanyangu/collections/61103309-20141220
https://weheartit.com/jiaweidi/collections/61103303-20141220
https://weheartit.com/couhuangyong/collections/61103316-20141220
https://weheartit.com/zhanghesu/collections/61103319-20141220
https://weheartit.com/tanyangu/collections/61103326-20141220
https://weheartit.com/haoshuosu/collections/61103318-20141220
https://weheartit.com/zhanghesu/collections/61103330-20141220
https://weheartit.com/jiaweidi/collections/61103324-20141220
https://weheartit.com/tanyangu/collections/61103332-20141220
https://weheartit.com/haoshuosu/collections/61103333-20141220
https://weheartit.com/couhuangyong/collections/61103331-20141220
https://weheartit.com/zhanghesu/collections/61103336-20141220
https://weheartit.com/jiaweidi/collections/61103340-20141220
https://weheartit.com/couhuangyong/collections/61103343-20141220
https://weheartit.com/haoshuosu/collections/61103342-20141220
https://weheartit.com/tanyangu/collections/61103341-20141220
https://weheartit.com/jiaweidi/collections/61103350-20141220
https://weheartit.com/zhanghesu/collections/61103349-20141220
https://weheartit.com/haoshuosu/collections/61103351-20141220
https://weheartit.com/couhuangyong/collections/61103352-20141220
https://weheartit.com/tanyangu/collections/61103353-20141220
https://weheartit.com/zhanghesu/collections/61103356-20141220
https://weheartit.com/haoshuosu/collections/61103360-20141220
https://weheartit.com/jiaweidi/collections/61103357-20141220
https://weheartit.com/tanyangu/collections/61103364-20141220
https://weheartit.com/couhuangyong/collections/61103363-20141220
https://weheartit.com/zhanghesu/collections/61103365-20141220
https://weheartit.com/couhuangyong/collections/61103371-20141220
https://weheartit.com/tanyangu/collections/61103369-20141220
https://weheartit.com/jiaweidi/collections/61103368-20141220
https://weheartit.com/zhanghesu/collections/61103375-20141220
https://weheartit.com/haoshuosu/collections/61103367-20141220
https://weheartit.com/couhuangyong/collections/61103379-20141220
https://weheartit.com/tanyangu/collections/61103380-20141220
https://weheartit.com/jiaweidi/collections/61103381-20141220
https://weheartit.com/haoshuosu/collections/61103384-20141220
https://weheartit.com/zhanghesu/collections/61103383-20141220
https://weheartit.com/couhuangyong/collections/61103391-20141220
https://weheartit.com/haoshuosu/collections/61103395-20141220
https://weheartit.com/jiaweidi/collections/61103393-20141220
https://weheartit.com/couhuangyong/collections/61103398-20141220
https://weheartit.com/haoshuosu/collections/61103400-20141220
https://weheartit.com/jiaweidi/collections/61103401-20141220
https://weheartit.com/tanyangu/collections/61103396-20141220
https://weheartit.com/haoshuosu/collections/61103408-20141220
https://weheartit.com/jiaweidi/collections/61103410-20141220
https://weheartit.com/zhanghesu/collections/61103397-20141220
https://weheartit.com/couhuangyong/collections/61103407-20141220
https://weheartit.com/tanyangu/collections/61103416-20141220
https://weheartit.com/jiaweidi/collections/61103418-20141220
https://weheartit.com/zhanghesu/collections/61103420-20141220
https://weheartit.com/haoshuosu/collections/61103417-20141220
https://weheartit.com/couhuangyong/collections/61103421-20141220
https://weheartit.com/haoshuosu/collections/61103427-20141220
https://weheartit.com/tanyangu/collections/61103424-20141220
https://weheartit.com/zhanghesu/collections/61103425-20141220
https://weheartit.com/couhuangyong/collections/61103428-20141220
https://weheartit.com/jiaweidi/collections/61103430-20141220
https://weheartit.com/haoshuosu/collections/61103432-20141220
https://weheartit.com/couhuangyong/collections/61103434-20141220
https://weheartit.com/zhanghesu/collections/61103435-20141220
https://weheartit.com/haoshuosu/collections/61103436-20141220
https://weheartit.com/couhuangyong/collections/61103438-20141220
https://weheartit.com/jiaweidi/collections/61103437-20141220
https://weheartit.com/zhanghesu/collections/61103439-20141220
https://weheartit.com/haoshuosu/collections/61103440-20141220
https://weheartit.com/jiaweidi/collections/61103442-20141220
https://weheartit.com/couhuangyong/collections/61103441-20141220
https://weheartit.com/zhanghesu/collections/61103443-20141220
https://weheartit.com/jiaweidi/collections/61103447-20141220
https://weheartit.com/couhuangyong/collections/61103448-20141220
https://weheartit.com/haoshuosu/collections/61103446-20141220
https://weheartit.com/zhanghesu/collections/61103450-20141220
https://weheartit.com/jiaweidi/collections/61103452-20141220
https://weheartit.com/couhuangyong/collections/61103453-20141220
https://weheartit.com/zhanghesu/collections/61103455-20141220
https://weheartit.com/haoshuosu/collections/61103454-20141220
https://weheartit.com/jiaweidi/collections/61103458-20141220
https://weheartit.com/couhuangyong/collections/61103459-20141220
https://weheartit.com/haoshuosu/collections/61103461-20141220
https://weheartit.com/jiaweidi/collections/61103462-20141220
https://weheartit.com/zhanghesu/collections/61103460-20141220
https://weheartit.com/tanyangu/collections/61103467-20141220
https://weheartit.com/haoshuosu/collections/61103468-20141220
https://weheartit.com/couhuangyong/collections/61103465-20141220
https://weheartit.com/zhanghesu/collections/61103470-20141220
https://weheartit.com/tanyangu/collections/61103472-20141220
https://weheartit.com/haoshuosu/collections/61103473-20141220
https://weheartit.com/jiaweidi/collections/61103469-20141220
https://weheartit.com/couhuangyong/collections/61103474-20141220
https://weheartit.com/couhuangyong/collections/61103480-20141220
https://weheartit.com/zhanghesu/collections/61103475-20141220
https://weheartit.com/tanyangu/collections/61103478-20141220
https://weheartit.com/haoshuosu/collections/61103477-20141220
https://weheartit.com/jiaweidi/collections/61103479-20141220
https://weheartit.com/couhuangyong/collections/61103481-20141220
https://weheartit.com/tanyangu/collections/61103483-20141220
https://weheartit.com/zhanghesu/collections/61103482-20141220
https://weheartit.com/jiaweidi/collections/61103485-20141220
https://weheartit.com/couhuangyong/collections/61103486-20141220
https://weheartit.com/haoshuosu/collections/61103484-20141220
https://weheartit.com/zhanghesu/collections/61103491-20141220
https://weheartit.com/tanyangu/collections/61103488-20141220
https://weheartit.com/haoshuosu/collections/61103494-20141220
https://weheartit.com/jiaweidi/collections/61103495-20141220
https://weheartit.com/zhanghesu/collections/61103496-20141220
https://weheartit.com/tanyangu/collections/61103498-20141220
https://weheartit.com/haoshuosu/collections/61103503-20141220
https://weheartit.com/couhuangyong/collections/61103499-20141220
https://weheartit.com/zhanghesu/collections/61103505-20141220
https://weheartit.com/jiaweidi/collections/61103504-20141220
https://weheartit.com/tanyangu/collections/61103506-20141220
https://weheartit.com/haoshuosu/collections/61103507-20141220
https://weheartit.com/tanyangu/collections/61103510-20141220
https://weheartit.com/couhuangyong/collections/61103508-20141220
https://weheartit.com/jiaweidi/collections/61103509-20141220
题目链接https://acm.timus.ru/problem.aspx?space=1&num=1242大致题意:村庄里有几个人不幸被害,是狼人干的!(插一句,这里可以想到一部电影《狼人》,很惊悚),现在就是需要找出可能是狼人的村民!
1、错误描述 freemarker.template.TemplateException:Error parsing including template ftl/main.ftl:on line 643,column84
android app开发中 下面的代码报错误 ,bindService() NullPointerException
我自己分析了下感觉是 onServiceConnected 没有执行,所以才会引起空指针