摘要:
网络地址A类 0.0.0.0~127.255.255.255B类 128.0.0.0~191.255.255.255C类 192.0.0.0~223.255.255.255D类 224.0.0.0~239.255.255.255 组播E类 240.0.0.0~255.255.255.255 研究私有地址10.0.0.0~10.255.255.255172.16.0.0~172.31.255.255192.168.0.0~192.168.255.255A类B类C类的私有地址的分配? 阅读全文
摘要:
子问题,子问题,递归 is beautiful。八皇后问题也可以用这个来解决,加一个判断就行了。 1 #include <iostream> 2 3 using namespace std; 4 static int num = 0; 5 bool check(int * arry, int length) 6 { 7 int i, j; 8 for(i = 0; i < length; ++i) 9 {11 for(j = i+1; j < length; ++j)12 {13 if(arry[i] - arr... 阅读全文