From a0bfb410f3e3d69c0573190e5e952dc4ce136bc0 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 4 Nov 2015 22:30:15 +0800 Subject: [PATCH 001/210] add --- Merge Two Sorted Lists.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Merge Two Sorted Lists.py diff --git a/Merge Two Sorted Lists.py b/Merge Two Sorted Lists.py new file mode 100644 index 0000000..f484291 --- /dev/null +++ b/Merge Two Sorted Lists.py @@ -0,0 +1,39 @@ +# Definition for singly-linked list. +class ListNode(object): + def __init__(self, x): + self.val = x + self.next = None + +class Solution(object): + def mergeTwoLists(self, l1, l2): + """ + :type l1: ListNode + :type l2: ListNode + :rtype: ListNode + """ + head=ListNode(0) + l=head + while l1!=None and l2!=None: + if l1.val Date: Wed, 2 Dec 2015 21:00:57 +0800 Subject: [PATCH 002/210] add --- Next Permutation | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 Next Permutation diff --git a/Next Permutation b/Next Permutation new file mode 100755 index 0000000..1f9a8c8 --- /dev/null +++ b/Next Permutation @@ -0,0 +1,30 @@ +class Solution(object): + def nextPermutation(self, nums): + """ + :type nums: List[int] + :rtype: void Do not return anything, modify nums in-place instead. + """ + la = len(nums) + k = 0 + j = 0 + l = range(la) + for i in l[la-1:0:-1]: + if nums[i]>nums[i-1]: + k=i-1 + break + + for i in l[la-1::-1]: + if nums[i]>nums[k]: + j=i + break + if k==0 and la>1 and nums[0]>nums[1]: + nums.reverse() + elif la>1: + nums[j],nums[k]=nums[k],nums[j] + b = nums[k+1:] + b.reverse() + nums[k+1:]=b +a=Solution() +b=[1] +a.nextPermutation(b) +print b From 3e77edd90078f7f4ae59b6da2136e2800befe870 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 11 Jan 2016 15:52:09 +0800 Subject: [PATCH 003/210] add --- statistics.py | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 statistics.py diff --git a/statistics.py b/statistics.py new file mode 100644 index 0000000..80a03f4 --- /dev/null +++ b/statistics.py @@ -0,0 +1,58 @@ +import numpy as np +def process(node_num): + f = open("../data/omnetpp.out") + data = list() + for line in f: + line = line.strip().split("\t") + data.append(line) + l = len(data) + key = '' + i = 0 + good_array = np.zeros((1000,1000)) + sum_array = np.zeros((1000,1000)) + data_group = list() + while i < l: + data_tmp = data[i] + i += 1 + if data_tmp != '' and data_tmp[3] != key: + if key == '': + key = data_tmp[3] + data_group.append(data_tmp) + continue + key = data_tmp[3] + l_tmp = len(data_group) + node = list() + for k in range(l_tmp): + node_list = data_group[k][2].split('[') + from_node = int(node_list[1].split(']')[0]) + to_node = int(node_list[2].split(']')[0]) + if k == 0: + node.append(from_node) + node.append(to_node) + else: + node.append(to_node) + l_tmp = len(node) + for j in range(l_tmp): + for k in range(j+1,l_tmp): + good_array[node[j]][node[k]] += 1 + sum_array[node[j]][node[k]] += 1 + if data_tmp[3] == 'bad': + node_list = data_tmp[2].split('[') + from_node = int(node_list[1].split(']')[0]) + to_node = int(node_list[2].split(']')[0]) + for j in range(l_tmp): + sum_array[node[j]][to_node] += 1 + while data_tmp[3] == 'bad' and i < l: + i += 1; + data_tmp = data[i] + data_group = list() + data_group.append(data_tmp) + else: + data_group.append(data_tmp) + for i in range(node_num): + print i + for j in range(node_num): + print "%d\t%d\t%d" % (j,int(good_array[i][j]),int(sum_array[i][j])) +if __name__ == "__main__": + node_num = int(raw_input()) + process(node_num) From 213cd353e5ac7b13d49261b212e855f32201b3fe Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 10 May 2016 23:31:47 +0800 Subject: [PATCH 004/210] changs.log --- test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..e69de29 From 31c795e056b86d4e41cdef83d61536a2ba15adce Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 08:58:30 +0800 Subject: [PATCH 005/210] test --- Wiggle_Subsequence.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Wiggle_Subsequence.py diff --git a/Wiggle_Subsequence.py b/Wiggle_Subsequence.py new file mode 100644 index 0000000..99d8148 --- /dev/null +++ b/Wiggle_Subsequence.py @@ -0,0 +1,28 @@ +# -*- coding:utf-8 -*- + +class Solution(object): + def wiggleMaxLength(self, nums): + """ + :type nums: List[int] + :rtype: int + """ + n = len(nums) + ret = 0 + dp = [[0,0] for x in range(n)] + print dp + for i in range(n): + for j in range(i): + if nums[i] - nums[j] > 0: + dp[i][0] = max(dp[j][1] + 1, dp[i][0]) + elif nums[j] - nums[i] < 0: + dp[i][1] = max(dp[j][0] + 1, dp[i][1]) + + print dp[i][1], dp[i][0] + ret = max(ret, max(dp[i][0], dp[i][1])) + + return ret + +if __name__ == "__main__": + s = Solution() + nums = [1,7,4,9,2,5] + print s.wiggleMaxLength(nums) From 92ff5e839212b1b673420c847f1901e48c0a6982 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 09:05:29 +0800 Subject: [PATCH 006/210] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Wiggle_Subsequence.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Wiggle_Subsequence.py b/Wiggle_Subsequence.py index 99d8148..ec1e461 100644 --- a/Wiggle_Subsequence.py +++ b/Wiggle_Subsequence.py @@ -8,16 +8,14 @@ def wiggleMaxLength(self, nums): """ n = len(nums) ret = 0 - dp = [[0,0] for x in range(n)] - print dp + dp = [[1,1] for x in range(n)] for i in range(n): for j in range(i): if nums[i] - nums[j] > 0: dp[i][0] = max(dp[j][1] + 1, dp[i][0]) - elif nums[j] - nums[i] < 0: + elif nums[i] - nums[j] < 0: dp[i][1] = max(dp[j][0] + 1, dp[i][1]) - print dp[i][1], dp[i][0] ret = max(ret, max(dp[i][0], dp[i][1])) return ret From c2ecd76952d882a0830b5ac4635d005db530a3dc Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 09:35:12 +0800 Subject: [PATCH 007/210] =?UTF-8?q?=E6=8F=90=E4=BA=A4Remove=20Duplicates?= =?UTF-8?q?=20from=20Sorted=20Array=20II?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Remove_Duplicates_from_Sorted_Array_II.py | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Remove_Duplicates_from_Sorted_Array_II.py diff --git a/Remove_Duplicates_from_Sorted_Array_II.py b/Remove_Duplicates_from_Sorted_Array_II.py new file mode 100644 index 0000000..ccbb045 --- /dev/null +++ b/Remove_Duplicates_from_Sorted_Array_II.py @@ -0,0 +1,34 @@ + +class Solution(object): + def removeDuplicates(self, nums): + """ + :type nums: List[int] + :rtype: int + """ + n = len(nums) + if n == 0: + return n + j = 1 + c = 1 + pre = nums[0] + for i in range(1, n): + if pre != nums[i]: + pre = nums[i] + c = 1 + nums[j] = pre + j += 1 + else: + c += 1 + if c <= 2: + c += 1 + nums[j] = pre + j += 1 + + return j + + + +if __name__ == "__main__": + s = Solution() + nums = [1,1,1,2,2,3] + print s.removeDuplicates(nums) From 5a182c1509a82aab86439c7bdc268d4f8b50eba6 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 09:48:04 +0800 Subject: [PATCH 008/210] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- submit.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 submit.sh diff --git a/submit.sh b/submit.sh new file mode 100644 index 0000000..dafef7f --- /dev/null +++ b/submit.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +path=`pwd` +log=$1 + +git add $path +git commit -m $log +git push From ff578c30d14b88fa72cc5a11a2d3dd5ab2152295 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 17:01:36 +0800 Subject: [PATCH 009/210] =?UTF-8?q?=E6=9C=AC=E7=A8=8B=E5=BA=8F=E7=AC=AC?= =?UTF-8?q?=E4=B8=80=E7=89=88=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Longest_Repeating_Character_Replacement.py | 0 ...Preorder_Serialization_of_a_Binary_Tree.py | 76 +++++++++++++++++++ submit.sh | 0 3 files changed, 76 insertions(+) create mode 100644 Longest_Repeating_Character_Replacement.py create mode 100644 Verify_Preorder_Serialization_of_a_Binary_Tree.py mode change 100644 => 100755 submit.sh diff --git a/Longest_Repeating_Character_Replacement.py b/Longest_Repeating_Character_Replacement.py new file mode 100644 index 0000000..e69de29 diff --git a/Verify_Preorder_Serialization_of_a_Binary_Tree.py b/Verify_Preorder_Serialization_of_a_Binary_Tree.py new file mode 100644 index 0000000..8d322a0 --- /dev/null +++ b/Verify_Preorder_Serialization_of_a_Binary_Tree.py @@ -0,0 +1,76 @@ +#! -*- coding:utf-8 -*- +import sys + +class Tnode(object): + def __init__(self, data): + self.right = None + self.left = None + self.data = data + + + def __str__(self): + return self.data + +class Solution(object): + def dfs(self, root): + if root.left != None: + self.dfs(root.left) + if root.right != None: + self.dfs(root.right) + + + def isValidSerialization(self, preorder): + preorder_list = preorder.split(',') + n = len(preorder_list) + stack_list = [] + top = -1 + i = -1 + root = None + first = True + self.flag = True + #dfs(preorder_list) + while i < n - 1: + i += 1 + node_data = preorder_list[i] + if first: + first = False + node = Tnode(node_data) + root = node + stack_list.append(node) + top += 1 + else: + if top >= 0: + father_node = stack_list.pop() + top -= 1 + if father_node.data == '#': + i -= 1 + continue + elif father_node.left == None: + + node = Tnode(node_data) + father_node.left = node + stack_list.append(father_node) + top += 1 + stack_list.append(node) + top += 1 + elif father_node.left != None: + node = Tnode(node_data) + father_node.right = node + stack_list.append(node) + top += 1 + else: + self.flag = False + + if len(stack_list) != 1 or stack_list[0].data != '#': + self.flag = False + + return self.flag + + +if __name__ == "__main__": + s = Solution() + preorder = "9,3,4,#,#,1,#,#,2,#,6,#,#" + print s.isValidSerialization(preorder) + + + diff --git a/submit.sh b/submit.sh old mode 100644 new mode 100755 From 2305bfc4b4a6d2845c7ea3f463bbd683d7595e26 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 17:06:52 +0800 Subject: [PATCH 010/210] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BA=86=E7=9B=B8?= =?UTF-8?q?=E5=BA=94=E7=9A=84=E4=BB=A3=E7=A0=81=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Verify_Preorder_Serialization_of_a_Binary_Tree.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Verify_Preorder_Serialization_of_a_Binary_Tree.py b/Verify_Preorder_Serialization_of_a_Binary_Tree.py index 8d322a0..2ecbdd1 100644 --- a/Verify_Preorder_Serialization_of_a_Binary_Tree.py +++ b/Verify_Preorder_Serialization_of_a_Binary_Tree.py @@ -1,6 +1,12 @@ #! -*- coding:utf-8 -*- import sys - +""" +通过非递归的前序遍历,构造出二叉树,通过判断相关条件得到 +非递归前序遍历过程,首先构造根节点,压入栈内,不断出栈,如果出栈元素 +左子树为空则挂到左子树上,并将两个节点前后压入栈中, +如果左子树不为空,则将节点挂到右子树上,将新节点入栈, +如果遇到#则持续出栈,不作处理,完毕 +""" class Tnode(object): def __init__(self, data): self.right = None From b9db85e75dc90977b6f1241d51496e8d4aec6759 Mon Sep 17 00:00:00 2001 From: thydeyx Date: Wed, 19 Oct 2016 17:22:25 +0800 Subject: [PATCH 011/210] Create send_mail.py --- send_mail.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 send_mail.py diff --git a/send_mail.py b/send_mail.py new file mode 100644 index 0000000..b4e25ab --- /dev/null +++ b/send_mail.py @@ -0,0 +1,25 @@ +#!/usr/bin/python +# -*- coding: UTF-8 -*- + +import smtplib +from email.mime.text import MIMEText +from email.header import Header + +sender = 'from@runoob.com' +receivers = ['429240967@qq.com'] # 接收邮件,可设置为你的QQ邮箱或者其他邮箱 + +# 三个参数:第一个为文本内容,第二个 plain 设置文本格式,第三个 utf-8 设置编码 +message = MIMEText('Python 邮件发送测试...', 'plain', 'utf-8') +message['From'] = Header("菜鸟教程", 'utf-8') +message['To'] = Header("测试", 'utf-8') + +subject = 'Python SMTP 邮件测试' +message['Subject'] = Header(subject, 'utf-8') + + +try: + smtpObj = smtplib.SMTP('localhost') + smtpObj.sendmail(sender, receivers, message.as_string()) + print "邮件发送成功" +except smtplib.SMTPException: + print "Error: 无法发送邮件" From ea7a4f55bff50bfac03a1f669507fcfc1129ce9b Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 20:39:56 +0800 Subject: [PATCH 012/210] =?UTF-8?q?=E6=9B=BF=E6=8D=A2=E7=A9=BA=E6=A0=BC?= =?UTF-8?q?=E5=90=8E=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- replace.sh | 27 +++++++++++++++++++++++++++ send_mail.py | 12 ++++++++---- 2 files changed, 35 insertions(+), 4 deletions(-) create mode 100755 replace.sh diff --git a/replace.sh b/replace.sh new file mode 100755 index 0000000..3c953ac --- /dev/null +++ b/replace.sh @@ -0,0 +1,27 @@ +#! /bin/bash + + +pre_comm=`tail -n 1 ~/.bash_history` + +for((i=1;i<10;i)) +do + out='' + c=0 + comm=`tail -n 1 ~/.bash_history` + if [ "$pre_comm" == "$comm" ];then + pre_comm=$comm + else + pre_comm=$comm + for ch in $pre_comm + do + if [ "$c" -eq 0 ];then + out=$ch + c=1 + else + out=${out}"_"${ch} + fi + done + echo -e ${out}"\c" + fi +done + diff --git a/send_mail.py b/send_mail.py index b4e25ab..26fcd28 100644 --- a/send_mail.py +++ b/send_mail.py @@ -5,8 +5,9 @@ from email.mime.text import MIMEText from email.header import Header -sender = 'from@runoob.com' -receivers = ['429240967@qq.com'] # 接收邮件,可设置为你的QQ邮箱或者其他邮箱 +sender = 'thydeyx@163.com' +receivers = '553865290@qq.com' # 接收邮件,可设置为你的QQ邮箱或者其他邮箱 +mail_host="smtp.163.com" # 三个参数:第一个为文本内容,第二个 plain 设置文本格式,第三个 utf-8 设置编码 message = MIMEText('Python 邮件发送测试...', 'plain', 'utf-8') @@ -18,8 +19,11 @@ try: - smtpObj = smtplib.SMTP('localhost') + smtpObj = smtplib.SMTP() + smtpObj.connect(mail_host) + smtpObj.login('thydeyx@163.com', 'thy1123581321') smtpObj.sendmail(sender, receivers, message.as_string()) print "邮件发送成功" -except smtplib.SMTPException: +except smtplib.SMTPException as e: + print e print "Error: 无法发送邮件" From 0d0774a52f52e49764f2b4a81722e61e2b2de1b8 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 21:04:14 +0800 Subject: [PATCH 013/210] =?UTF-8?q?=E6=B3=A8=E6=84=8F=E5=88=A4=E9=87=8D?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...g_with_At_Least_K_Repeating_Characters.cpp | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Longest_Substring_with_At_Least_K_Repeating_Characters.cpp diff --git a/Longest_Substring_with_At_Least_K_Repeating_Characters.cpp b/Longest_Substring_with_At_Least_K_Repeating_Characters.cpp new file mode 100644 index 0000000..3460b15 --- /dev/null +++ b/Longest_Substring_with_At_Least_K_Repeating_Characters.cpp @@ -0,0 +1,21 @@ +class Solution { +public: + int longestSubstring(string s, int k) { + int res = 0, i = 0, n = s.size(); + while (i + k < n) { + int m[26] = {0}, mask = 0, max_idx = i; + for (int j = i; j < n; ++j) { + int t = s[j] - 'a'; + ++m[t]; + if (m[t] < k) mask |= (1 << t); + else mask &= (~(1 << t)); + if (mask == 0) { + res = max(res, j - i + 1); + max_idx = j; + } + } + i = max_idx + 1; + } + return res; + } +}; From f0d38fc4c6f9b3bd164ae86bc5b5e37ba01e661b Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 19 Oct 2016 21:39:58 +0800 Subject: [PATCH 014/210] =?UTF-8?q?=E5=BE=AE=E8=BD=AF=E7=AC=AC=E4=B8=80?= =?UTF-8?q?=E9=A2=98=E4=BA=8C=E5=88=86=E6=9F=A5=E6=89=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Microsoft_one.cpp | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Microsoft_one.cpp diff --git a/Microsoft_one.cpp b/Microsoft_one.cpp new file mode 100644 index 0000000..d081e93 --- /dev/null +++ b/Microsoft_one.cpp @@ -0,0 +1,46 @@ +#include +using namespace std; +int check(int mid, int N, int W, int H, int a[]) +{ + int page = 0; + int w = W / mid; + int h = H / mid; + int p_w,p_w_y,hang=0; + for(int i=0;i>n){ + for(int T=1;T<=n;T++){ + cin>>N>>P>>W>>H; + for(int i=0;i> a[i]; + } + int left=1, right=min(W,H); + while(left <= right){ + mid = (left + right) / 2; + cnt = check(mid, N, W, H, a); + if(cnt > P){ + right = mid - 1; + }else{ + ans = mid; + left = mid + 1; + } + } + cout< Date: Thu, 20 Oct 2016 20:34:33 +0800 Subject: [PATCH 015/210] =?UTF-8?q?=E5=BE=AE=E8=BD=AF=E5=9C=A8=E7=BA=BF?= =?UTF-8?q?=E7=AC=94=E8=AF=95=E7=AC=AC=E4=BA=8C=E7=AC=AC=E4=B8=89=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Microsoft_three.cpp | 102 +++++++++++++++++++++++++++++ Microsoft_two.cpp | 152 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 254 insertions(+) create mode 100644 Microsoft_three.cpp create mode 100644 Microsoft_two.cpp diff --git a/Microsoft_three.cpp b/Microsoft_three.cpp new file mode 100644 index 0000000..a7c7449 --- /dev/null +++ b/Microsoft_three.cpp @@ -0,0 +1,102 @@ +#include +#include +#include +using namespace std; + +const int DOWN=1; +const int RIGHT=0; + +struct State{ + int x,y; + int cost; + int dir; + State(int _x,int _y, int _cost, int _dir):x(_x),y(_y),cost(_cost),dir(_dir){} + State():x(0),y(0),cost(0),dir(RIGHT){}; + bool operator < (const State & arg) const + { + return this->cost > arg.cost; + } +}; + + +int main() +{ + int n,m; + char graph[110][110]; + int vis[110][110][2]; + while(cin >>n>>m){ + priority_queue q; + //cout << n << " " << m << endl; + for(int i=0;i> graph[i][j]; + vis[i][j][0]=INT_MAX; + vis[i][j][1]=INT_MAX; + } + //cout << graph[i] << endl; + } + vis[0][0][1] = 0; + vis[0][0][0] = 0; + State s; + s.x=0; + s.y=0; + s.cost=0; + s.dir=RIGHT; + + q.push(s); + while(!q.empty()){ + State now = q.top(); + int x = now.x; + int y = now.y; + q.pop(); + if(x == n - 1 && y == m - 1){ + cout << now.cost << endl; + break; + } + State down; + down.dir = DOWN; + if(x + 1 < n){ + down.cost = now.cost; + if(now.dir == RIGHT && graph[x][y + 1] == '.' && (y + 1) < m){ + down.cost += 1; + } + + if(graph[x+1][y] == 'b'){ + down.cost += 1; + } + if(down.cost < vis[x + 1][y][DOWN]) + { + down.x = x + 1; + down.y = y; + vis[x + 1][y][DOWN] = down.cost; + q.push(down); + } + + } + State right; + right.dir = RIGHT; + if(y + 1 < m){ + right.cost = now.cost; + if(now.dir == DOWN && graph[x + 1][y] == '.' && (x + 1) < n){ + right.cost += 1; + } + + if(graph[x][y+1]=='b'){ + right.cost += 1; + } + if(right.cost < vis[x][y+1][RIGHT]) + { + right.x = x; + right.y = y+1; + vis[x][y+1][RIGHT] = right.cost; + q.push(right); + } + + } + + } + + } + return 0; +} diff --git a/Microsoft_two.cpp b/Microsoft_two.cpp new file mode 100644 index 0000000..0300458 --- /dev/null +++ b/Microsoft_two.cpp @@ -0,0 +1,152 @@ +#include +#include +#include +#include +#include +#include +#include +using namespace std; + +struct Tnode{ + Tnode* left; + Tnode* right; + int num; + int flag; +}; + +vector split(string s, char delimiter) +{ + vector ret; + int l = s.length(); + int b = 0,e = 0,i; + for(i=0;i> s; + ret = s + ret; + ss.clear(); + data /= 2; + } + return ret; +} + +void createTree(string flag, string ip, int mask, int num, Tnode* root){ + vector ipDelim = split(ip, '.'); + Tnode* node = root; + Tnode* tmp; + for(int i=0;iflag = 1; + else node->flag = 0; + node->num = num; + free(tmp); + //cout <flag < left = NULL; + tmp -> right = NULL; + tmp -> flag = -1; + tmp -> num = -1; + if(binaryS[j] == '0'){ + mask--; + if(node->left == NULL)node->left = tmp; + node = node->left; + }else{ + mask--; + if(node->right == NULL)node->right = tmp; + node = node -> right; + } + //cout << binaryS[j]<<" "<flag <flag = 1; + else node->flag = 0; + node->num = num; + cout <flag <flag < ipDelim; + Tnode* root = (Tnode*)malloc(sizeof(Tnode)); + root ->left = NULL; + root ->right = NULL; + root -> flag = 2; + while(cin >>n>>m){ + for(int i=0;i>filter>>ip; + + ipDelim = split(ip, '/'); + + if (ipDelim.size() == 1){ + createTree(filter, ipDelim[0], 32, i, root); + }else{ + int mask = atoi(ipDelim[1].c_str()); + createTree(filter, ipDelim[0], mask, i, root); + } + //cout << root->flag << endl; + } + + for(int i=0;i>ip; + Tnode* node = root; + ipDelim = split(ip, '.'); + int now_num = INT_MAX; + bool ans = true; + bool over = false; + for(int j=0;jflag <flag != -1){ + if(node->num < now_num){ + now_num = node->num; + if(node->flag == 1)ans = true; + else ans = false; + } + } + if(binaryS[k] == '0' && node->left != NULL)node = node -> left; + else if(binaryS[k] == '1' && node->right != NULL)node = node->right; + else { + over = true; + break; + } + } + if(over)break; + } + if(ans)cout << "YES" << endl; + else cout << "NO" << endl; + } + } + return 0; +} From 95084900dc0f18293c97e8413388c7b8c0704e98 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 20 Oct 2016 20:39:34 +0800 Subject: [PATCH 016/210] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- submit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submit.sh b/submit.sh index dafef7f..699af99 100755 --- a/submit.sh +++ b/submit.sh @@ -3,6 +3,6 @@ path=`pwd` log=$1 -git add $path +git add --ignore-removal $path git commit -m $log git push From deab17d3508e365a77076837c4bc78061f5c8795 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 20 Oct 2016 20:40:35 +0800 Subject: [PATCH 017/210] =?UTF-8?q?=E5=BE=AE=E8=BD=AF=E5=9C=A8=E7=BA=BF?= =?UTF-8?q?=E7=AC=94=E8=AF=95=E7=AC=AC=E4=BA=8C=E9=A2=98trie=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Microsoft_two.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Microsoft_two.cpp b/Microsoft_two.cpp index 0300458..7d14a8f 100644 --- a/Microsoft_two.cpp +++ b/Microsoft_two.cpp @@ -148,5 +148,6 @@ int main() else cout << "NO" << endl; } } - return 0; + return 0; + } From b8819ae4540e4d7bebd69a004f6b2071fc94de9f Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 20 Oct 2016 20:41:20 +0800 Subject: [PATCH 018/210] =?UTF-8?q?=E5=BE=AE=E8=BD=AF=E5=9C=A8=E7=BA=BF?= =?UTF-8?q?=E7=AC=94=E8=AF=95=E7=AC=AC=E4=B8=89=E9=A2=98dp+spfa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Microsoft_three.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Microsoft_three.cpp b/Microsoft_three.cpp index a7c7449..2ddddfa 100644 --- a/Microsoft_three.cpp +++ b/Microsoft_three.cpp @@ -3,6 +3,7 @@ #include using namespace std; + const int DOWN=1; const int RIGHT=0; From de94f592ae190bfefd4770acc9323ef2103d66e6 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 21 Oct 2016 10:23:30 +0800 Subject: [PATCH 019/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=B5=8B?= =?UTF-8?q?=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elimination_Game.py | 29 +++++++++++++++++++++++++++++ ining(int n) { | 0 2 files changed, 29 insertions(+) create mode 100644 Elimination_Game.py create mode 100644 ining(int n) { diff --git a/Elimination_Game.py b/Elimination_Game.py new file mode 100644 index 0000000..21c3e22 --- /dev/null +++ b/Elimination_Game.py @@ -0,0 +1,29 @@ +# -*- coding:utf-8 -*- +class Solution(object): + def __init__(self): + self.left = True + self.step = 1 + self.head = 1 + + + def lastRemaining(self, n): + while n != 1: + if self.left == True: + self.left = False + self.head += self.step + self.step *= 2 + n = n / 2 + else: + self.left = True + if n % 2 != 0: + self.head += self.step + self.step *= 2 + n = n / 2 + return self.head + + + +if __name__ == "__main__": + s = Solution() + n = 9 + print s.lastRemaining(n) diff --git a/ining(int n) { b/ining(int n) { new file mode 100644 index 0000000..e69de29 From ad7a2c6457e01849dc9af0e1052aca17b2155ab5 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 21 Oct 2016 10:25:52 +0800 Subject: [PATCH 020/210] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elimination_Game.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Elimination_Game.py b/Elimination_Game.py index 21c3e22..83443e8 100644 --- a/Elimination_Game.py +++ b/Elimination_Game.py @@ -1,4 +1,34 @@ # -*- coding:utf-8 -*- +""" +example: +1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 + +Let us start with head = 1, left = true, step = 1 (times 2 each turn), remaining = n(24) + + we first move from left, we definitely need to move head to next position. (head = head + step) + So after first loop we will have: + 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 - > 2 4 6 8 10 12 14 16 18 20 22 24 + head = 2, left = false, step = 1 * 2 = 2, remaining = remaining / 2 = 12 + + second loop, we move from right, in what situation we need to move head? + only if the remaining % 2 == 1, in this case we have 12 % 2 == 0, we don't touch head. + so after this second loop we will have: + 2 4 6 8 10 12 14 16 18 20 22 24 - > 2 6 10 14 18 22 + head = 2, left = true, step = 2 * 2 = 4, remaining = remaining / 2 = 6 + + third loop, we move from left, move head to next position + after third loop we will have: + 2 6 10 14 18 22 - > 6 14 22 + head = 6, left = false, step = 4 * 2 = 8, remaining = remaining / 2 = 3 + + fourth loop, we move from right, NOTICE HERE: + we have remaining(3) % 2 == 1, so we know we need to move head to next position + after this loop, we will have + 6 14 22 - > 14 + head = 14, left = true, step = 8 * 2 = 16, remaining = remaining / 2 = 1 + + while loop end, return head +""" class Solution(object): def __init__(self): self.left = True From b06f6ea87efdb3d31ea70254f8b4affa408ab395 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 21 Oct 2016 11:11:20 +0800 Subject: [PATCH 021/210] =?UTF-8?q?=E5=BE=88=E6=97=A0=E8=81=8A=E7=9A=84?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- H_Index.java | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 H_Index.java diff --git a/H_Index.java b/H_Index.java new file mode 100644 index 0000000..0cfffb5 --- /dev/null +++ b/H_Index.java @@ -0,0 +1,37 @@ +import java.io.PrintStream; +import java.util.Arrays; +import java.util.Comparator; + +/** + * Created by Administrator on 2016/10/21 0021. + */ +public class H_Index { + public static int hIndex(int[] citations) { + int n = citations.length, i=0; + Integer citation[] = new Integer[n]; + for(int a:citations){ + citation[i++] = a; + } + PrintStream out = System.out; + Comparator comparator = new Comparator() { + @Override + public int compare(Integer o1, Integer o2) { + if(o1 >= o2)return -1; + else return 1; + } + }; + Arrays.sort(citation, comparator); + for(i = n - 1;i>=0;i--) + { + if(citation[i] >= i)break; + } + return citation[i]; + } + + public static void main(String args[]){ + int a[] = {3, 0, 6, 1, 5}; + PrintStream out = System.out; + int ans = hIndex(a); + out.println(ans); + } +} From 2715ad21ffa99490756358cd5ad3238709d326c0 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 21 Oct 2016 15:31:42 +0800 Subject: [PATCH 022/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Ladder_II.py | 96 +++++++++++++++++++++++++++++++++++++++++++++++ "\\" | 69 ++++++++++++++++++++++++++++++++++ 2 files changed, 165 insertions(+) create mode 100644 Word_Ladder_II.py create mode 100644 "\\" diff --git a/Word_Ladder_II.py b/Word_Ladder_II.py new file mode 100644 index 0000000..be427d9 --- /dev/null +++ b/Word_Ladder_II.py @@ -0,0 +1,96 @@ +# -*- coding:utf-8 -*- + +import sys +from Queue import Queue + +class Solution(object): + + def comp(self, now_word, next_word): + n = len(now_word) + diff = 0 + for i in range(n): + if now_word[i] != next_word[i]: + diff += 1 + if diff > 1: + return 0 + + return 1 + + + def dfs(self, fromList, i): + + node = fromList[i] + if i == self.n + 1: + self.tmp.append(self.endWord) + elif i == 0: + self.tmp.append(self.beginWord) + self.tmp.reverse() + self.ret.append(self.tmp[:]) + self.tmp.reverse() + self.tmp.pop() + return + + for to in node[1]: + if i != self.n + 1: + self.tmp.append(self.wordlist[i - 1]) + self.dfs(fromList, to) + if i != self.n + 1: + self.tmp.pop() + + + def findLadders(self, beginWord, endWord, wordlist): + q = Queue() + self.ret = [] + self.tmp = [] + self.wordlist = wordlist + self.beginWord = beginWord + self.endWord = endWord + n = len(wordlist) + self.n = n + fromList = [[sys.maxint, []] for x in range(n + 2)] + inQ = [0 for x in range(n + 2)] + inQ[0] = 1 + fromList[0][0] = 0 + q.put((beginWord, fromList[0], 0)) + while q.empty() == False: + now_word, state, num_word = q.get() + inQ[num_word] = 0 + if num_word == n + 1: + continue + if self.comp(now_word, endWord) == 1: + if state[0] + 1 < fromList[n + 1][0]: + fromList[n + 1][0] = state[0] + 1 + fromList[n + 1][1] = [num_word] + if inQ[n + 1] == 0: + q.put((endWord, fromList[n + 1], n + 1)) + inQ[n + 1] = 1 + elif state[0] + 1 == fromList[n + 1][0]: + fromList[n + 1][1].append(num_word) + if inQ[n + 1] == 0: + q.put((endWord, fromList[n + 1], n + 1)) + inQ[n + 1] = 1 + for i in range(n): + if self.comp(now_word, wordlist[i]) == 1: + if state[0] + 1 < fromList[i + 1][0]: + fromList[i + 1][0] = state[0] + 1 + fromList[i + 1][1] = [num_word] + if inQ[i + 1] == 0: + q.put((wordlist[i], fromList[i + 1], i + 1)) + inQ[i + 1] = 1 + elif state[0] + 1 == fromList[i + 1][0]: + fromList[i + 1][1].append(num_word) + if inQ[n + 1] == 0: + q.put((endWord, fromList[n + 1], i + 1)) + inQ[n + 1] = 1 + + if fromList[n + 1][0] != sys.maxint: + self.dfs(fromList, n + 1) + return self.ret + + +if __name__ == "__main__": + s = Solution() + beginWord = "hit" + endWord = "cog" + wordList = ["hot","dot","dog","lot","log"] + print s.findLadders(beginWord, endWord, wordList) diff --git "a/\\" "b/\\" new file mode 100644 index 0000000..c5e4808 --- /dev/null +++ "b/\\" @@ -0,0 +1,69 @@ +# -*- coding:utf-8 -*- + +import sys +from Queue import Queue + +class Solution(object): + + def comp(self, now_word, next_word): + n = len(now_word) + diff = 0 + for i in range(n) + if now_word[n] != next_word[n] + diff += 1 + if diff > 1: + return 0 + + return 1 + + + def findLadders(self, beginWord, endWord, wordlist): + q = Queue() + n = len(wordlist) + fromList = [[sys.maxint, []] for x in range(n + 2)] + inQ = [0 for x in range(n + 2)] + inQ[0] = 1 + fromList[0][0] = 0 + q.put((beginWord, fromList[0], 0)) + while q.empty() == False: + now_word, state, num_word = q.get() + inQ[num_word] = 0 + if self.comp(now_word, endWord) == 1: + if state[0] + 1 < fromList[n + 1][0]: + fromList[n + 1][0] = state[0] + 1 + fromList[n + 1][1] = [num_word] + if inQ[n + 1] == 0: + q.put((endWord, fromList[n + 1], n + 1)) + inQ[n + 1] = 1 + elif state[0] + 1 == fromList[n + 1][0]]: + fromList[n + 1][1].append(num_word) + if inQ[n + 1] == 0: + q.put((endWord, fromList[n + 1], n + 1)) + inQ[n + 1] = 1 + break + for i in range(n): + if self.comp(now_word, wordlist[i]) == 1: + if state[0] + 1 < fromList[i + 1][0]: + fromList[i + 1][0] = state[0] + 1 + fromList[i + 1][1] = [num_word] + if inQ[i + 1] == 0: + q.put((wordlist[i], fromList[i + 1])) + inQ[i + 1] = 1 + elif state[0] + 1 == fromList[i + 1][0]: + fromList[i + 1][1].append(num_word) + if inQ[n + 1] == 0: + q.put((endWord, fromList[n + 1], n + 1)) + inQ[n + 1] = 1 + + #if fromList[n + 1][0] != sys.maxint: + #dfs(fromList) + print fromList + return 0 + + +if __name__ == "__main__" + s = Solution() + beginWord = "hit" + endWord = "cog" + wordList = ["hot","dot","dog","lot","log"] + s.findLadders(beginWord, endWord, wordlist) From 7f59cea36c4cd3abe09627b99ad3a4ab02c9043c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 21 Oct 2016 15:34:49 +0800 Subject: [PATCH 023/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Ladder_II.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Word_Ladder_II.py b/Word_Ladder_II.py index be427d9..876fffb 100644 --- a/Word_Ladder_II.py +++ b/Word_Ladder_II.py @@ -1,7 +1,7 @@ # -*- coding:utf-8 -*- import sys -from Queue import Queue +import Queue class Solution(object): @@ -39,7 +39,7 @@ def dfs(self, fromList, i): def findLadders(self, beginWord, endWord, wordlist): - q = Queue() + q = Queue.Queue() self.ret = [] self.tmp = [] self.wordlist = wordlist From a40979a600450647e233157cbd7fb66404929b12 Mon Sep 17 00:00:00 2001 From: thydeyx Date: Fri, 21 Oct 2016 16:25:26 +0800 Subject: [PATCH 024/210] Delete \ --- "\\" | 69 ------------------------------------------------------------ 1 file changed, 69 deletions(-) delete mode 100644 "\\" diff --git "a/\\" "b/\\" deleted file mode 100644 index c5e4808..0000000 --- "a/\\" +++ /dev/null @@ -1,69 +0,0 @@ -# -*- coding:utf-8 -*- - -import sys -from Queue import Queue - -class Solution(object): - - def comp(self, now_word, next_word): - n = len(now_word) - diff = 0 - for i in range(n) - if now_word[n] != next_word[n] - diff += 1 - if diff > 1: - return 0 - - return 1 - - - def findLadders(self, beginWord, endWord, wordlist): - q = Queue() - n = len(wordlist) - fromList = [[sys.maxint, []] for x in range(n + 2)] - inQ = [0 for x in range(n + 2)] - inQ[0] = 1 - fromList[0][0] = 0 - q.put((beginWord, fromList[0], 0)) - while q.empty() == False: - now_word, state, num_word = q.get() - inQ[num_word] = 0 - if self.comp(now_word, endWord) == 1: - if state[0] + 1 < fromList[n + 1][0]: - fromList[n + 1][0] = state[0] + 1 - fromList[n + 1][1] = [num_word] - if inQ[n + 1] == 0: - q.put((endWord, fromList[n + 1], n + 1)) - inQ[n + 1] = 1 - elif state[0] + 1 == fromList[n + 1][0]]: - fromList[n + 1][1].append(num_word) - if inQ[n + 1] == 0: - q.put((endWord, fromList[n + 1], n + 1)) - inQ[n + 1] = 1 - break - for i in range(n): - if self.comp(now_word, wordlist[i]) == 1: - if state[0] + 1 < fromList[i + 1][0]: - fromList[i + 1][0] = state[0] + 1 - fromList[i + 1][1] = [num_word] - if inQ[i + 1] == 0: - q.put((wordlist[i], fromList[i + 1])) - inQ[i + 1] = 1 - elif state[0] + 1 == fromList[i + 1][0]: - fromList[i + 1][1].append(num_word) - if inQ[n + 1] == 0: - q.put((endWord, fromList[n + 1], n + 1)) - inQ[n + 1] = 1 - - #if fromList[n + 1][0] != sys.maxint: - #dfs(fromList) - print fromList - return 0 - - -if __name__ == "__main__" - s = Solution() - beginWord = "hit" - endWord = "cog" - wordList = ["hot","dot","dog","lot","log"] - s.findLadders(beginWord, endWord, wordlist) From 55ab03ea068a236ac175c3f6db8ff2a7bc22dde7 Mon Sep 17 00:00:00 2001 From: thydeyx Date: Fri, 21 Oct 2016 16:25:39 +0800 Subject: [PATCH 025/210] Delete ining(int n) { --- ining(int n) { | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 ining(int n) { diff --git a/ining(int n) { b/ining(int n) { deleted file mode 100644 index e69de29..0000000 From ca1c0e51032c82edd284f403a93f40d00c56bdb3 Mon Sep 17 00:00:00 2001 From: thydeyx Date: Fri, 21 Oct 2016 16:33:11 +0800 Subject: [PATCH 026/210] Create Word_Ladder_2.py --- Word_Ladder_2.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Word_Ladder_2.py diff --git a/Word_Ladder_2.py b/Word_Ladder_2.py new file mode 100644 index 0000000..7a4e5c2 --- /dev/null +++ b/Word_Ladder_2.py @@ -0,0 +1,39 @@ +class Solution(object): + + # Solution using double BFS + + def findLadders(self, begin, end, words_list): + + def construct_paths(source, dest, tree): + if source == dest: + return [[source]] + return [[source] + path for succ in tree[source] + for path in construct_paths(succ, dest, tree)] + + def add_path(tree, word, neigh, is_forw): + if is_forw: tree[word] += neigh, + else: tree[neigh] += word, + + def bfs_level(this_lev, oth_lev, tree, is_forw, words_set): + if not this_lev: return False + if len(this_lev) > len(oth_lev): + return bfs_level(oth_lev, this_lev, tree, not is_forw, words_set) + for word in (this_lev | oth_lev): + words_set.discard(word) + next_lev, done = set(), False + while this_lev: + word = this_lev.pop() + for c in string.ascii_lowercase: + for index in range(len(word)): + neigh = word[:index] + c + word[index+1:] + if neigh in oth_lev: + done = True + add_path(tree, word, neigh, is_forw) + if not done and neigh in words_set: + next_lev.add(neigh) + add_path(tree, word, neigh, is_forw) + return done or bfs_level(next_lev, oth_lev, tree, is_forw, words_set) + + tree, path, paths = collections.defaultdict(list), [begin], [] + is_found = bfs_level(set([begin]), set([end]), tree, True, words_list) + return construct_paths(begin, end, tree) From 8be1e578596eac170220c6b966e7f8f71c6a082e Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 10:15:22 +0800 Subject: [PATCH 027/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- K-th_Smallest_in_Lexicographical_Order.py | 30 +++++++++++++++++++++++ Word_Ladder_II.py | 3 +++ 2 files changed, 33 insertions(+) create mode 100644 K-th_Smallest_in_Lexicographical_Order.py diff --git a/K-th_Smallest_in_Lexicographical_Order.py b/K-th_Smallest_in_Lexicographical_Order.py new file mode 100644 index 0000000..799aad5 --- /dev/null +++ b/K-th_Smallest_in_Lexicographical_Order.py @@ -0,0 +1,30 @@ +# -*- coding:utf-8 -*- + +import sys + +class Solution(object): + def findKthNumber(self, n, k): + ret = 1 + k -= 1 + while k >= 0: + count = 0 + interval = [ret, ret + 1] + while interval[0] <= n: + count += min(interval[1], n + 1) - interval[0] + interval = [10 * interval[0], 10 * interval[1]] + + if count >= k: + k -= count + ret = ret + 1 + else: + k -= 1 + ret = ret * 10 + + return ret + + +if __name__ == "__main__": + s = Solution() + n = 13 + k = 2 + print s.findKthNumber(n, k) diff --git a/Word_Ladder_II.py b/Word_Ladder_II.py index 876fffb..6bf4639 100644 --- a/Word_Ladder_II.py +++ b/Word_Ladder_II.py @@ -53,6 +53,7 @@ def findLadders(self, beginWord, endWord, wordlist): fromList[0][0] = 0 q.put((beginWord, fromList[0], 0)) while q.empty() == False: + n = len(wordlist) now_word, state, num_word = q.get() inQ[num_word] = 0 if num_word == n + 1: @@ -76,11 +77,13 @@ def findLadders(self, beginWord, endWord, wordlist): fromList[i + 1][1] = [num_word] if inQ[i + 1] == 0: q.put((wordlist[i], fromList[i + 1], i + 1)) + wordlist.remove(wordlist[i]) inQ[i + 1] = 1 elif state[0] + 1 == fromList[i + 1][0]: fromList[i + 1][1].append(num_word) if inQ[n + 1] == 0: q.put((endWord, fromList[n + 1], i + 1)) + wordlist.remove(wordlist[i]) inQ[n + 1] = 1 if fromList[n + 1][0] != sys.maxint: From 41fe80ea2fa32f4fc4af0417b89cdcf4c0016dd0 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 10:18:58 +0800 Subject: [PATCH 028/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- K-th_Smallest_in_Lexicographical_Order.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/K-th_Smallest_in_Lexicographical_Order.py b/K-th_Smallest_in_Lexicographical_Order.py index 799aad5..5748a87 100644 --- a/K-th_Smallest_in_Lexicographical_Order.py +++ b/K-th_Smallest_in_Lexicographical_Order.py @@ -6,14 +6,14 @@ class Solution(object): def findKthNumber(self, n, k): ret = 1 k -= 1 - while k >= 0: + while k > 0: count = 0 interval = [ret, ret + 1] while interval[0] <= n: count += min(interval[1], n + 1) - interval[0] interval = [10 * interval[0], 10 * interval[1]] - if count >= k: + if count <= k: k -= count ret = ret + 1 else: From 44eb545da75081ff962f1f7881a19840249f354d Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 10:22:29 +0800 Subject: [PATCH 029/210] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86=E6=B1=82?= =?UTF-8?q?=E7=AC=ACK=E4=B8=AA=E5=AD=97=E5=85=B8=E5=BA=8F=E6=95=B0?= =?UTF-8?q?=E5=AD=97=E7=9A=84=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- K-th_Smallest_in_Lexicographical_Order.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/K-th_Smallest_in_Lexicographical_Order.py b/K-th_Smallest_in_Lexicographical_Order.py index 5748a87..c15b8d8 100644 --- a/K-th_Smallest_in_Lexicographical_Order.py +++ b/K-th_Smallest_in_Lexicographical_Order.py @@ -2,6 +2,13 @@ import sys +""" +这个问题可以根据在i,i+1之间的数字个数计算 +这个个数可以通过如下的代码进行计算 +while interval[0] <= n: + count += min(interval[1], n + 1) - interval[0] + interval = [10 * interval[0], 10 * interval[1]] +""" class Solution(object): def findKthNumber(self, n, k): ret = 1 From a8d9b984ab51fb741b6ee06c6936d4049d030008 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 15:41:47 +0800 Subject: [PATCH 030/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Max_Points_on_a_Line.py | 57 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 Max_Points_on_a_Line.py diff --git a/Max_Points_on_a_Line.py b/Max_Points_on_a_Line.py new file mode 100644 index 0000000..0c90fd6 --- /dev/null +++ b/Max_Points_on_a_Line.py @@ -0,0 +1,57 @@ +# -*- coding:utf-8 -*- + +import sys + + +class Point(object): + + def __init__(self, x = 0, y = 0): + self.x = x + self.y = y + + +class Solution(object): + + def cross(self, p1, p2): + return p1.x * p2.y - p2.x * p1.y + + + def onSegment(self, p1, p2, p3): + if cross(p3 - p1, p3 - p2) == 0: + return True + return False + + + def maxPoints(self, points): + ret = 0 + dict_x = {} + for p1 in points: + dict_k = {} + maxK = 0 + for p2 in points: + if p1 == p2: + continue + if p1.x != p2.x: + k = ((p1.y - p2.y) * 1.0) / ((p1.x - p2.x) * 1.0) + now_k = dict_k.setdefault(k, 1) + dict_k[k] = now_k + 1 + if now_k + 1 > maxK: + maxK = now_k + 1 + now_x = dict_x.get(p1.x, 0) + dict_x[p1.x] = now_x + 1 + if maxK > ret: + ret = maxK + if now_x + 1 > ret: + ret = now_x + + return ret + + +if __name__ == "__main__": + s = Solution() + point1 = Point(1, 1) + point2 = Point(0, 0) + point3 = Point(2, 2) + point4 = Point(1, 2) + points = [point1, point2, point3, point4] + print s.maxPoints(points) From a9bb4aaaa3dbcd554cf7b6577d7be14688763719 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 15:43:45 +0800 Subject: [PATCH 031/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Max_Points_on_a_Line.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Max_Points_on_a_Line.py b/Max_Points_on_a_Line.py index 0c90fd6..ff1d31d 100644 --- a/Max_Points_on_a_Line.py +++ b/Max_Points_on_a_Line.py @@ -53,5 +53,6 @@ def maxPoints(self, points): point2 = Point(0, 0) point3 = Point(2, 2) point4 = Point(1, 2) - points = [point1, point2, point3, point4] +#points = [point1, point2, point3, point4] + points = [point2] print s.maxPoints(points) From 870e78e31f03a4c747d3164a1603127827a6239c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 15:44:36 +0800 Subject: [PATCH 032/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Max_Points_on_a_Line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Max_Points_on_a_Line.py b/Max_Points_on_a_Line.py index ff1d31d..e441d83 100644 --- a/Max_Points_on_a_Line.py +++ b/Max_Points_on_a_Line.py @@ -42,7 +42,7 @@ def maxPoints(self, points): if maxK > ret: ret = maxK if now_x + 1 > ret: - ret = now_x + ret = now_x + 1 return ret From 1a38afdfe583941f440c68c34f054639a5447ac4 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 15:53:31 +0800 Subject: [PATCH 033/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Max_Points_on_a_Line.py | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/Max_Points_on_a_Line.py b/Max_Points_on_a_Line.py index e441d83..111703b 100644 --- a/Max_Points_on_a_Line.py +++ b/Max_Points_on_a_Line.py @@ -26,6 +26,7 @@ def maxPoints(self, points): ret = 0 dict_x = {} for p1 in points: + c = 0 dict_k = {} maxK = 0 for p2 in points: @@ -37,10 +38,16 @@ def maxPoints(self, points): dict_k[k] = now_k + 1 if now_k + 1 > maxK: maxK = now_k + 1 + if p1.x == p2.x and p1.y == p2.y: + c += 1 + + for key in dict_k.iterkeys(): + dict_k[key] += c + if dict_k[key] > ret: + ret = dict_k[key] + now_x = dict_x.get(p1.x, 0) dict_x[p1.x] = now_x + 1 - if maxK > ret: - ret = maxK if now_x + 1 > ret: ret = now_x + 1 @@ -50,9 +57,9 @@ def maxPoints(self, points): if __name__ == "__main__": s = Solution() point1 = Point(1, 1) - point2 = Point(0, 0) + point2 = Point(1, 1) point3 = Point(2, 2) - point4 = Point(1, 2) -#points = [point1, point2, point3, point4] - points = [point2] + point4 = Point(2, 2) + points = [point1, point2, point3, point4] + #points = [point2] print s.maxPoints(points) From 63253f3ff7d43630e1afc526752ac7cf07fae985 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 15:55:54 +0800 Subject: [PATCH 034/210] =?UTF-8?q?=E6=9C=80=E5=A4=9A=E5=87=A0=E4=B8=AA?= =?UTF-8?q?=E7=82=B9=E5=9C=A8=E4=B8=80=E6=9D=A1=E7=BA=BF=E4=B8=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Max_Points_on_a_Line.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Max_Points_on_a_Line.py b/Max_Points_on_a_Line.py index 111703b..bee6fc5 100644 --- a/Max_Points_on_a_Line.py +++ b/Max_Points_on_a_Line.py @@ -2,7 +2,9 @@ import sys - +""" +主要分为两种情况,排列在x垂直的直线上,斜率相同时 +""" class Point(object): def __init__(self, x = 0, y = 0): From f6419b10f9407d6ea0af08bf7cca80445a72b8e1 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 20:44:42 +0800 Subject: [PATCH 035/210] =?UTF-8?q?=E5=AE=9E=E7=8E=B0LRU=E7=AE=97=E6=B3=95?= =?UTF-8?q?=EF=BC=8C=E8=B0=83=E7=94=A8=E4=BA=86java=E4=B8=AD=E7=9A=84Linke?= =?UTF-8?q?dHashMap=EF=BC=8C=E9=9C=80=E8=A1=A5=E8=B6=B3=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E5=AE=9E=E7=8E=B0=E7=BB=86=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LRU_Cache.java | 45 +++++++++++++++++++++++++++++++++++++++++++++ test.txt | 25 +++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 LRU_Cache.java diff --git a/LRU_Cache.java b/LRU_Cache.java new file mode 100644 index 0000000..202c436 --- /dev/null +++ b/LRU_Cache.java @@ -0,0 +1,45 @@ +import java.io.PrintStream; +import java.util.LinkedHashMap; +import java.util.Map; + +/** + * Created by Administrator on 2016/10/24 0024. + */ +//使用LinkedHashMap,其中的哈希函数和HashMap中的一样,但保存了先后顺序. +public class LRU_Cache { + + private Map map; + public LRU_Cache(int capacity) { + map = new MyLinkedHashMap<>(capacity); + } + + public int get(int key) { + return this.map.getOrDefault(key, -1); + } + + public void set(int key, int value) { + this.map.put(key, value); + } + + private static class MyLinkedHashMap extends LinkedHashMap{ + int maximumCapacity; + public MyLinkedHashMap(int capacity){ + super(16, 0.75F, true); + this.maximumCapacity = capacity; + } + + protected boolean removeEldestEntry(Map.Entry eldest){ + return size() > this.maximumCapacity; + } + } + + public static void main(String args[]){ + LRU_Cache l = new LRU_Cache(1); + PrintStream out = System.out; + l.set(2, 1); + out.println(l.get(2)); + l.set(3,2); + out.println(l.get(2)); + out.println(l.get(3)); + } +} diff --git a/test.txt b/test.txt index e69de29..b3f09c0 100644 --- a/test.txt +++ b/test.txt @@ -0,0 +1,25 @@ +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +iwgjojieg +jsdjf +djlsfkjd weiof +jfwoijefw +mv.s +fwseif +jwlejfw +23478jksdjf +12js df +djf234 From d513615f1d490ad217e18a137f16093accc8f025 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 24 Oct 2016 22:25:31 +0800 Subject: [PATCH 036/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Text_Justification.py | 62 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 Text_Justification.py diff --git a/Text_Justification.py b/Text_Justification.py new file mode 100644 index 0000000..e57d49f --- /dev/null +++ b/Text_Justification.py @@ -0,0 +1,62 @@ +# -*- coding:utf-8 -*- + + +import sys + + +class Solution(object): + + def fullJustify(self, words, maxWidth): + + n = maxWidth + sentence_list = [] + ret_list = [] + sentence_l = 0 + word_c = 0 + + for word in words: + word_l = len(word) + word_c += 1 + if sentence_l + word_l + word_c - 1 <= n: + sentence_l += word_l + sentence_list.append(word) + else: + word_c -= 1 + if word_c > 1: + space = (n - sentence_l) / (word_c - 1) + space_surplus = (n - sentence_l) % (word_c - 1) + s = "" + for s_word in sentence_list: + if word_c > 1: + s = s + s_word + " " * (space + (lambda x:1 if x > 0 else 0)(space_surplus)) + space_surplus -= 1 + else: + s = s + s_word + word_c -= 1 + + sentence_l = len(word) + ret_list.append(s) + sentence_list = [word] + word_c = 1 + + if word_c > 1: + space = (n - sentence_l) / (word_c - 1) + space_surplus = (n - sentence_l) % (word_c - 1) + s = "" + for s_word in sentence_list: + if word_c > 1: + s = s + s_word + " " + else: + s = s + s_word + " " * (n - sentence_l - word_c) + word_c -= 1 + + ret_list.append(s) + + return ret_list + + +if __name__ == "__main__": + s = Solution() + words = ["This", "is", "an", "example", "of", "text", "justification."] + maxWidth = 16 + print s.fullJustify(words, maxWidth) From b1f18efbabd59731866038e32d11011a7e1c89e3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 25 Oct 2016 10:08:31 +0800 Subject: [PATCH 037/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Text_Justification.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Text_Justification.py b/Text_Justification.py index e57d49f..1fbf2e2 100644 --- a/Text_Justification.py +++ b/Text_Justification.py @@ -26,13 +26,16 @@ def fullJustify(self, words, maxWidth): space = (n - sentence_l) / (word_c - 1) space_surplus = (n - sentence_l) % (word_c - 1) s = "" - for s_word in sentence_list: - if word_c > 1: - s = s + s_word + " " * (space + (lambda x:1 if x > 0 else 0)(space_surplus)) - space_surplus -= 1 - else: - s = s + s_word - word_c -= 1 + if word_c == 1: + s = s + sentence_list[0] + " " * (n - len(sentence_list[0])) + else: + for s_word in sentence_list: + if word_c > 1: + s = s + s_word + " " * (space + (lambda x:1 if x > 0 else 0)(space_surplus)) + space_surplus -= 1 + else: + s = s + s_word + word_c -= 1 sentence_l = len(word) ret_list.append(s) From cccae9265bb0c37ea35e5d6b01d6e02d213df0cb Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 25 Oct 2016 10:10:49 +0800 Subject: [PATCH 038/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Text_Justification.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Text_Justification.py b/Text_Justification.py index 1fbf2e2..edb0829 100644 --- a/Text_Justification.py +++ b/Text_Justification.py @@ -46,11 +46,12 @@ def fullJustify(self, words, maxWidth): space = (n - sentence_l) / (word_c - 1) space_surplus = (n - sentence_l) % (word_c - 1) s = "" + q = word_c - 1 for s_word in sentence_list: if word_c > 1: s = s + s_word + " " else: - s = s + s_word + " " * (n - sentence_l - word_c) + s = s + s_word + " " * (n - sentence_l - q) word_c -= 1 ret_list.append(s) From dae2d74d5bb34259caa58cba44ddb4674a6fa6c8 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 25 Oct 2016 20:39:33 +0800 Subject: [PATCH 039/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Guess_Number_Higher_or_Lower_II.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Guess_Number_Higher_or_Lower_II.py diff --git a/Guess_Number_Higher_or_Lower_II.py b/Guess_Number_Higher_or_Lower_II.py new file mode 100644 index 0000000..cc2980f --- /dev/null +++ b/Guess_Number_Higher_or_Lower_II.py @@ -0,0 +1,20 @@ +# -*- coding:utf-8 -*- + + +import sys + +class Solution(object): + def getMoneyAmount(self, n): + dp = [[0] * (n+1) for _ in range(n+ 1)] + for gap in range(1, n): + for low in range(1, n + 1 - gap): + high = low + gap + dp[low][high] = min(x + max(dp[low][x-1], dp[x+1][high])for x in range(low, high)) + + return dp[1][n] + + +if __name__ == "__main__": + s = Solution() + n = 10 + print s.getMoneyAmount(n) From 0ff67d4034cbbbf892676105ec5f14a6a6b83cb4 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 09:52:48 +0800 Subject: [PATCH 040/210] =?UTF-8?q?=E8=AE=BA=E6=96=87=E5=BC=95=E7=94=A82:?= =?UTF-8?q?=E4=BA=8C=E5=88=86=E6=9F=A5=E6=89=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- H-Index_II.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 H-Index_II.py diff --git a/H-Index_II.py b/H-Index_II.py new file mode 100644 index 0000000..f878cb5 --- /dev/null +++ b/H-Index_II.py @@ -0,0 +1,28 @@ +# -*- coding:utf-8 -*- + +""" +二分查找注意边界条件 +""" +class Solution(object): + def hIndex(self, citations): + """ + :type citations: List[int] + :rtype: int + """ + l = 0 + r = len(citations) - 1 + n = r + 1 + if n == 0: + return 0 + + while l < r: + mid = (l+r)/2 + if citations[mid] >= n - mid: + r = mid + elif citations[mid] < n - mid: + l = mid + 1 + + if citations[n - 1] < 1: + return 0 + + return n - r From a0eb4622535ede0d9eb83aa839e85593d5054ec9 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 10:54:45 +0800 Subject: [PATCH 041/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_the_Duplicate_Number.py | 24 ++++++++++++++++++++++++ Subsets_II.py | 14 ++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 Find_the_Duplicate_Number.py create mode 100644 Subsets_II.py diff --git a/Find_the_Duplicate_Number.py b/Find_the_Duplicate_Number.py new file mode 100644 index 0000000..fdafd10 --- /dev/null +++ b/Find_the_Duplicate_Number.py @@ -0,0 +1,24 @@ +# -*- coding:utf-8 -*- + + +import sys + +class Solution(object): + def findDuplicate(self, nums): + n = len(nums) + ans = 0 + for i in range(32): + mask = 1 << i + a = b = 0 + for j in range(n): + a += (j & mask) + b += (nums[j] & mask) + ans += (mask if b > a else 0) + + return ans + + +if __name__ == "__main__": + s = Solution() + nums = [1,2,3,4,5,6,6,6,6,7] + print s.findDuplicate(nums) diff --git a/Subsets_II.py b/Subsets_II.py new file mode 100644 index 0000000..0148074 --- /dev/null +++ b/Subsets_II.py @@ -0,0 +1,14 @@ +# -*- coding:utf-8 -*- + + +import sys + +class Solution(object): + def subsetsWithDup(self, nums): + + + +if __name__ == "__main__": + s = Solution() + nums = [1,2,2] + s.subsetsWithDup(nums) From 2b83caad357cb91e60b7c6458cd1e1fcfa884c45 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 14:47:39 +0800 Subject: [PATCH 042/210] new --- new.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 new.txt diff --git a/new.txt b/new.txt new file mode 100644 index 0000000..633fdaf --- /dev/null +++ b/new.txt @@ -0,0 +1,20 @@ +class Solution {
public: +//i &array) { + if(array.size() == 0 || array.size() == 1) + return -1; + if(array.size() == 2) { + return array[1] - array[0]; + } + int maxres,premin; + maxres = array[1] - array[0]; + premin = array[0]; + for(int i = 1;i < array.size();i++) { + if (array[i] - premin > maxres) + maxres = array[i] - premin; + if (array[i] < premin) + premin = array[i]; + } + return maxres; + } +} \ No newline at end of file From 2ec8cb7e7e19e2790a99654ce260a72740bb7337 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 14:49:54 +0800 Subject: [PATCH 043/210] new --- new.txt | 86 +++++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 69 insertions(+), 17 deletions(-) diff --git a/new.txt b/new.txt index 633fdaf..be9bba3 100644 --- a/new.txt +++ b/new.txt @@ -1,20 +1,72 @@ -class Solution {
public: -//i &array) { - if(array.size() == 0 || array.size() == 1) - return -1; - if(array.size() == 2) { - return array[1] - array[0]; +//class for minKsum +struct Point { + int x; + int y; + int sum; +}; +bool operator<(Point a,Point b){ + return a.sum > b.sum; +} +class Solution { +public: +//array A,arrayB, obtain the minest k a[i]+b[j]. that a[0]+b[0] is the minest + vector minKsum(vector i_A,vector i_B,int k) { + vector res; + priority_queue priorityq; + if(i_A.size() == 0&&i_B.size() == 0) { + return res; } - int maxres,premin; - maxres = array[1] - array[0]; - premin = array[0]; - for(int i = 1;i < array.size();i++) { - if (array[i] - premin > maxres) - maxres = array[i] - premin; - if (array[i] < premin) - premin = array[i]; + if(i_A.size() == 0) { + if (i_B.size() > k) + { + return res; + } + return vector(i_B.begin(),i_B.begin()+k); } - return maxres; + if(i_B.size() == 0) { + if(i_A.size() > k) + { + return res; + } + return vector(i_A.begin(),i_A.begin()+k); + } + Point first; + first.x = 0; + first.y = 0; + first.sum = i_A[0] + i_B[0]; + priorityq.push(first); + while (!priorityq.empty()&&res.size() != k) + { + Point tmpoutput = priorityq.top(); + priorityq.pop(); + res.push_back(tmpoutput.sum); + if(tmpoutput.y == 0) { + if (tmpoutput.x + 1 < i_A.size()) + { + Point tmp; + tmp.x = tmpoutput.x + 1; + tmp.y = tmpoutput.y; + tmp.sum = i_A[tmpoutput.x + 1] + i_B[tmpoutput.y]; + priorityq.push(tmp); + } + if (tmpoutput.y + 1 < i_B.size()) { + Point tmp; + tmp.x = tmpoutput.x; + tmp.y = tmpoutput.y + 1; + tmp.sum = i_A[tmpoutput.x] + i_B[tmpoutput.y + 1]; + priorityq.push(tmp); + } + } + else { + if(tmpoutput.y + 1 < i_B.size()) { + Point tmp; + tmp.x = tmpoutput.x; + tmp.y = tmpoutput.y + 1; + tmp.sum = i_A[tmpoutput.x] + i_B[tmpoutput.y + 1]; + priorityq.push(tmp); + } + } + } + return res; } -} \ No newline at end of file +} From 7e5892235ee65fa937c8032dfc9d2eff161d93c0 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 14:51:21 +0800 Subject: [PATCH 044/210] new.txt --- new.txt | 77 +++++++++++---------------------------------------------- 1 file changed, 15 insertions(+), 62 deletions(-) diff --git a/new.txt b/new.txt index be9bba3..2f9fb1d 100644 --- a/new.txt +++ b/new.txt @@ -1,72 +1,25 @@ -//class for minKsum -struct Point { - int x; - int y; - int sum; -}; -bool operator<(Point a,Point b){ - return a.sum > b.sum; -} class Solution { public: -//array A,arrayB, obtain the minest k a[i]+b[j]. that a[0]+b[0] is the minest - vector minKsum(vector i_A,vector i_B,int k) { - vector res; - priority_queue priorityq; - if(i_A.size() == 0&&i_B.size() == 0) { - return res; - } - if(i_A.size() == 0) { - if (i_B.size() > k) - { - return res; - } - return vector(i_B.begin(),i_B.begin()+k); + int binarySearch(vector &array, int target) { + if(array.size() == 1) { + if (array[0] == target) + return 0; + else + return -1; } - if(i_B.size() == 0) { - if(i_A.size() > k) - { - return res; + int start = 0,end = array.size() - 1,mid; + while(start <= end) { + mid = (start + end)/2; + if(array[mid] == target && (mid == 0 || array[mid-1] != target)) { + return mid; } - return vector(i_A.begin(),i_A.begin()+k); - } - Point first; - first.x = 0; - first.y = 0; - first.sum = i_A[0] + i_B[0]; - priorityq.push(first); - while (!priorityq.empty()&&res.size() != k) - { - Point tmpoutput = priorityq.top(); - priorityq.pop(); - res.push_back(tmpoutput.sum); - if(tmpoutput.y == 0) { - if (tmpoutput.x + 1 < i_A.size()) - { - Point tmp; - tmp.x = tmpoutput.x + 1; - tmp.y = tmpoutput.y; - tmp.sum = i_A[tmpoutput.x + 1] + i_B[tmpoutput.y]; - priorityq.push(tmp); - } - if (tmpoutput.y + 1 < i_B.size()) { - Point tmp; - tmp.x = tmpoutput.x; - tmp.y = tmpoutput.y + 1; - tmp.sum = i_A[tmpoutput.x] + i_B[tmpoutput.y + 1]; - priorityq.push(tmp); - } + else if(target <= array[mid]) { + end = mid - 1; } else { - if(tmpoutput.y + 1 < i_B.size()) { - Point tmp; - tmp.x = tmpoutput.x; - tmp.y = tmpoutput.y + 1; - tmp.sum = i_A[tmpoutput.x] + i_B[tmpoutput.y + 1]; - priorityq.push(tmp); - } + start = mid + 1; } } - return res; + return -1; } } From d3c86c5c3edb6237c4cdb9a90b9f31b29d6567aa Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 14:52:41 +0800 Subject: [PATCH 045/210] new --- new.txt | 170 +++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 150 insertions(+), 20 deletions(-) diff --git a/new.txt b/new.txt index 2f9fb1d..abd48f4 100644 --- a/new.txt +++ b/new.txt @@ -1,25 +1,155 @@ +#include +#include +#include +using namespace std; +struct TreeNode { + TreeNode *left; + TreeNode *right; + int value; + TreeNode(int v) {value = v;} +}; class Solution { public: - int binarySearch(vector &array, int target) { - if(array.size() == 1) { - if (array[0] == target) - return 0; - else - return -1; + int recurseTree(TreeNode *root) { + if (root == NULL) + return 0; + int tdepth = depth(root); + return (int)pow((double)2,tdepth-1) - 1 + recuseNode(root,tdepth); + } + //ݹͳȫһڵ + int recuseNode(TreeNode *root,int depth) { + if(root == NULL) + return 0; + //һŽͳƣdepth == 1 + if(root->left == NULL && root->right == NULL && depth == 1) + return 1; + return recuseNode(root->left,depth-1)+recuseNode(root->right,depth-1); + } + int dc(TreeNode *root) { + if(root == NULL) + return 0; + int treedepth = depth(root); + if(treedepth == 1) + return 1; + else + return (int)pow((double)2,treedepth-1) - 1 + devide_conquer(root); + } + //ͳȫһڵ + int devide_conquer(TreeNode *root) { + int tdepth = depth(root); + //ֻ㣬ֱӿԵõһڵ + if(tdepth == 2) { + if(root->right == NULL) + return 1; + return 2; + } + int leftdepth = depth(root->left); + int rightdepth = depth(root->right); + //right side + if (leftdepth == rightdepth) { + return (int)pow((double)2,tdepth-1-1) + devide_conquer(root->right); } - int start = 0,end = array.size() - 1,mid; - while(start <= end) { - mid = (start + end)/2; - if(array[mid] == target && (mid == 0 || array[mid-1] != target)) { - return mid; - } - else if(target <= array[mid]) { - end = mid - 1; - } - else { - start = mid + 1; - } + //left side + else if(leftdepth > rightdepth) { + return devide_conquer(root->left); + } + else { + //error + } + } + // + int depth(TreeNode *root) { + int depth = 0; + TreeNode *cur = root; + while(cur != NULL) { + cur = cur->left; + depth++; } - return -1; + return depth; } -} +}; +int main(int argc,char **argv) { + TreeNode *_1root = new TreeNode(1); + _1root->left = NULL; + _1root->right = NULL; + + TreeNode *_2root1 = new TreeNode(1); + TreeNode *_2root2 = new TreeNode(2); + TreeNode *_2root3 = new TreeNode(3); + TreeNode *_2root4 = new TreeNode(4); + TreeNode *_2root5 = new TreeNode(5); + TreeNode *_2root6 = new TreeNode(6); + TreeNode *_2root7 = new TreeNode(7); + TreeNode *_2root8 = new TreeNode(8); + TreeNode *_2root9 = new TreeNode(9); + TreeNode *_2root10 = new TreeNode(10); + TreeNode *_2root11 = new TreeNode(11); + TreeNode *_2root12 = new TreeNode(12); + + _2root1->left = _2root2; + _2root1->right = _2root3; + + _2root2->left = _2root4; + _2root2->right = _2root5; + + _2root3->left = _2root6; + _2root3->right = _2root7; + + _2root4->left = _2root8; + _2root4->right = _2root9; + + _2root5->left = _2root10; + _2root5->right = _2root11; + + _2root6->left = _2root12; + _2root6->right = NULL; + + _2root7->left = NULL; + _2root7->right = NULL; + + _2root8->left = NULL; + _2root8->right = NULL; + + _2root9->left = NULL; + _2root9->right = NULL; + + _2root10->left = NULL; + _2root10->right = NULL; + + _2root11->left = NULL; + _2root11->right = NULL; + + _2root12->left = NULL; + _2root12->right = NULL; + + Solution s; + int s11,s12,s21,s22; + + clock_t start,finish; + start = clock(); + for(int i = 0;i < 1000000;i++) + s11 = s.dc(_1root); + finish = clock(); + double t11 = double(finish - start); + start = clock(); + for(int i = 0;i < 1000000;i++) + s12 = s.recurseTree(_1root); + finish = clock(); + double t12 = double(finish - start); + + start = clock(); + for(int i = 0;i < 1000000;i++) + s21 = s.dc(_2root1); + finish = clock(); + double t21 = double(finish - start); + start = clock(); + for(int i = 0;i < 1000000;i++) + s22 = s.recurseTree(_2root1); + finish = clock(); + double t22 = double(finish - start); + + cout<<"s11:"< Date: Wed, 26 Oct 2016 14:53:56 +0800 Subject: [PATCH 046/210] new --- new.txt | 183 +++++++++++--------------------------------------------- 1 file changed, 35 insertions(+), 148 deletions(-) diff --git a/new.txt b/new.txt index abd48f4..83c2898 100644 --- a/new.txt +++ b/new.txt @@ -1,155 +1,42 @@ -#include -#include -#include -using namespace std; -struct TreeNode { - TreeNode *left; - TreeNode *right; - int value; - TreeNode(int v) {value = v;} -}; -class Solution { -public: - int recurseTree(TreeNode *root) { - if (root == NULL) - return 0; - int tdepth = depth(root); - return (int)pow((double)2,tdepth-1) - 1 + recuseNode(root,tdepth); +class Solution {
public: +//postorder sequece and checkout if it can be construct BST + bool validBST(vector &postorder) { + return validBST_recurse(postorder, 0, postorder.size() - 1, INT_MIN, INT_MAX); } - //ݹͳȫһڵ - int recuseNode(TreeNode *root,int depth) { - if(root == NULL) - return 0; - //һŽͳƣdepth == 1 - if(root->left == NULL && root->right == NULL && depth == 1) - return 1; - return recuseNode(root->left,depth-1)+recuseNode(root->right,depth-1); - } - int dc(TreeNode *root) { - if(root == NULL) - return 0; - int treedepth = depth(root); - if(treedepth == 1) - return 1; - else - return (int)pow((double)2,treedepth-1) - 1 + devide_conquer(root); - } - //ͳȫһڵ - int devide_conquer(TreeNode *root) { - int tdepth = depth(root); - //ֻ㣬ֱӿԵõһڵ - if(tdepth == 2) { - if(root->right == NULL) - return 1; - return 2; - } - int leftdepth = depth(root->left); - int rightdepth = depth(root->right); - //right side - if (leftdepth == rightdepth) { - return (int)pow((double)2,tdepth-1-1) + devide_conquer(root->right); - } - //left side - else if(leftdepth > rightdepth) { - return devide_conquer(root->left); + bool validBST_recurse(vector &postorder, int start, int end, int min, int max) { + if(end < start) { + return true; } - else { - //error + if(end == start) { + return postorder[end] > min && postorder[end] < max; } + int partition = binaryPartition(postorder,start,end); + bool left = validBST_recurse(postorder, start, partition, min, postorder[end]); + bool right = validBST_recurse(postorder, partition+1, end-1, postorder[end], max); + return left&&right; } - // - int depth(TreeNode *root) { - int depth = 0; - TreeNode *cur = root; - while(cur != NULL) { - cur = cur->left; - depth++; + //partition to two part, postorder[p] < postorder[end] && portorder[p+1] > postorder[end] + int binaryPartition(vector &postorder, int start, int end) { + int target = postorder[end]; + int mid; + end = end - 1; + if(start == end) + return start; + while(start < end) { + mid = (start + end)/2; + if(postorder[mid] < target && (mid == end || postorder[mid+1] > target)) { + return mid; + } + else if(postorder[mid] > target && (mid == start || postorder[mid-1] < target)) { + return mid-1; + } + else if(postorder[mid] < target) { + start = mid + 1; + } + else { + end = mid - 1; + } } - return depth; + return -1; } -}; -int main(int argc,char **argv) { - TreeNode *_1root = new TreeNode(1); - _1root->left = NULL; - _1root->right = NULL; - - TreeNode *_2root1 = new TreeNode(1); - TreeNode *_2root2 = new TreeNode(2); - TreeNode *_2root3 = new TreeNode(3); - TreeNode *_2root4 = new TreeNode(4); - TreeNode *_2root5 = new TreeNode(5); - TreeNode *_2root6 = new TreeNode(6); - TreeNode *_2root7 = new TreeNode(7); - TreeNode *_2root8 = new TreeNode(8); - TreeNode *_2root9 = new TreeNode(9); - TreeNode *_2root10 = new TreeNode(10); - TreeNode *_2root11 = new TreeNode(11); - TreeNode *_2root12 = new TreeNode(12); - - _2root1->left = _2root2; - _2root1->right = _2root3; - - _2root2->left = _2root4; - _2root2->right = _2root5; - - _2root3->left = _2root6; - _2root3->right = _2root7; - - _2root4->left = _2root8; - _2root4->right = _2root9; - - _2root5->left = _2root10; - _2root5->right = _2root11; - - _2root6->left = _2root12; - _2root6->right = NULL; - - _2root7->left = NULL; - _2root7->right = NULL; - - _2root8->left = NULL; - _2root8->right = NULL; - - _2root9->left = NULL; - _2root9->right = NULL; - - _2root10->left = NULL; - _2root10->right = NULL; - - _2root11->left = NULL; - _2root11->right = NULL; - - _2root12->left = NULL; - _2root12->right = NULL; - - Solution s; - int s11,s12,s21,s22; - - clock_t start,finish; - start = clock(); - for(int i = 0;i < 1000000;i++) - s11 = s.dc(_1root); - finish = clock(); - double t11 = double(finish - start); - start = clock(); - for(int i = 0;i < 1000000;i++) - s12 = s.recurseTree(_1root); - finish = clock(); - double t12 = double(finish - start); - - start = clock(); - for(int i = 0;i < 1000000;i++) - s21 = s.dc(_2root1); - finish = clock(); - double t21 = double(finish - start); - start = clock(); - for(int i = 0;i < 1000000;i++) - s22 = s.recurseTree(_2root1); - finish = clock(); - double t22 = double(finish - start); - - cout<<"s11:"< Date: Wed, 26 Oct 2016 15:16:24 +0800 Subject: [PATCH 047/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Subsets_II.py | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/Subsets_II.py b/Subsets_II.py index 0148074..126c3d5 100644 --- a/Subsets_II.py +++ b/Subsets_II.py @@ -4,11 +4,38 @@ import sys class Solution(object): + def dfs(self, nums, cur, tmp): + if cur == self.n: + return + + i = cur + while i < self.n: + tmp.append(nums[i]) + self.ret.append(tmp[:]) + self.dfs(nums, i + 1, tmp) + tmp.pop() + + while i < self.n - 1 and nums[i] == nums[i + 1]: + i += 1 + i += 1 + + return + + def subsetsWithDup(self, nums): + nums = sorted(nums) + self.ret = [[]] + self.n = len(nums) + if self.n == 0: + return [] + tmp = [] + self.dfs(nums, 0, tmp) + + return self.ret if __name__ == "__main__": s = Solution() nums = [1,2,2] - s.subsetsWithDup(nums) + print s.subsetsWithDup(nums) From 08aa9d1d38b693d67219f6b3f6e995db9a9a5f50 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 15:18:25 +0800 Subject: [PATCH 048/210] =?UTF-8?q?=E5=B8=A6=E9=87=8D=E5=A4=8D=E5=85=83?= =?UTF-8?q?=E7=B4=A0=E6=B1=82=E5=AD=90=E9=9B=86=E5=B7=B2=E5=8A=A0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Subsets_II.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Subsets_II.py b/Subsets_II.py index 126c3d5..2a7874e 100644 --- a/Subsets_II.py +++ b/Subsets_II.py @@ -1,8 +1,10 @@ # -*- coding:utf-8 -*- - - +""" +注意判重方法 通过排序然后跳过重复元素 加快效率 +""" import sys + class Solution(object): def dfs(self, nums, cur, tmp): if cur == self.n: From 5077ca50a20e6c615c6d39a5d93c8e35405051ea Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 16:02:12 +0800 Subject: [PATCH 049/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Flatten_Binary_Tree_to_Linked_List.py | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Flatten_Binary_Tree_to_Linked_List.py diff --git a/Flatten_Binary_Tree_to_Linked_List.py b/Flatten_Binary_Tree_to_Linked_List.py new file mode 100644 index 0000000..3c477c1 --- /dev/null +++ b/Flatten_Binary_Tree_to_Linked_List.py @@ -0,0 +1,30 @@ +# -*- coding:utf-8 -*- + +import sys + +class TreeNode(object): + def __init__(self, x): + self.val = x + self.left = None + self.right = None + +class Solution(object): + def __init__(self): + self.pre = None + + + def flatten(self, root): + if root == None: + return + self.flatten(root.right) + self.flatten(root.left) + + root.right = self.pre + root.left = None + self.pre = root + + +if __name__ == "__main__": + s = Solution() + root = TreeNode(1) + s.flatten(root) From d6bacfe1e7124e5ca2df06c02f9bd0750fe2cd47 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 18:44:46 +0800 Subject: [PATCH 050/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bitwise_AND_of_Numbers_Range.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Bitwise_AND_of_Numbers_Range.py diff --git a/Bitwise_AND_of_Numbers_Range.py b/Bitwise_AND_of_Numbers_Range.py new file mode 100644 index 0000000..da661b9 --- /dev/null +++ b/Bitwise_AND_of_Numbers_Range.py @@ -0,0 +1,20 @@ +# -*- coding:utf-8 -*- + + +import sys + +class Solution(object): + def rangeBitwiseAnd(self, m, n): + q = 1 + while m != n: + m >>= 1 + n >>= 1 + q <<= 1 + return m * q + + +if __name__ == "__main__": + s = Solution() + m = 5 + n = 7 + print s.rangeBitwiseAnd(m, n) From 0d7d6276b1f7f2db2f83cd41254629c9a800ec28 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 18:48:38 +0800 Subject: [PATCH 051/210] =?UTF-8?q?n-m=E4=B8=8E=E8=BF=90=E7=AE=97=EF=BC=8C?= =?UTF-8?q?=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bitwise_AND_of_Numbers_Range.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Bitwise_AND_of_Numbers_Range.py b/Bitwise_AND_of_Numbers_Range.py index da661b9..7765b44 100644 --- a/Bitwise_AND_of_Numbers_Range.py +++ b/Bitwise_AND_of_Numbers_Range.py @@ -1,6 +1,8 @@ # -*- coding:utf-8 -*- - - +""" +如果n的二进制位长度长于m,则对于n所有位置而言,从n到m的数将形成n的位置中的每一种情况,必然有一种情况是n相反的数 +如果n,m的二进制位数一样长,则对于二者公共前缀保留,剩下的必然相反 +""" import sys class Solution(object): From 04f43657e01255804bd0095acd9d8c38d2663957 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 20:13:01 +0800 Subject: [PATCH 052/210] =?UTF-8?q?=E5=B8=A6=E9=87=8D=E5=A4=8D=E5=85=83?= =?UTF-8?q?=E7=B4=A0=E7=9A=84=E6=97=8B=E8=BD=AC=E6=95=B0=E7=BB=84=E4=BA=8C?= =?UTF-8?q?=E5=88=86=E6=9F=A5=E6=89=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Search_in_Rotated_Sorted_Array_II.cpp | 42 ++++++++++++++++++ new.txt | 63 +++++++++------------------ 2 files changed, 63 insertions(+), 42 deletions(-) create mode 100644 Search_in_Rotated_Sorted_Array_II.cpp diff --git a/Search_in_Rotated_Sorted_Array_II.cpp b/Search_in_Rotated_Sorted_Array_II.cpp new file mode 100644 index 0000000..b082c55 --- /dev/null +++ b/Search_in_Rotated_Sorted_Array_II.cpp @@ -0,0 +1,42 @@ +// Author : TangHanYi +// E-mail : thydeyx@163.com +// Create Date : 16-10-26 20:06:39 +// File Name : Search_in_Rotated_Sorted_Array_II.cpp +// Desc : + + +#include +#include +using namespace std; + +class Solution { +public: + int search(vector& nums, int target) { + int l=0,r=nums.size()-1; + while(l<=r) + { + int mid=(r+l)/2; + if(nums[mid]==target)return true; + if(nums[l] < nums[mid]) + { + if(nums[mid]>target && target>=nums[l])r=mid-1; + else l=mid+1; + }else if(nums[l] > nums[mid]) + { + if(target>nums[mid] && target <= nums[r])l=mid+1; + else r=mid-1; + }else l++; + } + return false; + } +}; + +int main() +{ + Solution s; + int iarray[] = {1,2,3,4,5,6,7,8,9,0}; + int target = 20; + vector nums(iarray,iarray + sizeof(iarray)/sizeof(int)); + cout << s.search(nums, target) << endl; + return 0; +} diff --git a/new.txt b/new.txt index 83c2898..0f9e463 100644 --- a/new.txt +++ b/new.txt @@ -1,42 +1,21 @@ -class Solution {
public: -//postorder sequece and checkout if it can be construct BST - bool validBST(vector &postorder) { - return validBST_recurse(postorder, 0, postorder.size() - 1, INT_MIN, INT_MAX); - } - bool validBST_recurse(vector &postorder, int start, int end, int min, int max) { - if(end < start) { - return true; - } - if(end == start) { - return postorder[end] > min && postorder[end] < max; - } - int partition = binaryPartition(postorder,start,end); - bool left = validBST_recurse(postorder, start, partition, min, postorder[end]); - bool right = validBST_recurse(postorder, partition+1, end-1, postorder[end], max); - return left&&right; - } - //partition to two part, postorder[p] < postorder[end] && portorder[p+1] > postorder[end] - int binaryPartition(vector &postorder, int start, int end) { - int target = postorder[end]; - int mid; - end = end - 1; - if(start == end) - return start; - while(start < end) { - mid = (start + end)/2; - if(postorder[mid] < target && (mid == end || postorder[mid+1] > target)) { - return mid; - } - else if(postorder[mid] > target && (mid == start || postorder[mid-1] < target)) { - return mid-1; - } - else if(postorder[mid] < target) { - start = mid + 1; - } - else { - end = mid - 1; - } - } - return -1; - } -} \ No newline at end of file +class Solution { +public: + int search(vector& nums, int target) { + int l=0,r=nums.size()-1; + while(l<=r) + { + int mid=(r+l)/2; + if(nums[mid]==target)return true; + if(nums[l] < nums[mid]) + { + if(nums[mid]>target && target>=nums[l])r=mid-1; + else l=mid+1; + }else if(nums[l] > nums[mid]) + { + if(target>nums[mid] && target <= nums[r])l=mid+1; + else r=mid-1; + }else l++; + } + return false; + } +}; \ No newline at end of file From 2ea3c30b5d4c5f740ff50fdf9582eb2591901c47 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 21:11:23 +0800 Subject: [PATCH 053/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Search_for_a_Range.py | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Search_for_a_Range.py diff --git a/Search_for_a_Range.py b/Search_for_a_Range.py new file mode 100644 index 0000000..00bc873 --- /dev/null +++ b/Search_for_a_Range.py @@ -0,0 +1,46 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-26 20:27:38 +# File Name : Search_for_a_Range.py +# Desc : + + +class Solution(object): + def searchRange(self, nums, target): + l = 0 + n = len(nums) - 1 + r = n + + while l < r: + mid = (l + r) / 2 + if nums[mid] == target: + r = mid + elif nums[mid] < target: + l = mid + 1 + else: + r = mid - 1 + retR = r + + l = 0 + r = n + while l < r - 1: + mid = (l + r) / 2 + if nums[mid] == target: + l = mid + elif nums[mid] < target: + l = mid + 1 + else: + r = mid - 1 + retL = l + + return [retR, retL] + + +if __name__ == "__main__": + s = Solution() + nums = [5, 7, 7, 8, 8, 10] + target = 8 + print s.searchRange(nums, target) + From 4b6f647774de3910c2c94c60d5d4b613af867de3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 21:13:31 +0800 Subject: [PATCH 054/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Search_for_a_Range.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Search_for_a_Range.py b/Search_for_a_Range.py index 00bc873..cd59de6 100644 --- a/Search_for_a_Range.py +++ b/Search_for_a_Range.py @@ -35,12 +35,14 @@ def searchRange(self, nums, target): r = mid - 1 retL = l + if nums[retR] != target: + return [-1, -1] return [retR, retL] if __name__ == "__main__": s = Solution() nums = [5, 7, 7, 8, 8, 10] - target = 8 + target = 11 print s.searchRange(nums, target) From 5c16650aca44bf087a268a43a6d5d38f2719e658 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 21:19:13 +0800 Subject: [PATCH 055/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Search_for_a_Range.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Search_for_a_Range.py b/Search_for_a_Range.py index cd59de6..3a48905 100644 --- a/Search_for_a_Range.py +++ b/Search_for_a_Range.py @@ -33,7 +33,10 @@ def searchRange(self, nums, target): l = mid + 1 else: r = mid - 1 - retL = l + if l < n and nums[l + 1] == target: + retL = l + 1 + else: + retL = l if nums[retR] != target: return [-1, -1] @@ -42,7 +45,7 @@ def searchRange(self, nums, target): if __name__ == "__main__": s = Solution() - nums = [5, 7, 7, 8, 8, 10] - target = 11 + nums = [2, 2] + target = 2 print s.searchRange(nums, target) From 8738deccbed8ca954bec3030117573a06e10ec32 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 21:20:38 +0800 Subject: [PATCH 056/210] =?UTF-8?q?=E6=9C=89=E5=BA=8F=E6=95=B0=E7=BB=84?= =?UTF-8?q?=E6=89=BE=E5=88=B0=E7=9B=AE=E6=A0=87=E5=80=BC=E5=8C=BA=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Search_for_a_Range.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Search_for_a_Range.py b/Search_for_a_Range.py index 3a48905..7863240 100644 --- a/Search_for_a_Range.py +++ b/Search_for_a_Range.py @@ -5,8 +5,9 @@ # Create Date : 16-10-26 20:27:38 # File Name : Search_for_a_Range.py # Desc : - - +""" +两边二分查找 分别找到头和尾 +""" class Solution(object): def searchRange(self, nums, target): l = 0 From 2c342c047c5183abb565a413b48b8626d33c3116 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 22:06:53 +0800 Subject: [PATCH 057/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- First_Missing_Positive.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 First_Missing_Positive.py diff --git a/First_Missing_Positive.py b/First_Missing_Positive.py new file mode 100644 index 0000000..cc131a2 --- /dev/null +++ b/First_Missing_Positive.py @@ -0,0 +1,30 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-26 21:21:41 +# File Name : First_Missing_Positive.py +# Desc : + + +class Solution(object): + def firstMissingPositive(self, nums): + n = len(nums) + i = 0 + while i < n: + if (nums[i] <= 0 or nums[i] > n) and i < n: + i += 1 + continue + if nums[nums[i] - 1] != nums[i]: + nums[nums[i] - 1], nums[i] = nums[i], nums[nums[i] - 1] + else: + i += 1 + for i in range(n): + if nums[i] - 1 != i: + return i + 1 + + +if __name__ == "__main__": + s = Solution() + nums = [3,4,-1,1] + print s.firstMissingPositive(nums) From c33449d726c726b470c9f3071cc280384c54653b Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 26 Oct 2016 22:10:30 +0800 Subject: [PATCH 058/210] =?UTF-8?q?=E6=97=A0=E5=BA=8F=E6=95=B0=E7=BB=84?= =?UTF-8?q?=E4=B8=AD=E7=AC=AC=E4=B8=80=E4=B8=AA=E6=B6=88=E5=A4=B1=E7=9A=84?= =?UTF-8?q?=E6=AD=A3=E6=95=B4=E6=95=B0=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- First_Missing_Positive.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/First_Missing_Positive.py b/First_Missing_Positive.py index cc131a2..bc24971 100644 --- a/First_Missing_Positive.py +++ b/First_Missing_Positive.py @@ -5,11 +5,14 @@ # Create Date : 16-10-26 21:21:41 # File Name : First_Missing_Positive.py # Desc : - - +""" +因为这个数不会超过N,所以把每个数交换到本来的位置上,扫描一边就好了 +""" class Solution(object): def firstMissingPositive(self, nums): n = len(nums) + if n == 0: + return 1 i = 0 while i < n: if (nums[i] <= 0 or nums[i] > n) and i < n: @@ -23,6 +26,8 @@ def firstMissingPositive(self, nums): if nums[i] - 1 != i: return i + 1 + return n + 1 + if __name__ == "__main__": s = Solution() From 7b4fb98d35dcdf51aa042f16170ee219ed00d983 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 09:10:21 +0800 Subject: [PATCH 059/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Two_Sum_II_Input_array_is_sorted.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Two_Sum_II_Input_array_is_sorted.py diff --git a/Two_Sum_II_Input_array_is_sorted.py b/Two_Sum_II_Input_array_is_sorted.py new file mode 100644 index 0000000..7fb08b6 --- /dev/null +++ b/Two_Sum_II_Input_array_is_sorted.py @@ -0,0 +1,26 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-27 09:04:15 +# File Name : Two_Sum_II_Input_array_is_sorted.py +# Desc : + +class Solution(object): + def twoSum(self, numbers, target): + r = len(numbers) - 1 + l = 0 + while l < r: + if numbers[l] + numbers[r] < target: + l += 1 + elif numbers[l] + numbers[r] > target: + r -= 1 + else: + return [l, r] + + +if __name__ == "__main__": + s = Solution() + numbers = [2,7,11,15] + target = 9 + print s.twoSum(numbers, target) From 03c7ac672f01f29382b1b9fa4f51a6f23eb263e7 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 09:12:11 +0800 Subject: [PATCH 060/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Two_Sum_II_Input_array_is_sorted.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Two_Sum_II_Input_array_is_sorted.py b/Two_Sum_II_Input_array_is_sorted.py index 7fb08b6..f0e1b1e 100644 --- a/Two_Sum_II_Input_array_is_sorted.py +++ b/Two_Sum_II_Input_array_is_sorted.py @@ -5,7 +5,9 @@ # Create Date : 16-10-27 09:04:15 # File Name : Two_Sum_II_Input_array_is_sorted.py # Desc : - +""" +查找l,r时可通过二分查找改进效率 +""" class Solution(object): def twoSum(self, numbers, target): r = len(numbers) - 1 @@ -16,7 +18,7 @@ def twoSum(self, numbers, target): elif numbers[l] + numbers[r] > target: r -= 1 else: - return [l, r] + return [l+1, r+1] if __name__ == "__main__": From 65a6e916a2b712e275a10194eff9a51f089fcd5d Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 09:12:50 +0800 Subject: [PATCH 061/210] =?UTF-8?q?=E6=9C=89=E5=BA=8F=E6=95=B0=E7=BB=84?= =?UTF-8?q?=E6=B1=82=E7=9B=AE=E6=A0=87=E5=92=8C=EF=BC=8C=E5=B7=B2=E5=8A=A0?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Two_Sum_II_Input_array_is_sorted.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Two_Sum_II_Input_array_is_sorted.py b/Two_Sum_II_Input_array_is_sorted.py index f0e1b1e..4032ab8 100644 --- a/Two_Sum_II_Input_array_is_sorted.py +++ b/Two_Sum_II_Input_array_is_sorted.py @@ -8,6 +8,7 @@ """ 查找l,r时可通过二分查找改进效率 """ + class Solution(object): def twoSum(self, numbers, target): r = len(numbers) - 1 From a566d0a285486b644969c170a8acd01cdc8985d0 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 09:21:52 +0800 Subject: [PATCH 062/210] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Minimum_Size_Subarray_Sum.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Minimum_Size_Subarray_Sum.py diff --git a/Minimum_Size_Subarray_Sum.py b/Minimum_Size_Subarray_Sum.py new file mode 100644 index 0000000..e34d51a --- /dev/null +++ b/Minimum_Size_Subarray_Sum.py @@ -0,0 +1,31 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-27 09:15:38 +# File Name : Minimum_Size_Subarray_Sum.py +# Desc : + +class Solution(object): + def minSubArrayLen(self, s, nums): + n = len(nums) + ret = n + 1 + i = 0 + count = 0 + for j in range(n): + count += nums[j] + while i <= j and count >= s: + ret = min(ret, j - i + 1) + count -= nums[i] + i += 1 + if ret == n + 1: + return 0 + else: + return ret + + +if __name__ == "__main__": + s = Solution() + q = 7 + nums = [2,3,1,2,4,3] + print s.minSubArrayLen(q, nums) From 1f965e5bf27d157c5d1c66f232da9077737f48b9 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 09:23:51 +0800 Subject: [PATCH 063/210] =?UTF-8?q?=E6=9C=80=E5=B0=8F=E9=95=BF=E5=BA=A6?= =?UTF-8?q?=E5=AD=90=E4=B8=B2=E5=A4=A7=E4=BA=8E=E7=9B=AE=E6=A0=87=E5=80=BC?= =?UTF-8?q?=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Minimum_Size_Subarray_Sum.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Minimum_Size_Subarray_Sum.py b/Minimum_Size_Subarray_Sum.py index e34d51a..58b769f 100644 --- a/Minimum_Size_Subarray_Sum.py +++ b/Minimum_Size_Subarray_Sum.py @@ -5,7 +5,9 @@ # Create Date : 16-10-27 09:15:38 # File Name : Minimum_Size_Subarray_Sum.py # Desc : - +""" +利用前N个数的和 +""" class Solution(object): def minSubArrayLen(self, s, nums): n = len(nums) From fc76b6541b96a1c28cf8bb4b712b5be9c2cb771b Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 09:30:06 +0800 Subject: [PATCH 064/210] =?UTF-8?q?=E6=9C=89=E5=BA=8F=E6=95=B0=E7=BB=84?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E8=BF=9E=E7=BB=AD=E5=AD=90=E6=95=B0=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Summary_Ranges.cpp | 31 +++++++++++++++++++++++++++++++ new.txt | 32 ++++++++++++-------------------- 2 files changed, 43 insertions(+), 20 deletions(-) create mode 100644 Summary_Ranges.cpp diff --git a/Summary_Ranges.cpp b/Summary_Ranges.cpp new file mode 100644 index 0000000..3e1ae0e --- /dev/null +++ b/Summary_Ranges.cpp @@ -0,0 +1,31 @@ +// Author : TangHanYi +// E-mail : thydeyx@163.com +// Create Date : 16-10-27 09:27:01 +// File Name : Summary_Ranges.cpp +// Desc : + + +#include +using namespace std; + +class Solution { + vector summaryRanges(vector& nums) { + const int size_n = nums.size(); + vector res; + if ( 0 == size_n) return res; + for (int i = 0; i < size_n;) { + int start = i, end = i; + while (end + 1 < size_n && nums[end+1] == nums[end] + 1) end++; + if (end > start) res.push_back(to_string(nums[start]) + "->" + to_string(nums[end])); + else res.push_back(to_string(nums[start])); + i = end+1; + } + return res; + } +}; + +int main() +{ + Solution s; + return 0; +} diff --git a/new.txt b/new.txt index 0f9e463..d531110 100644 --- a/new.txt +++ b/new.txt @@ -1,21 +1,13 @@ -class Solution { -public: - int search(vector& nums, int target) { - int l=0,r=nums.size()-1; - while(l<=r) - { - int mid=(r+l)/2; - if(nums[mid]==target)return true; - if(nums[l] < nums[mid]) - { - if(nums[mid]>target && target>=nums[l])r=mid-1; - else l=mid+1; - }else if(nums[l] > nums[mid]) - { - if(target>nums[mid] && target <= nums[r])l=mid+1; - else r=mid-1; - }else l++; - } - return false; + vector summaryRanges(vector& nums) { + const int size_n = nums.size(); + vector res; + if ( 0 == size_n) return res; + for (int i = 0; i < size_n;) { + int start = i, end = i; + while (end + 1 < size_n && nums[end+1] == nums[end] + 1) end++; + if (end > start) res.push_back(to_string(nums[start]) + "->" + to_string(nums[end])); + else res.push_back(to_string(nums[start])); + i = end+1; } -}; \ No newline at end of file + return res; +} \ No newline at end of file From 2432863a1a3243c16815284229b67f24b3eae78d Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 09:36:34 +0800 Subject: [PATCH 065/210] =?UTF-8?q?=E8=9E=BA=E6=97=8B=E8=AE=BF=E9=97=AE?= =?UTF-8?q?=E6=95=B0=E7=BB=84=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Spiral_Matrix.py | 68 ++++++++++++++++++++++++++++++++++++++++++++++++ new.txt | 61 ++++++++++++++++++++++++++++++++++--------- 2 files changed, 116 insertions(+), 13 deletions(-) create mode 100644 Spiral_Matrix.py diff --git a/Spiral_Matrix.py b/Spiral_Matrix.py new file mode 100644 index 0000000..4a13d18 --- /dev/null +++ b/Spiral_Matrix.py @@ -0,0 +1,68 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-27 09:33:51 +# File Name : Spiral_Matrix.py +# Desc : +""" +分四个方向,每次枚举到最后一个数的前一个数,作为下一个方向的开始 +""" +class Solution(object): + def spiralOrder(self, matrix): + """ + :type matrix: List[List[int]] + :rtype: List[int] + """ + if not matrix: return [] + M = matrix[:] # duplicate matrix + m = len(M) # get m + n = len(M[0]) # get n + i, j = 0, 0 # set coordinate + l = m * n + k = 0 + res = [] + while k < l: + # right + while j < n and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + j += 1 + j -= 1 + i += 1 + # down + while i < m and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + i += 1 + i -= 1 + j -= 1 + # left + while j >= 0 and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + j -= 1 + j += 1 + i -= 1 + # up + while i >= 0 and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + i -= 1 + i += 1 + j += 1 + return res + + +if __name__ == "__main__": + s = Solution() + matrix = [ + [ 1, 2, 3 ], + [ 4, 5, 6 ], + [ 7, 8, 9 ] + ] + print s.spiralOrder(matrix) diff --git a/new.txt b/new.txt index d531110..4efa4be 100644 --- a/new.txt +++ b/new.txt @@ -1,13 +1,48 @@ - vector summaryRanges(vector& nums) { - const int size_n = nums.size(); - vector res; - if ( 0 == size_n) return res; - for (int i = 0; i < size_n;) { - int start = i, end = i; - while (end + 1 < size_n && nums[end+1] == nums[end] + 1) end++; - if (end > start) res.push_back(to_string(nums[start]) + "->" + to_string(nums[end])); - else res.push_back(to_string(nums[start])); - i = end+1; - } - return res; -} \ No newline at end of file +class Solution(object): + def spiralOrder(self, matrix): + """ + :type matrix: List[List[int]] + :rtype: List[int] + """ + if not matrix: return [] + M = matrix[:] # duplicate matrix + m = len(M) # get m + n = len(M[0]) # get n + i, j = 0, 0 # set coordinate + l = m * n + k = 0 + res = [] + while k < l: + # right + while j < n and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + j += 1 + j -= 1 + i += 1 + # down + while i < m and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + i += 1 + i -= 1 + j -= 1 + # left + while j >= 0 and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + j -= 1 + j += 1 + i -= 1 + # up + while i >= 0 and M[i][j] is not None: + res.append(M[i][j]) + M[i][j] = None + k += 1 + i -= 1 + i += 1 + j += 1 + return res \ No newline at end of file From f7f61a6960033dd48c0cb0a2b56ef4c55eed220a Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 10:01:38 +0800 Subject: [PATCH 066/210] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jump_Game.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Jump_Game.py diff --git a/Jump_Game.py b/Jump_Game.py new file mode 100644 index 0000000..b04704f --- /dev/null +++ b/Jump_Game.py @@ -0,0 +1,26 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-27 09:55:41 +# File Name : Jump_Game.py +# Desc : +class Solution(object): + def canJump(self, nums): + n = len(nums) + dp = [ False for x in range(n)] + dp[0] = True + for i in range(n): + if dp[i] == True: + for j in range(nums[i]): + if i + j + 1 >= n: + break + dp[i +j + 1] = True + return dp[n - 1] + + +if __name__ == "__main__": + s = Solution() + nums = [2,3,1,1,4] + nums = [3,2,1,0,4] + print s.canJump(nums) From a322cc061d1a68ece418e26da791867923ebf773 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 10:08:31 +0800 Subject: [PATCH 067/210] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jump_Game.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Jump_Game.py b/Jump_Game.py index b04704f..97277cf 100644 --- a/Jump_Game.py +++ b/Jump_Game.py @@ -8,15 +8,13 @@ class Solution(object): def canJump(self, nums): n = len(nums) - dp = [ False for x in range(n)] - dp[0] = True - for i in range(n): - if dp[i] == True: - for j in range(nums[i]): - if i + j + 1 >= n: - break - dp[i +j + 1] = True - return dp[n - 1] + i = 0 + reach = 0 + while i <= reach and i < n: + reach = max(i + nums[i], reach) + i += 1 + return i == n + if __name__ == "__main__": From 4399e38e32f7a6ddd596e5d69dc3549385524fe4 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 11:42:17 +0800 Subject: [PATCH 068/210] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jump_Game_II.py | 28 ++++++++++++++++++++ Longest_Repeating_Character_Replacement.pyc | Bin 0 -> 174 bytes 2 files changed, 28 insertions(+) create mode 100644 Jump_Game_II.py create mode 100644 Longest_Repeating_Character_Replacement.pyc diff --git a/Jump_Game_II.py b/Jump_Game_II.py new file mode 100644 index 0000000..b126517 --- /dev/null +++ b/Jump_Game_II.py @@ -0,0 +1,28 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-27 11:32:10 +# File Name : Jump_Game_II.py +# Desc : + + +class Solution(object): + def jump(self, nums): + n = len(nums) + dp = [n + 1 for x in range(n)] + dp[0] = 0 + for i in range(n): + for j in range(nums[i]): + if i + j + 1 < n: + dp[i + j + 1] = min(dp[i] + 1, dp[i + j + 1]) + + return dp[n - 1] + + +if __name__ == "__main__": + s1 = Longest_Repeating_Character_Replacement.__file__ + print s1 + s = Solution() + nums = [2,3,1,1,4] + print s.jump(nums) diff --git a/Longest_Repeating_Character_Replacement.pyc b/Longest_Repeating_Character_Replacement.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2cb4c92022aa2d5808790da91e3811af23f0900f GIT binary patch literal 174 zcmZSn%*%D)B3nc<0~9aCmToNCYT9BGpl9`tt@0^iXl$czS kS_BfyNlZ@7P0cIO1DeADG}|UOKczG$)ehu>VjyM!0L{-VO#lD@ literal 0 HcmV?d00001 From 8660f1e053c4f7a2e6237cee68807b873566018f Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 20:25:34 +0800 Subject: [PATCH 069/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jump_Game_II.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Jump_Game_II.py b/Jump_Game_II.py index b126517..9923627 100644 --- a/Jump_Game_II.py +++ b/Jump_Game_II.py @@ -10,19 +10,20 @@ class Solution(object): def jump(self, nums): n = len(nums) - dp = [n + 1 for x in range(n)] - dp[0] = 0 + currentBoundry = 0 + nextBoundry = 0 + step = 0 for i in range(n): - for j in range(nums[i]): - if i + j + 1 < n: - dp[i + j + 1] = min(dp[i] + 1, dp[i + j + 1]) + if i > currentBoundry: + currentBoundry = nextBoundry + step += 1 + if i + nums[i] > nextBoundry: + nextBoundry = i + nums[i] - return dp[n - 1] + return step if __name__ == "__main__": - s1 = Longest_Repeating_Character_Replacement.__file__ - print s1 s = Solution() nums = [2,3,1,1,4] print s.jump(nums) From adf615cc157af585b0b6a0cb6637345cdfd0b376 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 20:53:02 +0800 Subject: [PATCH 070/210] =?UTF-8?q?=E6=9C=80=E5=B0=8F=E8=B7=B3=E5=87=A0?= =?UTF-8?q?=E6=AD=A5=E8=83=BD=E5=88=B0=E8=BE=BE=E7=BB=88=E7=82=B9,?= =?UTF-8?q?=E5=B7=B2=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jump_Game_II.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jump_Game_II.py b/Jump_Game_II.py index 9923627..1e07757 100644 --- a/Jump_Game_II.py +++ b/Jump_Game_II.py @@ -5,8 +5,9 @@ # Create Date : 16-10-27 11:32:10 # File Name : Jump_Game_II.py # Desc : - - +""" +设置两个边界,如果i遍历超过了当前的边界,则步数需要增加,下个边界通过当前边界内能到达的点去扩充,这样最后求出的就是最小步数 +""" class Solution(object): def jump(self, nums): n = len(nums) From 19c48af7c57bab1a1d90494b98a2a4e987315f8c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 20:53:24 +0800 Subject: [PATCH 071/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Majority_Element_II.py | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Majority_Element_II.py diff --git a/Majority_Element_II.py b/Majority_Element_II.py new file mode 100644 index 0000000..be8b932 --- /dev/null +++ b/Majority_Element_II.py @@ -0,0 +1,50 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-27 20:37:48 +# File Name : Majority_Element_II.py +# Desc : +class Solution(object): + def majorityElement(self, nums): + n = len(nums) + ret = [] + if n == 0: + return ret + + number0, number1 = nums[0], nums[1] + count0, count1 = 1, 1 + for i in range(2, n): + if count0 == 0: + number0 = nums[i] + count0 = 1 + elif count1 == 0: + number1 = nums[i] + count1 = 1 + elif nums[i] == number0: + count0 += 1 + elif nums[i] == number1: + count1 += 1 + else: + count0 -= 1 + count1 -= 1 + + count0 = 0 + count1 = 0 + for i in range(n): + if nums[i] == number1: + count1 += 1 + elif nums[i] == number0: + count0 += 1 + + if count0 > n/3: + ret.append(number0) + if count1 > n/3: + ret.append(number1) + return ret + + +if __name__ == "__main__": + s = Solution() + nums = [1,1,1,2,2,2,2,3,3,3,3] + print s.majorityElement(nums) From 727d29b3ba0117ea5f08b23e1e18bf0f9d924c70 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 21:04:53 +0800 Subject: [PATCH 072/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Majority_Element_II.py | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/Majority_Element_II.py b/Majority_Element_II.py index be8b932..646f8b6 100644 --- a/Majority_Element_II.py +++ b/Majority_Element_II.py @@ -11,20 +11,31 @@ def majorityElement(self, nums): ret = [] if n == 0: return ret + if n == 1: + ret.append(nums[0]) + return ret + if n == 2: + if nums[0] == nums[1]: + ret.append(nums[0]) + return ret + else: + ret.append(nums[0]) + ret.append(nums[1]) + return ret number0, number1 = nums[0], nums[1] count0, count1 = 1, 1 for i in range(2, n): - if count0 == 0: + if nums[i] == number0: + count0 += 1 + elif nums[i] == number1: + count1 += 1 + elif count0 == 0: number0 = nums[i] count0 = 1 elif count1 == 0: number1 = nums[i] count1 = 1 - elif nums[i] == number0: - count0 += 1 - elif nums[i] == number1: - count1 += 1 else: count0 -= 1 count1 -= 1 @@ -47,4 +58,5 @@ def majorityElement(self, nums): if __name__ == "__main__": s = Solution() nums = [1,1,1,2,2,2,2,3,3,3,3] + nums = [8,8,7,7,7] print s.majorityElement(nums) From ba5a5cd8aceb8bb222293746216d79eebbdee9b5 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 27 Oct 2016 21:08:36 +0800 Subject: [PATCH 073/210] =?UTF-8?q?=E6=89=BE=E8=B6=85=E8=BF=87n/3=E7=9A=84?= =?UTF-8?q?=E6=95=B0=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Majority_Element_II.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Majority_Element_II.py b/Majority_Element_II.py index 646f8b6..92ea104 100644 --- a/Majority_Element_II.py +++ b/Majority_Element_II.py @@ -5,6 +5,9 @@ # Create Date : 16-10-27 20:37:48 # File Name : Majority_Element_II.py # Desc : +""" +思路同灌水贴王 +""" class Solution(object): def majorityElement(self, nums): n = len(nums) @@ -23,9 +26,9 @@ def majorityElement(self, nums): ret.append(nums[1]) return ret - number0, number1 = nums[0], nums[1] - count0, count1 = 1, 1 - for i in range(2, n): + number0, number1 = nums[0], nums[0] + count0, count1 = 0, 0 + for i in range(n): if nums[i] == number0: count0 += 1 elif nums[i] == number1: From 06e75dda3e6d82fabfb97c1808e2749559608827 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 15:38:19 +0800 Subject: [PATCH 074/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Unique_Paths_II.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Unique_Paths_II.py diff --git a/Unique_Paths_II.py b/Unique_Paths_II.py new file mode 100644 index 0000000..51a54d5 --- /dev/null +++ b/Unique_Paths_II.py @@ -0,0 +1,33 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-28 15:28:11 +# File Name : Unique_Paths_II.py +# Desc : +class Solution(object): + def uniquePathsWithObstacles(self, obstacleGrid): + n = len(obstacleGrid) + m = len(obstacleGrid[0]) + dp = [[0 for i in range(m)] for j in range(n)] + print dp + dp[0][0] = 1 + for i in range(n): + for j in range(m): + if obstacleGrid[i][j] != 1: + if i > 0 and obstacleGrid[i - 1][j] != 1: + dp[i][j] += dp[i - 1][j] + if j > 0 and obstacleGrid[i][j - 1] != 1: + dp[i][j] += dp[i][j - 1] + + return dp[n - 1][m - 1] + + +if __name__ == "__main__": + s = Solution() + obstacleGrid = [ + [0,0,0], + [0,1,0], + [0,0,0] + ] + print s.uniquePathsWithObstacles(obstacleGrid) From 930ec702f8526d36268d55b2cd333816f79d1142 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 15:40:23 +0800 Subject: [PATCH 075/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Unique_Paths_II.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Unique_Paths_II.py b/Unique_Paths_II.py index 51a54d5..63c0563 100644 --- a/Unique_Paths_II.py +++ b/Unique_Paths_II.py @@ -8,7 +8,12 @@ class Solution(object): def uniquePathsWithObstacles(self, obstacleGrid): n = len(obstacleGrid) + if n == 0: + return 0 m = len(obstacleGrid[0]) + if m == 0: + return 0 + dp = [[0 for i in range(m)] for j in range(n)] print dp dp[0][0] = 1 From c15c1fdb1116b72b7634ab68b1076911645beffa Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 15:41:58 +0800 Subject: [PATCH 076/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Unique_Paths_II.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Unique_Paths_II.py b/Unique_Paths_II.py index 63c0563..2581799 100644 --- a/Unique_Paths_II.py +++ b/Unique_Paths_II.py @@ -16,7 +16,8 @@ def uniquePathsWithObstacles(self, obstacleGrid): dp = [[0 for i in range(m)] for j in range(n)] print dp - dp[0][0] = 1 + if obstacleGri[0][0] != 1: + dp[0][0] = 1 for i in range(n): for j in range(m): if obstacleGrid[i][j] != 1: From cd1e7e7327675e762da7081f5ecddd10c0b9999c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 15:43:17 +0800 Subject: [PATCH 077/210] =?UTF-8?q?=E5=B8=A6=E9=9A=9C=E7=A2=8D=E7=9A=84?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E7=BB=84=E5=90=88=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Unique_Paths_II.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Unique_Paths_II.py b/Unique_Paths_II.py index 2581799..27fd94b 100644 --- a/Unique_Paths_II.py +++ b/Unique_Paths_II.py @@ -5,6 +5,9 @@ # Create Date : 16-10-28 15:28:11 # File Name : Unique_Paths_II.py # Desc : +""" +动态规划算法 +""" class Solution(object): def uniquePathsWithObstacles(self, obstacleGrid): n = len(obstacleGrid) From d6fc00fa2932426e50abac049ac5c346655cf272 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 17:07:15 +0800 Subject: [PATCH 078/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Search.py | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 Word_Search.py diff --git a/Word_Search.py b/Word_Search.py new file mode 100644 index 0000000..e2d69dd --- /dev/null +++ b/Word_Search.py @@ -0,0 +1,56 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-28 16:06:01 +# File Name : Word_Search.py +# Desc : +import copy + +class Solution(object): + + def dfs(self, board, x, y, word, i): + + if x < 0 or y < 0 or x >= self.n or y >= self.m or ord(board[x][y]) != ord(word[i]): + return False + + if i == self.w_l: + return True + + board[x][y] = chr((ord(board[x][y]) ^ 255)) + if self.dfs(board, x + 1, y, word, i + 1) or self.dfs(board, x -1 ,y, word, i + 1) or self.dfs(board, x, y + 1, word, i + 1) or self.dfs(board, x, y - 1, word, i + 1): + return True + board[x][y] = chr((ord(board[x][y]) ^ 255)) + + return False + + + def exist(self, board, word): + self.w_l = len(word) - 1 + if self.w_l < 0: + return True + self.n = len(board) + if self.n == 0: + return False + self.m = len(board[0]) + if self.m == 0: + return False + + for i in range(self.n): + for j in range(self.m): + if self.dfs(copy.deepcopy(board), i, j, word, 0) == True: + return True + + return False + + +if __name__ == "__main__": + s = Solution() + board = [ + ['A','B','C','E'], + ['S','F','C','S'], + ['A','D','E','E'] + ] + word = ["ABCCED", "SEE", "ABCB"] + for w in word: + print s.exist(board, w) From 2410dee62761eaf5319f4e3227a5608bad74f9ff Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 17:11:17 +0800 Subject: [PATCH 079/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Search.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Word_Search.py b/Word_Search.py index e2d69dd..e844bb6 100644 --- a/Word_Search.py +++ b/Word_Search.py @@ -11,22 +11,21 @@ class Solution(object): def dfs(self, board, x, y, word, i): - if x < 0 or y < 0 or x >= self.n or y >= self.m or ord(board[x][y]) != ord(word[i]): - return False - if i == self.w_l: return True + if x < 0 or y < 0 or x >= self.n or y >= self.m or ord(board[x][y]) != ord(word[i]): + return False + board[x][y] = chr((ord(board[x][y]) ^ 255)) - if self.dfs(board, x + 1, y, word, i + 1) or self.dfs(board, x -1 ,y, word, i + 1) or self.dfs(board, x, y + 1, word, i + 1) or self.dfs(board, x, y - 1, word, i + 1): - return True + ret = self.dfs(board, x + 1, y, word, i + 1) or self.dfs(board, x -1 ,y, word, i + 1) or self.dfs(board, x, y + 1, word, i + 1) or self.dfs(board, x, y - 1, word, i + 1) board[x][y] = chr((ord(board[x][y]) ^ 255)) - return False + return ret def exist(self, board, word): - self.w_l = len(word) - 1 + self.w_l = len(word) if self.w_l < 0: return True self.n = len(board) @@ -38,7 +37,7 @@ def exist(self, board, word): for i in range(self.n): for j in range(self.m): - if self.dfs(copy.deepcopy(board), i, j, word, 0) == True: + if self.dfs(board, i, j, word, 0) == True: return True return False From 62d8226e25c95362a0da40f64f5c32eff7a172dc Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 17:12:25 +0800 Subject: [PATCH 080/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Word_Search.py b/Word_Search.py index e844bb6..c4844b9 100644 --- a/Word_Search.py +++ b/Word_Search.py @@ -19,6 +19,7 @@ def dfs(self, board, x, y, word, i): board[x][y] = chr((ord(board[x][y]) ^ 255)) ret = self.dfs(board, x + 1, y, word, i + 1) or self.dfs(board, x -1 ,y, word, i + 1) or self.dfs(board, x, y + 1, word, i + 1) or self.dfs(board, x, y - 1, word, i + 1) + board[x][y] = chr((ord(board[x][y]) ^ 255)) return ret From b5582f90eecc9a02b2bd83caa30822310ee88696 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 28 Oct 2016 17:13:20 +0800 Subject: [PATCH 081/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Search.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Word_Search.py b/Word_Search.py index c4844b9..0b5759f 100644 --- a/Word_Search.py +++ b/Word_Search.py @@ -5,7 +5,6 @@ # Create Date : 16-10-28 16:06:01 # File Name : Word_Search.py # Desc : -import copy class Solution(object): @@ -19,7 +18,6 @@ def dfs(self, board, x, y, word, i): board[x][y] = chr((ord(board[x][y]) ^ 255)) ret = self.dfs(board, x + 1, y, word, i + 1) or self.dfs(board, x -1 ,y, word, i + 1) or self.dfs(board, x, y + 1, word, i + 1) or self.dfs(board, x, y - 1, word, i + 1) - board[x][y] = chr((ord(board[x][y]) ^ 255)) return ret From 767b240d2ba6035fae06a1be13024aac1ae9c08f Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 15:01:56 +0800 Subject: [PATCH 082/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ree_from_Preorder_and_Inorder_Traversal.py | 83 +++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py new file mode 100644 index 0000000..9e285eb --- /dev/null +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -0,0 +1,83 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-28 17:15:43 +# File Name : Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +# Desc : +# Definition for a binary tree node. +class TreeNode(object): + def __init__(self, x): + self.val = x + self.left = None + self.right = None + + +class Solution(object): + + def dfsBulid(self, root, word): + if root == None: + return False + + if type(root.val) != list: + if self.dfsBulid(root.left, word) == True: + return True + if self.dfsBulid(root.right, word) == True: + return True + elif root.val == word: + root.left = None + root.right = None + return True + + if word in root.val: + i = root.val.index(word) + leftList = root.val[:i] + rightList = root.val[i + 1:] + left = None + right = None + if len(leftList) == 1: + leftList = leftList[0] + + if len(rightList) == 1: + rightList = rightList[0] + + if len(leftList) != 0: + left = TreeNode(leftList) + + if len(rightList) != 0: + right = TreeNode(rightList) + + root.val = root.val[i] + root.left = left + root.right = right + return True + + return False + + + def dfs(self, root): + if root == None: + return + + print root.val + self.dfs(root.left) + self.dfs(root.right) + return + + + def buildTree(self, preorder, inorder): + root = TreeNode(inorder) + for word in preorder: + self.dfsBulid(root, word) + print "#######" + #self.dfs(root) + return root + + + +if __name__ == "__main__": + s = Solution() + preorder = list("ABDEFC") + inorder = list("DBEFAC") + print s.buildTree(preorder, inorder) + From 4e249f4101b2e781e474f9412969507bc602416c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 15:03:47 +0800 Subject: [PATCH 083/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index 9e285eb..4be947f 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -66,6 +66,8 @@ def dfs(self, root): def buildTree(self, preorder, inorder): + if len(preorder) == 0 or len(inorder) == 0: + return [] root = TreeNode(inorder) for word in preorder: self.dfsBulid(root, word) From f5ddb52b08b80fc50b2d3ce1b248942dbf10b7b6 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 15:05:29 +0800 Subject: [PATCH 084/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index 4be947f..fe150ed 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -41,10 +41,10 @@ def dfsBulid(self, root, word): if len(rightList) == 1: rightList = rightList[0] - if len(leftList) != 0: + if type(leftList) == list and len(leftList) != 0: left = TreeNode(leftList) - if len(rightList) != 0: + if type(rightList) == list and len(rightList) != 0: right = TreeNode(rightList) root.val = root.val[i] From 11aca509406ab4efa36e6541035849336249e9e9 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 15:08:40 +0800 Subject: [PATCH 085/210] =?UTF-8?q?=E7=AC=AC=E5=9B=9B=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...uct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index fe150ed..2a48a43 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -20,14 +20,14 @@ def dfsBulid(self, root, word): return False if type(root.val) != list: + if root.val == word: + root.left = None + root.right = None + return True if self.dfsBulid(root.left, word) == True: return True if self.dfsBulid(root.right, word) == True: return True - elif root.val == word: - root.left = None - root.right = None - return True if word in root.val: i = root.val.index(word) From d275256e071c45e33584c0390ac91ce2127eee99 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 15:11:45 +0800 Subject: [PATCH 086/210] =?UTF-8?q?=E7=AC=AC=E5=9B=9B=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index 2a48a43..2b8353c 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -71,7 +71,6 @@ def buildTree(self, preorder, inorder): root = TreeNode(inorder) for word in preorder: self.dfsBulid(root, word) - print "#######" #self.dfs(root) return root @@ -81,5 +80,7 @@ def buildTree(self, preorder, inorder): s = Solution() preorder = list("ABDEFC") inorder = list("DBEFAC") + preorder = [1, 2] + inorder = [2, 1] print s.buildTree(preorder, inorder) From a0dc1112154629899792337dee22156085eea362 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 15:16:48 +0800 Subject: [PATCH 087/210] =?UTF-8?q?=E7=AC=AC=E4=BA=94=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index 2b8353c..654b89f 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -41,10 +41,10 @@ def dfsBulid(self, root, word): if len(rightList) == 1: rightList = rightList[0] - if type(leftList) == list and len(leftList) != 0: + if (type(leftList) == list and len(leftList) != 0) or (type(leftList) != list): left = TreeNode(leftList) - if type(rightList) == list and len(rightList) != 0: + if (type(rightList) == list and len(rightList) != 0) or (type(rightList) != list): right = TreeNode(rightList) root.val = root.val[i] From fecc4c0ee8a65387b0194846ff1caafb68b2ad39 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 15:19:35 +0800 Subject: [PATCH 088/210] =?UTF-8?q?=E7=AC=AC=E5=85=AD=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ruct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index 654b89f..b24bbfd 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -18,6 +18,7 @@ class Solution(object): def dfsBulid(self, root, word): if root == None: return False +#print root.val if type(root.val) != list: if root.val == word: @@ -28,6 +29,7 @@ def dfsBulid(self, root, word): return True if self.dfsBulid(root.right, word) == True: return True + return False if word in root.val: i = root.val.index(word) @@ -71,6 +73,7 @@ def buildTree(self, preorder, inorder): root = TreeNode(inorder) for word in preorder: self.dfsBulid(root, word) +# print "######" #self.dfs(root) return root @@ -80,7 +83,7 @@ def buildTree(self, preorder, inorder): s = Solution() preorder = list("ABDEFC") inorder = list("DBEFAC") - preorder = [1, 2] - inorder = [2, 1] + preorder = [1, 2, 3] + inorder = [2, 1, 3] print s.buildTree(preorder, inorder) From 9df035b578f339864dbce3626202def2e210a475 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 31 Oct 2016 21:38:58 +0800 Subject: [PATCH 089/210] =?UTF-8?q?=E7=AC=AC=E4=B8=83=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ree_from_Preorder_and_Inorder_Traversal.py | 90 +++++++++---------- ..._from_Preorder_and_Inorder_Traversal_bk.py | 89 ++++++++++++++++++ 2 files changed, 134 insertions(+), 45 deletions(-) create mode 100644 Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal_bk.py diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index b24bbfd..47e1c23 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -15,46 +15,6 @@ def __init__(self, x): class Solution(object): - def dfsBulid(self, root, word): - if root == None: - return False -#print root.val - - if type(root.val) != list: - if root.val == word: - root.left = None - root.right = None - return True - if self.dfsBulid(root.left, word) == True: - return True - if self.dfsBulid(root.right, word) == True: - return True - return False - - if word in root.val: - i = root.val.index(word) - leftList = root.val[:i] - rightList = root.val[i + 1:] - left = None - right = None - if len(leftList) == 1: - leftList = leftList[0] - - if len(rightList) == 1: - rightList = rightList[0] - - if (type(leftList) == list and len(leftList) != 0) or (type(leftList) != list): - left = TreeNode(leftList) - - if (type(rightList) == list and len(rightList) != 0) or (type(rightList) != list): - right = TreeNode(rightList) - - root.val = root.val[i] - root.left = left - root.right = right - return True - - return False def dfs(self, root): @@ -68,15 +28,55 @@ def dfs(self, root): def buildTree(self, preorder, inorder): + if len(preorder) == 0 or len(inorder) == 0: return [] + + stack = [] + top = -1 root = TreeNode(inorder) - for word in preorder: - self.dfsBulid(root, word) -# print "######" - #self.dfs(root) + stack.append(root) + top += 1 + i = 0 + n = len(inorder) + + while top >= 0: + word = preorder[i] + i += 1 + node = stack.pop() + top -= 1 + if len(node.val) == 1: + node.val = node.val[0] + node.left = None + node.right = None + else: + k = node.val.index(word) + leftList = node.val[:k] + rightList = node.val[k + 1:] + if len(leftList) == 0: + left = None + else: + left = TreeNode(leftList) + + if len(rightList) == 0: + right = None + else: + right = TreeNode(rightList) + + node.left = left + node.right = right + + if right != None: + stack.append(right) + top += 1 + + if left != None: + stack.append(left) + top += 1 + + root.val = preorder[0] + self.dfs(root) return root - if __name__ == "__main__": diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal_bk.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal_bk.py new file mode 100644 index 0000000..b24bbfd --- /dev/null +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal_bk.py @@ -0,0 +1,89 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-28 17:15:43 +# File Name : Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +# Desc : +# Definition for a binary tree node. +class TreeNode(object): + def __init__(self, x): + self.val = x + self.left = None + self.right = None + + +class Solution(object): + + def dfsBulid(self, root, word): + if root == None: + return False +#print root.val + + if type(root.val) != list: + if root.val == word: + root.left = None + root.right = None + return True + if self.dfsBulid(root.left, word) == True: + return True + if self.dfsBulid(root.right, word) == True: + return True + return False + + if word in root.val: + i = root.val.index(word) + leftList = root.val[:i] + rightList = root.val[i + 1:] + left = None + right = None + if len(leftList) == 1: + leftList = leftList[0] + + if len(rightList) == 1: + rightList = rightList[0] + + if (type(leftList) == list and len(leftList) != 0) or (type(leftList) != list): + left = TreeNode(leftList) + + if (type(rightList) == list and len(rightList) != 0) or (type(rightList) != list): + right = TreeNode(rightList) + + root.val = root.val[i] + root.left = left + root.right = right + return True + + return False + + + def dfs(self, root): + if root == None: + return + + print root.val + self.dfs(root.left) + self.dfs(root.right) + return + + + def buildTree(self, preorder, inorder): + if len(preorder) == 0 or len(inorder) == 0: + return [] + root = TreeNode(inorder) + for word in preorder: + self.dfsBulid(root, word) +# print "######" + #self.dfs(root) + return root + + + +if __name__ == "__main__": + s = Solution() + preorder = list("ABDEFC") + inorder = list("DBEFAC") + preorder = [1, 2, 3] + inorder = [2, 1, 3] + print s.buildTree(preorder, inorder) + From d7c59004e5e6575ee11238671d9c866166530e96 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 15:20:55 +0800 Subject: [PATCH 090/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ree_from_Preorder_and_Inorder_Traversal.py | 2 -- Triangle.py | 29 +++++++++++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 Triangle.py diff --git a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py index 47e1c23..3b42a13 100644 --- a/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -15,8 +15,6 @@ def __init__(self, x): class Solution(object): - - def dfs(self, root): if root == None: return diff --git a/Triangle.py b/Triangle.py new file mode 100644 index 0000000..d00fa9f --- /dev/null +++ b/Triangle.py @@ -0,0 +1,29 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-11-01 15:07:27 +# File Name : Triangle.py +# Desc : +class Solution(object): + def minimumTotal(self, triangle): + n = len(triangle) + dp = [0 for i in range(n)] + for i in range(n): + dp[i] = triangle[n - 1][i] + for i in range(n-2,-1,-1): + for j in range(i + 1): + dp[j] = min(dp[j], dp[j + 1]) + triangle[i][j] + + return dp[0] + + +if __name__ == "__main__": + s = Solution() + triangle = [ + [2], + [3,4], + [6,5,7], + [4,1,8,3] + ] + print s.minimumTotal(triangle) From c0f9aff124389b6af71a197a4bc9260cefd0c441 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:02:18 +0800 Subject: [PATCH 091/210] =?UTF-8?q?=E4=BB=8E=E4=B8=89=E8=A7=92=E5=BD=A2?= =?UTF-8?q?=E5=BA=95=E5=88=B0=E9=A1=B6=E7=9A=84=E6=9C=80=E5=B0=8F=E5=92=8C?= =?UTF-8?q?=EF=BC=8C=E5=8A=A8=E6=80=81=E8=A7=84=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Triangle.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Triangle.py b/Triangle.py index d00fa9f..b758dbf 100644 --- a/Triangle.py +++ b/Triangle.py @@ -26,4 +26,5 @@ def minimumTotal(self, triangle): [6,5,7], [4,1,8,3] ] + print s.minimumTotal(triangle) From 8b562ab82c3b360aa50fe159f0d9dfdb241e1807 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:02:33 +0800 Subject: [PATCH 092/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Maximum_Product_Subarray.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Maximum_Product_Subarray.py diff --git a/Maximum_Product_Subarray.py b/Maximum_Product_Subarray.py new file mode 100644 index 0000000..cf3db07 --- /dev/null +++ b/Maximum_Product_Subarray.py @@ -0,0 +1,27 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-11-01 15:53:47 +# File Name : Maximum_Product_Subarray.py +# Desc : +class Solution(object): + def maxProduct(self, nums): + n = len(nums) + maxpre = nums[0] + minpre = nums[0] + maxret = nums[0] + for i in range(1, n): + maxnow = max(nums[i], max(nums[i] * maxpre, nums[i] * minpre)) + minnow = min(nums[i], min(nums[i] * maxpre, nums[i] * minpre)) + maxret = max(maxnow, maxret) + maxpre = maxnow + minpre = minnow + + return maxret + + +if __name__ == "__main__": + s = Solution() + nums = [2,3,-2,4] + print s.maxProduct(nums) From af68b748438e9df4492589442a2d308fbf4d6379 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:04:34 +0800 Subject: [PATCH 093/210] =?UTF-8?q?=E6=9C=80=E5=A4=A7=E5=AD=90=E5=BA=8F?= =?UTF-8?q?=E5=88=97=E4=B9=98=E7=A7=AF=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Maximum_Product_Subarray.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Maximum_Product_Subarray.py b/Maximum_Product_Subarray.py index cf3db07..777d47a 100644 --- a/Maximum_Product_Subarray.py +++ b/Maximum_Product_Subarray.py @@ -5,6 +5,9 @@ # Create Date : 16-11-01 15:53:47 # File Name : Maximum_Product_Subarray.py # Desc : +""" +乘法最大的子序列只可能和负数有关,一定越乘越大 +""" class Solution(object): def maxProduct(self, nums): n = len(nums) From 2be815f37b8f8fa9a86a6668813ecb5fa0185330 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:23:37 +0800 Subject: [PATCH 094/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Merge_Intervals.py | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Merge_Intervals.py diff --git a/Merge_Intervals.py b/Merge_Intervals.py new file mode 100644 index 0000000..f86a03d --- /dev/null +++ b/Merge_Intervals.py @@ -0,0 +1,45 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-11-01 16:09:18 +# File Name : Merge_Intervals.py +# Desc : +import sys +import operator + +class Solution(object): + + def cmp_me(self, x, y): + if x[0] < y[0]: + return -1 + elif x[0] > y[0]: + return 1 + else: + if x[1] < y[1]: + return -1 + elif x[1] > y[1]: + return 1 + else: + return 0 + + + def merge(self, intervals): + #print sorted(intervals, key=operator.itemgetter(1), reverse=True) + intervals = sorted(intervals, cmp=self.cmp_me) + n = len(intervals) + pre = intervals[0] + ret = [] + for i in range(1, n): + if intervals[i][0] <= pre[1]: + pre[1] = intervals[i][1] + else: + ret.append(pre[:]) + pre = intervals[i] + ret.append(pre[:]) + return ret + +if __name__ == "__main__": + s = Solution() + intervals = [[1,3],[2,6],[2,5],[8,10],[15,18]] + print s.merge(intervals) From 857cb14d146751c8c042551e533e9193b7c82211 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:33:00 +0800 Subject: [PATCH 095/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Merge_Intervals.py | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/Merge_Intervals.py b/Merge_Intervals.py index f86a03d..ad20230 100644 --- a/Merge_Intervals.py +++ b/Merge_Intervals.py @@ -7,18 +7,23 @@ # Desc : import sys import operator +class Interval(object): + def __init__(self, s=0, e=0): + self.start = s + self.end = e + class Solution(object): def cmp_me(self, x, y): - if x[0] < y[0]: + if x.start < y.start: return -1 - elif x[0] > y[0]: + elif x.start > y.start: return 1 else: - if x[1] < y[1]: + if x.end < y.end: return -1 - elif x[1] > y[1]: + elif x.end > y.end: return 1 else: return 0 @@ -39,7 +44,13 @@ def merge(self, intervals): ret.append(pre[:]) return ret + if __name__ == "__main__": s = Solution() intervals = [[1,3],[2,6],[2,5],[8,10],[15,18]] + tmp = [] + for i in intervals: + a = Interval(i[0], i[1]) + tmp.append(a) + intervals = tmp print s.merge(intervals) From 5d653d953163f0b8ed113f1a65a67d427f2ff6a0 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:36:23 +0800 Subject: [PATCH 096/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Merge_Intervals.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Merge_Intervals.py b/Merge_Intervals.py index ad20230..c6c17a0 100644 --- a/Merge_Intervals.py +++ b/Merge_Intervals.py @@ -36,12 +36,12 @@ def merge(self, intervals): pre = intervals[0] ret = [] for i in range(1, n): - if intervals[i][0] <= pre[1]: - pre[1] = intervals[i][1] + if intervals[i].start <= pre.end: + pre.end = intervals[i].end else: - ret.append(pre[:]) + ret.append(pre) pre = intervals[i] - ret.append(pre[:]) + ret.append(pre) return ret @@ -53,4 +53,6 @@ def merge(self, intervals): a = Interval(i[0], i[1]) tmp.append(a) intervals = tmp - print s.merge(intervals) + r = s.merge(intervals) + for i in r: + print i.start, i.end From 982495bae4c6a27179a35f2e5a057be01de229b9 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:37:51 +0800 Subject: [PATCH 097/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Merge_Intervals.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Merge_Intervals.py b/Merge_Intervals.py index c6c17a0..c6696d0 100644 --- a/Merge_Intervals.py +++ b/Merge_Intervals.py @@ -33,8 +33,10 @@ def merge(self, intervals): #print sorted(intervals, key=operator.itemgetter(1), reverse=True) intervals = sorted(intervals, cmp=self.cmp_me) n = len(intervals) - pre = intervals[0] ret = [] + if n == 0: + return ret + pre = intervals[0] for i in range(1, n): if intervals[i].start <= pre.end: pre.end = intervals[i].end From 56dd3029463033ea77bccae7ab85a78045600231 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:39:01 +0800 Subject: [PATCH 098/210] =?UTF-8?q?=E7=AC=AC=E5=9B=9B=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Merge_Intervals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Merge_Intervals.py b/Merge_Intervals.py index c6696d0..a6738b4 100644 --- a/Merge_Intervals.py +++ b/Merge_Intervals.py @@ -39,7 +39,7 @@ def merge(self, intervals): pre = intervals[0] for i in range(1, n): if intervals[i].start <= pre.end: - pre.end = intervals[i].end + pre.end = max(pre.end, intervals[i].end) else: ret.append(pre) pre = intervals[i] From eee3e525c2ad0ff4e63e51ab9a1c78469924a91f Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 16:43:26 +0800 Subject: [PATCH 099/210] =?UTF-8?q?=E5=8C=BA=E9=97=B4=E5=90=88=E5=B9=B6?= =?UTF-8?q?=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Merge_Intervals.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Merge_Intervals.py b/Merge_Intervals.py index a6738b4..a4a1457 100644 --- a/Merge_Intervals.py +++ b/Merge_Intervals.py @@ -7,6 +7,9 @@ # Desc : import sys import operator +""" +线段树题目,但目前使用了排序解决 +""" class Interval(object): def __init__(self, s=0, e=0): self.start = s From a982ecd41760720e13fb612947fecf21a7405b88 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 17:16:39 +0800 Subject: [PATCH 100/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1.py | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Insert_Delete_GetRandom_O1.py diff --git a/Insert_Delete_GetRandom_O1.py b/Insert_Delete_GetRandom_O1.py new file mode 100644 index 0000000..d2e0dda --- /dev/null +++ b/Insert_Delete_GetRandom_O1.py @@ -0,0 +1,52 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-11-01 17:00:56 +# File Name : Insert_Delete_GetRandom_O1.py +# Desc : +import random +class RandomizedSet(object): + + def __init__(self): + self.hashtable = {} + self.queue = [] + self.n = 0 + + + def insert(self, val): + if self.hashtable.has_key(val) == True: + return False + else: + self.queue.append(val) + self.hashtable[val] = self.n + self.n += 1 + return True + + def remove(self, val): + if self.hashtable.has_key(val) == True: + position = self.hashtable.get(val, 0) + self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] + self.n -= 1 + self.queue.pop() + return True + else: + return False + + + def getRandom(self): + i = random.randint(0, self.n - 1) + ret = self.queue[i] + return ret + + +if __name__ == "__main__": + randomSet = RandomizedSet() + print randomSet.insert(1); + print randomSet.remove(2); + print randomSet.insert(2); + print randomSet.getRandom(); + print randomSet.remove(1); + print randomSet.insert(2); + print randomSet.getRandom(); + From 2f63fd138dc541d0be731882f54fa34b103df1ac Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 17:20:14 +0800 Subject: [PATCH 101/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Insert_Delete_GetRandom_O1.py b/Insert_Delete_GetRandom_O1.py index d2e0dda..445c54e 100644 --- a/Insert_Delete_GetRandom_O1.py +++ b/Insert_Delete_GetRandom_O1.py @@ -35,6 +35,8 @@ def remove(self, val): def getRandom(self): + if self.n == 0: + return None i = random.randint(0, self.n - 1) ret = self.queue[i] return ret @@ -42,6 +44,7 @@ def getRandom(self): if __name__ == "__main__": randomSet = RandomizedSet() + print randomSet.getRandom(); print randomSet.insert(1); print randomSet.remove(2); print randomSet.insert(2); From 3a06ac378f11412d32752299a8729f4f7a83bf7e Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 17:23:04 +0800 Subject: [PATCH 102/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Insert_Delete_GetRandom_O1.py b/Insert_Delete_GetRandom_O1.py index 445c54e..bc70b45 100644 --- a/Insert_Delete_GetRandom_O1.py +++ b/Insert_Delete_GetRandom_O1.py @@ -26,6 +26,7 @@ def insert(self, val): def remove(self, val): if self.hashtable.has_key(val) == True: position = self.hashtable.get(val, 0) + del self.hashtable[val] self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] self.n -= 1 self.queue.pop() From 8ecdb6cf2d3f591938fb7751728f9937c8e9ba9e Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 17:29:59 +0800 Subject: [PATCH 103/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Insert_Delete_GetRandom_O1.py b/Insert_Delete_GetRandom_O1.py index bc70b45..06697e7 100644 --- a/Insert_Delete_GetRandom_O1.py +++ b/Insert_Delete_GetRandom_O1.py @@ -18,6 +18,7 @@ def insert(self, val): if self.hashtable.has_key(val) == True: return False else: + print self.n self.queue.append(val) self.hashtable[val] = self.n self.n += 1 @@ -26,6 +27,7 @@ def insert(self, val): def remove(self, val): if self.hashtable.has_key(val) == True: position = self.hashtable.get(val, 0) + print self.n, position del self.hashtable[val] self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] self.n -= 1 From 608c76dc963705a5b4dcece7b98ae83b5275d24c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 17:35:39 +0800 Subject: [PATCH 104/210] =?UTF-8?q?=E7=AC=AC=E5=9B=9B=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Insert_Delete_GetRandom_O1.py b/Insert_Delete_GetRandom_O1.py index 06697e7..94f3651 100644 --- a/Insert_Delete_GetRandom_O1.py +++ b/Insert_Delete_GetRandom_O1.py @@ -18,7 +18,6 @@ def insert(self, val): if self.hashtable.has_key(val) == True: return False else: - print self.n self.queue.append(val) self.hashtable[val] = self.n self.n += 1 @@ -27,9 +26,9 @@ def insert(self, val): def remove(self, val): if self.hashtable.has_key(val) == True: position = self.hashtable.get(val, 0) - print self.n, position del self.hashtable[val] self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] + self.hashtable[self.queue[position]] = position self.n -= 1 self.queue.pop() return True From d857eabd808901041f9cf9ce608f177577ac5eff Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 20:54:08 +0800 Subject: [PATCH 105/210] =?UTF-8?q?=E7=AC=AC=E4=BA=94=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Insert_Delete_GetRandom_O1.py b/Insert_Delete_GetRandom_O1.py index 94f3651..cdaa460 100644 --- a/Insert_Delete_GetRandom_O1.py +++ b/Insert_Delete_GetRandom_O1.py @@ -23,9 +23,16 @@ def insert(self, val): self.n += 1 return True + def remove(self, val): if self.hashtable.has_key(val) == True: position = self.hashtable.get(val, 0) + if position == self.n - 1: + self.n -= 1 + del self.hashtable[val] + self.queue.pop() + return True + del self.hashtable[val] self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] self.hashtable[self.queue[position]] = position From 7aae494770642f604e8c28f9ef4125483e6a2167 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 1 Nov 2016 21:29:30 +0800 Subject: [PATCH 106/210] =?UTF-8?q?=E7=AC=AC=E5=85=AD=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Insert_Delete_GetRandom_O1.py b/Insert_Delete_GetRandom_O1.py index cdaa460..89f34ce 100644 --- a/Insert_Delete_GetRandom_O1.py +++ b/Insert_Delete_GetRandom_O1.py @@ -46,7 +46,7 @@ def remove(self, val): def getRandom(self): if self.n == 0: return None - i = random.randint(0, self.n - 1) + i = int(random.random() * self.n) ret = self.queue[i] return ret From f1706bfd3296b93f45940f74effc1c08c7381c47 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 15:58:34 +0800 Subject: [PATCH 107/210] =?UTF-8?q?=E6=9C=80=E5=A4=A7=E5=AD=90=E7=9F=A9?= =?UTF-8?q?=E9=98=B5=EF=BC=8C=E6=96=B9=E7=A8=8B=E9=9C=80=E8=A6=81=E7=BB=99?= =?UTF-8?q?=E5=87=BA=E8=A7=A3=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Maximal_Rectangle.cpp | 45 ++++++++++++++++++++++++ Maximal_Rectangle.py | 18 ++++++++++ new.txt | 79 +++++++++++++++++-------------------------- 3 files changed, 94 insertions(+), 48 deletions(-) create mode 100644 Maximal_Rectangle.cpp create mode 100644 Maximal_Rectangle.py diff --git a/Maximal_Rectangle.cpp b/Maximal_Rectangle.cpp new file mode 100644 index 0000000..5b1cce1 --- /dev/null +++ b/Maximal_Rectangle.cpp @@ -0,0 +1,45 @@ +// Author : TangHanYi +// E-mail : thydeyx@163.com +// Create Date : 16-11-02 15:57:44 +// File Name : Maximal_Rectangle.cpp +// Desc : + + +#include +using namespace std; +class Solution { +public: + int maximalRectangle(vector > &matrix) { + if(matrix.empty()) return 0; + const int m = matrix.size(); + const int n = matrix[0].size(); + int left[n], right[n], height[n]; + fill_n(left,n,0); fill_n(right,n,n); fill_n(height,n,0); + int maxA = 0; + for(int i=0; i=0; j--) { + if(matrix[i][j]=='1') right[j]=min(right[j],cur_right); + else {right[j]=n; cur_right=j;} + } + // compute the area of rectangle (can do this from either side) + for(int j=0; j= 0 and M[i][j] is not None: - res.append(M[i][j]) - M[i][j] = None - k += 1 - j -= 1 - j += 1 - i -= 1 - # up - while i >= 0 and M[i][j] is not None: - res.append(M[i][j]) - M[i][j] = None - k += 1 - i -= 1 - i += 1 - j += 1 - return res \ No newline at end of file +class Solution { +public: + int maximalRectangle(vector > &matrix) { + if(matrix.empty()) return 0; + const int m = matrix.size(); + const int n = matrix[0].size(); + int left[n], right[n], height[n]; + fill_n(left,n,0); fill_n(right,n,n); fill_n(height,n,0); + int maxA = 0; + for(int i=0; i=0; j--) { + if(matrix[i][j]=='1') right[j]=min(right[j],cur_right); + else {right[j]=n; cur_right=j;} + } + // compute the area of rectangle (can do this from either side) + for(int j=0; j Date: Wed, 2 Nov 2016 16:11:55 +0800 Subject: [PATCH 108/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.py | 79 +++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 Insert_Delete_GetRandom_O1_2.py diff --git a/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py new file mode 100644 index 0000000..43ad7d7 --- /dev/null +++ b/Insert_Delete_GetRandom_O1_2.py @@ -0,0 +1,79 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-11-01 17:00:56 +# File Name : Insert_Delete_GetRandom_O1.py +# Desc : +import random +class RandomizedSet(object): + + def __init__(self): + self.hashtable = {} + self.queue = [] + self.n = 0 + + + def insert(self, val): + if self.hashtable.has_key(val) == True: + return False + else: + self.queue.append(val) + position, num = self.hashtable.get(val, (-1, -1)) + if position == -1: + self.queue.append(val) + self.hashtable[val] = (self.n, 1) + self.n += 1 + else: + self.hashtable[val] = (position, num + 1) + + return True + + + def remove(self, val): + if self.hashtable.has_key(val) == True: + position, num = self.hashtable.get(val, (-1, -1)) + if position == self.n - 1: + if num == 1: + self.n -= 1 + del self.hashtable[val] + self.queue.pop() + return True + else: + num -= 1 + self.hashtable[val] = (position, num) + return True + if num == 1: + del self.hashtable[val] + self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] + self.hashtable[self.queue[position]] = position + self.n -= 1 + self.queue.pop() + return True + else: + num -= 1 + self.hashtable[val] = (position, num) + return True + else: + return False + + + def getRandom(self): + if self.n == 0: + return None + i = int(random.random() * self.n) + ret = self.queue[i] + return ret + + +if __name__ == "__main__": + randomSet = RandomizedSet() + print randomSet.getRandom(); + print randomSet.insert(1); + print randomSet.remove(2); + print randomSet.insert(2); + print randomSet.getRandom(); + print randomSet.remove(1); + print randomSet.insert(2); + print randomSet.getRandom(); + From 144b3bf52a65d1f40d66e7ef25a5a22c5d79b44e Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 16:21:23 +0800 Subject: [PATCH 109/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.py | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py index 43ad7d7..8e96c2c 100644 --- a/Insert_Delete_GetRandom_O1_2.py +++ b/Insert_Delete_GetRandom_O1_2.py @@ -15,19 +15,15 @@ def __init__(self): def insert(self, val): - if self.hashtable.has_key(val) == True: - return False - else: + position, num = self.hashtable.get(val, (-1, -1)) + if position == -1: self.queue.append(val) - position, num = self.hashtable.get(val, (-1, -1)) - if position == -1: - self.queue.append(val) - self.hashtable[val] = (self.n, 1) - self.n += 1 - else: - self.hashtable[val] = (position, num + 1) + self.hashtable[val] = (self.n, 1) + self.n += 1 + else: + self.hashtable[val] = (position, num + 1) - return True + return True def remove(self, val): From 4fb3c2259385786e92bcb6d5a602f1865629e4bf Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 16:22:32 +0800 Subject: [PATCH 110/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py index 8e96c2c..6c8a1f1 100644 --- a/Insert_Delete_GetRandom_O1_2.py +++ b/Insert_Delete_GetRandom_O1_2.py @@ -22,6 +22,7 @@ def insert(self, val): self.n += 1 else: self.hashtable[val] = (position, num + 1) + return False return True From 02f3b50123c3e59a3d60b5b2c521bb7822e07562 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 16:38:05 +0800 Subject: [PATCH 111/210] =?UTF-8?q?=E7=AC=AC=E5=9B=9B=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py index 6c8a1f1..b5d710b 100644 --- a/Insert_Delete_GetRandom_O1_2.py +++ b/Insert_Delete_GetRandom_O1_2.py @@ -42,8 +42,9 @@ def remove(self, val): return True if num == 1: del self.hashtable[val] + tmp, num = self.hashtable.get(self.queue[self.n - 1], (-1, -1)) self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] - self.hashtable[self.queue[position]] = position + self.hashtable[self.queue[position]] = (position, num) self.n -= 1 self.queue.pop() return True From 28be907b67d61e92cb330e1d6e67eeb271ffbf56 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 16:42:14 +0800 Subject: [PATCH 112/210] =?UTF-8?q?=E7=AC=AC=E4=BA=94=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py index b5d710b..12b9b85 100644 --- a/Insert_Delete_GetRandom_O1_2.py +++ b/Insert_Delete_GetRandom_O1_2.py @@ -12,9 +12,11 @@ def __init__(self): self.hashtable = {} self.queue = [] self.n = 0 + self.total = 0 def insert(self, val): + self.total += 1 position, num = self.hashtable.get(val, (-1, -1)) if position == -1: self.queue.append(val) @@ -29,6 +31,7 @@ def insert(self, val): def remove(self, val): if self.hashtable.has_key(val) == True: + self.total -= 1 position, num = self.hashtable.get(val, (-1, -1)) if position == self.n - 1: if num == 1: @@ -59,7 +62,7 @@ def remove(self, val): def getRandom(self): if self.n == 0: return None - i = int(random.random() * self.n) + i = int(random.random() * self.total) % self.n ret = self.queue[i] return ret From fdb4b94dd7f093ebeeca44bc91cd78722272afc8 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 17:03:26 +0800 Subject: [PATCH 113/210] =?UTF-8?q?=E7=AC=AC=E5=85=AD=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.py | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py index 12b9b85..d051db9 100644 --- a/Insert_Delete_GetRandom_O1_2.py +++ b/Insert_Delete_GetRandom_O1_2.py @@ -12,18 +12,20 @@ def __init__(self): self.hashtable = {} self.queue = [] self.n = 0 - self.total = 0 def insert(self, val): - self.total += 1 - position, num = self.hashtable.get(val, (-1, -1)) + position, num = self.hashtable.get(val, ([], -1)) if position == -1: self.queue.append(val) - self.hashtable[val] = (self.n, 1) + position.append(self.n) + self.hashtable[val] = (position, 1) self.n += 1 else: + self.queue.append(val) + position.append(self.n) self.hashtable[val] = (position, num + 1) + self.n += 1 return False return True @@ -31,9 +33,8 @@ def insert(self, val): def remove(self, val): if self.hashtable.has_key(val) == True: - self.total -= 1 - position, num = self.hashtable.get(val, (-1, -1)) - if position == self.n - 1: + position, num = self.hashtable.get(val, ([], -1)) + if position[-1] == self.n - 1: if num == 1: self.n -= 1 del self.hashtable[val] @@ -41,17 +42,25 @@ def remove(self, val): return True else: num -= 1 + position.pop() self.hashtable[val] = (position, num) return True if num == 1: del self.hashtable[val] - tmp, num = self.hashtable.get(self.queue[self.n - 1], (-1, -1)) - self.queue[self.n - 1], self.queue[position] = self.queue[position], self.queue[self.n - 1] - self.hashtable[self.queue[position]] = (position, num) + tmp, num = self.hashtable.get(self.queue[self.n - 1], ([], -1)) + self.queue[self.n - 1], self.queue[position[-1]] = self.queue[position[-1]], self.queue[self.n - 1] + tmp[-1] = position[-1] + self.hashtable[self.queue[position[-1]]] = (tmp, num) self.n -= 1 self.queue.pop() return True else: + tmp, num = self.hashtable.get(self.queue[self.n - 1], ([], -1)) + self.queue[self.n - 1], self.queue[position[-1]] = self.queue[position[-1]], self.queue[self.n - 1] + tmp[-1] = position[-1] + self.hashtable[self.queue[position[-1]]] = (tmp, num) + self.n -= 1 + self.queue.pop() num -= 1 self.hashtable[val] = (position, num) return True @@ -62,7 +71,7 @@ def remove(self, val): def getRandom(self): if self.n == 0: return None - i = int(random.random() * self.total) % self.n + i = int(random.random() * self.n) ret = self.queue[i] return ret From 2d6fe719bfc9590318446f989a3203c76c58aa10 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 17:13:56 +0800 Subject: [PATCH 114/210] =?UTF-8?q?=E7=AC=AC=E4=B8=83=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py index d051db9..38dc139 100644 --- a/Insert_Delete_GetRandom_O1_2.py +++ b/Insert_Delete_GetRandom_O1_2.py @@ -16,7 +16,7 @@ def __init__(self): def insert(self, val): position, num = self.hashtable.get(val, ([], -1)) - if position == -1: + if num == -1: self.queue.append(val) position.append(self.n) self.hashtable[val] = (position, 1) @@ -42,6 +42,8 @@ def remove(self, val): return True else: num -= 1 + self.n -= 1 + self.queue.pop() position.pop() self.hashtable[val] = (position, num) return True From 13296a5aa5c8c27e773829804740e9dfe8506c59 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 2 Nov 2016 17:24:01 +0800 Subject: [PATCH 115/210] =?UTF-8?q?O1=E6=97=B6=E9=97=B4=E6=8F=92=E5=85=A5?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E9=9A=8F=E6=9C=BA=E5=8F=96=E6=95=B0=E7=AC=AC?= =?UTF-8?q?=E4=BA=8C=E7=89=88=EF=BC=8C=E9=9C=80=E6=9F=A5=E7=9C=8Bunordered?= =?UTF-8?q?=5Fmap=E7=9B=B8=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insert_Delete_GetRandom_O1_2.cpp | 55 +++++++++++++++++++++++++ new.txt | 69 ++++++++++++++++++-------------- 2 files changed, 94 insertions(+), 30 deletions(-) create mode 100644 Insert_Delete_GetRandom_O1_2.cpp diff --git a/Insert_Delete_GetRandom_O1_2.cpp b/Insert_Delete_GetRandom_O1_2.cpp new file mode 100644 index 0000000..e081f15 --- /dev/null +++ b/Insert_Delete_GetRandom_O1_2.cpp @@ -0,0 +1,55 @@ +// Author : TangHanYi +// E-mail : thydeyx@163.com +// Create Date : 16-11-02 17:22:16 +// File Name : Insert_Delete_GetRandom_O1_2.cpp +// Desc : + + +#include +using namespace std; + +class RandomizedCollection { +public: + /** Initialize your data structure here. */ + RandomizedCollection() { + + } + + /** Inserts a value to the collection. Returns true if the collection did not already contain the specified element. */ + bool insert(int val) { + auto result = m.find(val) == m.end(); + + m[val].push_back(nums.size()); + nums.push_back(pair(val, m[val].size() - 1)); + + return result; + } + + /** Removes a value from the collection. Returns true if the collection contained the specified element. */ + bool remove(int val) { + auto result = m.find(val) != m.end(); + if(result) + { + auto last = nums.back(); + m[last.first][last.second] = m[val].back(); + nums[m[val].back()] = last; + m[val].pop_back(); + if(m[val].empty()) m.erase(val); + nums.pop_back(); + } + return result; + } + + /** Get a random element from the collection. */ + int getRandom() { + return nums[rand() % nums.size()].first; + } +private: + vector> nums; + unordered_map> m; +}; + +int main() +{ + return 0; +} diff --git a/new.txt b/new.txt index a6de739..fb32a84 100644 --- a/new.txt +++ b/new.txt @@ -1,31 +1,40 @@ -class Solution { -public: - int maximalRectangle(vector > &matrix) { - if(matrix.empty()) return 0; - const int m = matrix.size(); - const int n = matrix[0].size(); - int left[n], right[n], height[n]; - fill_n(left,n,0); fill_n(right,n,n); fill_n(height,n,0); - int maxA = 0; - for(int i=0; i=0; j--) { - if(matrix[i][j]=='1') right[j]=min(right[j],cur_right); - else {right[j]=n; cur_right=j;} - } - // compute the area of rectangle (can do this from either side) - for(int j=0; j(val, m[val].size() - 1)); + + return result; + } + + /** Removes a value from the collection. Returns true if the collection contained the specified element. */ + bool remove(int val) { + auto result = m.find(val) != m.end(); + if(result) + { + auto last = nums.back(); + m[last.first][last.second] = m[val].back(); + nums[m[val].back()] = last; + m[val].pop_back(); + if(m[val].empty()) m.erase(val); + nums.pop_back(); + } + return result; + } + + /** Get a random element from the collection. */ + int getRandom() { + return nums[rand() % nums.size()].first; + } +private: + vector> nums; + unordered_map> m; }; \ No newline at end of file From 5ed49d469de5ef683c8d34a176e40dcae2c93f26 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 7 Nov 2016 15:47:56 +0800 Subject: [PATCH 116/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Linked_List_Random_Node.py | 48 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 Linked_List_Random_Node.py diff --git a/Linked_List_Random_Node.py b/Linked_List_Random_Node.py new file mode 100644 index 0000000..3c9c4a9 --- /dev/null +++ b/Linked_List_Random_Node.py @@ -0,0 +1,48 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-07 03:31:51 PM +# Last modified : 2016-11-07 03:47:40 PM +# File Name : Linked_List_Random_Node.py +# Desc : + +import sys +import random + +class ListNode(object): + def __init__(self, x): + self.val = x + self.next = None + + +class Solution(object): + + def __init__(self, head): + self.head = head + + + def getRandom(self): + ret = self.head.val + p = self.head.next + n = 1 + while p != None: + q = int(random.random() * (n + 1)) + if q == 0: + ret = p.val + p = p.next + n += 1 + return ret + + +if __name__ == "__main__": + head = ListNode(11) + p = head + + for i in range(10): + tmp = ListNode(i) + p.next = tmp + p = p.next + + s = Solution(head) + print s.getRandom() From ef21afcbe50b5c32eb6279cc53a8afd0eb728ce3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 7 Nov 2016 15:53:03 +0800 Subject: [PATCH 117/210] =?UTF-8?q?=E9=9A=8F=E6=9C=BA=E5=8F=96=E6=95=B0?= =?UTF-8?q?=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Linked_List_Random_Node.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Linked_List_Random_Node.py b/Linked_List_Random_Node.py index 3c9c4a9..6c6ca31 100644 --- a/Linked_List_Random_Node.py +++ b/Linked_List_Random_Node.py @@ -3,13 +3,15 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-07 03:31:51 PM -# Last modified : 2016-11-07 03:47:40 PM +# Last modified : 2016-11-07 03:52:52 PM # File Name : Linked_List_Random_Node.py # Desc : import sys import random - +""" +1/(n+1) +""" class ListNode(object): def __init__(self, x): self.val = x From 677479e158ff07eb63479e75fe54e676d8f4a50a Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 8 Nov 2016 10:45:12 +0800 Subject: [PATCH 118/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Path_Sum_III.py | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Path_Sum_III.py diff --git a/Path_Sum_III.py b/Path_Sum_III.py new file mode 100644 index 0000000..ec60613 --- /dev/null +++ b/Path_Sum_III.py @@ -0,0 +1,44 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-08 10:12:47 AM +# Last modified : 2016-11-08 10:45:05 AM +# File Name : Path_Sum_III.py +# Desc : +class TreeNode(object): + def __init__(self, x): + self.val = x + self.left = None + self.right = None + + +class Solution(object): + + def pathRoot(self, root, s): + if root == None: + return 0 + + ret = 0 + if root.val == s: + ret += 1 + ret = ret + self.pathRoot(root.left, s - root.val) + self.pathRoot(root.right, s - root.val) + return ret + + + def pathSum(self, root, s): + if root == None: + return 0 + + ret = self.pathRoot(root, s) + self.pathSum(root.right, s) + self.pathSum(root.left, s) + return ret + + +if __name__ == "__main__": + s = Solution() + root = TreeNode(10) + root.right = TreeNode(-3) + r = root.right + r.right = TreeNode(11) + root.left = TreeNode(5) + print s.pathSum(root, 8) From c9e13385f4c8bbdecb2c5297ea54342244ba2b11 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 11 Nov 2016 13:31:53 +0800 Subject: [PATCH 119/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_All_Numbers_Disappeared_in_an_Array.py | 30 +++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Find_All_Numbers_Disappeared_in_an_Array.py diff --git a/Find_All_Numbers_Disappeared_in_an_Array.py b/Find_All_Numbers_Disappeared_in_an_Array.py new file mode 100644 index 0000000..5733131 --- /dev/null +++ b/Find_All_Numbers_Disappeared_in_an_Array.py @@ -0,0 +1,30 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-11 01:11:23 PM +# Last modified : 2016-11-11 01:31:45 PM +# File Name : Find_All_Numbers_Disappeared_in_an_Array.py +# Desc : +class Solution(object): + def findDisappearedNumbers(self, nums): + n = len(nums) + ret = [] + + for i in range(n): + j = i + k = nums[i] + while k - 1 != j: + j = k - 1 + nums[k - 1], k = k, nums[k - 1] + for i in range(n): + if nums[i] - 1 != i: + ret.append(i + 1) + + return ret + + +if __name__ == "__main__": + s = Solution() + nums = [4,3,2,7,8,2,3,1] + print s.findDisappearedNumbers(nums) From 6d3bd94c4c5421474b18c5f4141ec87f4d183dd3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 11 Nov 2016 13:49:00 +0800 Subject: [PATCH 120/210] =?UTF-8?q?=E5=8E=9F=E5=9C=B0=E6=89=BE=E9=87=8D?= =?UTF-8?q?=E5=A4=8D=E5=85=83=E7=B4=A0=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_All_Numbers_Disappeared_in_an_Array.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Find_All_Numbers_Disappeared_in_an_Array.py b/Find_All_Numbers_Disappeared_in_an_Array.py index 5733131..335dfa0 100644 --- a/Find_All_Numbers_Disappeared_in_an_Array.py +++ b/Find_All_Numbers_Disappeared_in_an_Array.py @@ -3,9 +3,12 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-11 01:11:23 PM -# Last modified : 2016-11-11 01:31:45 PM +# Last modified : 2016-11-11 01:48:36 PM # File Name : Find_All_Numbers_Disappeared_in_an_Array.py # Desc : +""" +循环移动 +""" class Solution(object): def findDisappearedNumbers(self, nums): n = len(nums) From 1f61447fb54b145db5877724e1db9bd4c3382af3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 11 Nov 2016 13:49:27 +0800 Subject: [PATCH 121/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_All_Duplicates_in_an_Array.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Find_All_Duplicates_in_an_Array.py diff --git a/Find_All_Duplicates_in_an_Array.py b/Find_All_Duplicates_in_an_Array.py new file mode 100644 index 0000000..ca91b15 --- /dev/null +++ b/Find_All_Duplicates_in_an_Array.py @@ -0,0 +1,29 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-11 01:35:06 PM +# Last modified : 2016-11-11 01:47:58 PM +# File Name : Find_All_Duplicates_in_an_Array.py +# Desc : +class Solution(object): + def findDuplicates(self, nums): + n = len(nums) + ret = [] + + for i in range(n): + j = i + k = nums[i] + while k - 1 != j: + if k == nums[k - 1] and j >= i: + ret.append(k) + j = k - 1 + nums[k - 1], k = k, nums[k - 1] + + return ret + + +if __name__ == "__main__": + s = Solution() + nums = [4,3,2,7,8,2,3,1] + print s.findDuplicates(nums) From 00864d966554f5101fc2a4efd6823f8a135ff9fa Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 11 Nov 2016 13:59:34 +0800 Subject: [PATCH 122/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_All_Numbers_Disappeared_in_an_Array.py | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Find_All_Numbers_Disappeared_in_an_Array.py b/Find_All_Numbers_Disappeared_in_an_Array.py index 335dfa0..25fcebb 100644 --- a/Find_All_Numbers_Disappeared_in_an_Array.py +++ b/Find_All_Numbers_Disappeared_in_an_Array.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-11 01:11:23 PM -# Last modified : 2016-11-11 01:48:36 PM +# Last modified : 2016-11-11 01:59:31 PM # File Name : Find_All_Numbers_Disappeared_in_an_Array.py # Desc : """ @@ -13,17 +13,13 @@ class Solution(object): def findDisappearedNumbers(self, nums): n = len(nums) ret = [] - - for i in range(n): - j = i - k = nums[i] - while k - 1 != j: - j = k - 1 - nums[k - 1], k = k, nums[k - 1] for i in range(n): - if nums[i] - 1 != i: - ret.append(i + 1) - + index = abs(nums[i]) - 1 + if nums[index] < 0: + ret.append(index + 1) + + nums[index] = - nums[index] + return ret From cfafce7c97b8939f174e3d2d6d57cbed0cc124c4 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 11 Nov 2016 14:00:48 +0800 Subject: [PATCH 123/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_All_Numbers_Disappeared_in_an_Array.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Find_All_Numbers_Disappeared_in_an_Array.py b/Find_All_Numbers_Disappeared_in_an_Array.py index 25fcebb..e8ed425 100644 --- a/Find_All_Numbers_Disappeared_in_an_Array.py +++ b/Find_All_Numbers_Disappeared_in_an_Array.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-11 01:11:23 PM -# Last modified : 2016-11-11 01:59:31 PM +# Last modified : 2016-11-11 02:00:40 PM # File Name : Find_All_Numbers_Disappeared_in_an_Array.py # Desc : """ @@ -13,13 +13,17 @@ class Solution(object): def findDisappearedNumbers(self, nums): n = len(nums) ret = [] - for i in range(n): - index = abs(nums[i]) - 1 - if nums[index] < 0: - ret.append(index + 1) - - nums[index] = - nums[index] + for i in range(n): + j = i + k = nums[i] + while k - 1 != j: + j = k - 1 + nums[k - 1], k = k, nums[k - 1] + for i in range(n): + if nums[i] - 1 != i: + ret.append(i + 1) + return ret From fc082c0e665b2ba666ab7ef423dc9c3a12f12219 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 11 Nov 2016 14:01:14 +0800 Subject: [PATCH 124/210] =?UTF-8?q?=E5=8E=9F=E5=9C=B0=E6=89=BE=E9=87=8D?= =?UTF-8?q?=E5=A4=8D=E5=85=83=E7=B4=A0=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_All_Numbers_Disappeared_in_an_Array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Find_All_Numbers_Disappeared_in_an_Array.py b/Find_All_Numbers_Disappeared_in_an_Array.py index e8ed425..b9dfb40 100644 --- a/Find_All_Numbers_Disappeared_in_an_Array.py +++ b/Find_All_Numbers_Disappeared_in_an_Array.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-11 01:11:23 PM -# Last modified : 2016-11-11 02:00:40 PM +# Last modified : 2016-11-11 02:01:07 PM # File Name : Find_All_Numbers_Disappeared_in_an_Array.py # Desc : """ From 75bde1970bd6c9b883f6dbe524a17961017dd884 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 11 Nov 2016 14:03:31 +0800 Subject: [PATCH 125/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_All_Duplicates_in_an_Array.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Find_All_Duplicates_in_an_Array.py b/Find_All_Duplicates_in_an_Array.py index ca91b15..eea15d8 100644 --- a/Find_All_Duplicates_in_an_Array.py +++ b/Find_All_Duplicates_in_an_Array.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-11 01:35:06 PM -# Last modified : 2016-11-11 01:47:58 PM +# Last modified : 2016-11-11 02:03:22 PM # File Name : Find_All_Duplicates_in_an_Array.py # Desc : class Solution(object): @@ -12,13 +12,11 @@ def findDuplicates(self, nums): ret = [] for i in range(n): - j = i - k = nums[i] - while k - 1 != j: - if k == nums[k - 1] and j >= i: - ret.append(k) - j = k - 1 - nums[k - 1], k = k, nums[k - 1] + index = abs(nums[i]) - 1 + if nums[index] < 0: + ret.append(index + 1) + + nums[index] = - nums[index] return ret From 0b5e2b5ec102f6ccfa994fbe3d4009c3be100503 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 14 Nov 2016 14:48:20 +0800 Subject: [PATCH 126/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arithmetic_Slices_II.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Arithmetic_Slices_II.py diff --git a/Arithmetic_Slices_II.py b/Arithmetic_Slices_II.py new file mode 100644 index 0000000..80f9030 --- /dev/null +++ b/Arithmetic_Slices_II.py @@ -0,0 +1,27 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-14 02:41:51 PM +# Last modified : 2016-11-14 02:46:10 PM +# File Name : Arithmetic_Slices_II.py +# Desc : +class Solution(object): + def numberOfArithmeticSlices(self, A): + ret = 0 + n = len(A) + dp = [{} for x in range(n)] + for i in range(1, n): + for j in range(0, i): + dist = A[i] - A[j] + s = dp[j].get(dist, 0) + 1 + dp[i][dist] = dp[i].get(dist, 0) + s + ret += (s - 1) + + return ret + + +if __name__ == "__main__": + s = Solution() + A = [2,4,6,8,10] + print s.numberOfArithmeticSlices(A) From 98b41a6b4f6580dc2f87de7fc427f9828f4c1d92 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 14 Nov 2016 15:23:26 +0800 Subject: [PATCH 127/210] =?UTF-8?q?=E7=AD=89=E4=BB=B7=E5=AD=90=E5=BA=8F?= =?UTF-8?q?=E5=88=97=E4=B8=AA=E6=95=B0=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arithmetic_Slices_II.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Arithmetic_Slices_II.py b/Arithmetic_Slices_II.py index 80f9030..aecae33 100644 --- a/Arithmetic_Slices_II.py +++ b/Arithmetic_Slices_II.py @@ -3,9 +3,14 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-14 02:41:51 PM -# Last modified : 2016-11-14 02:46:10 PM +# Last modified : 2016-11-14 03:22:17 PM # File Name : Arithmetic_Slices_II.py # Desc : +""" +dp[i][dist] += (dp[j][dist] + 1) +前i个数字,距离差为dist的序列和,ret增加,原因是对于一个子序列长度为N的等差数列, +共有N-2个 +""" class Solution(object): def numberOfArithmeticSlices(self, A): ret = 0 From 6632f444d1324637553151ec0fd82aedd0b2be49 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 15 Nov 2016 14:44:14 +0800 Subject: [PATCH 128/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lexicographical_Numbers.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Lexicographical_Numbers.py diff --git a/Lexicographical_Numbers.py b/Lexicographical_Numbers.py new file mode 100644 index 0000000..7889906 --- /dev/null +++ b/Lexicographical_Numbers.py @@ -0,0 +1,38 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-15 02:37:43 PM +# Last modified : 2016-11-15 02:43:55 PM +# File Name : Lexicographical_Numbers.py +# Desc : +class Solution(object): + + def __init__(self): + self.ret = [] + + + def dfs(self, cur): + if cur > self.n: + return + + self.ret.append(cur) + for i in range(10): + self.dfs(cur * 10 + i) + + return + + + def lexicalOrder(self, n): + self.n = n + + for i in range(1, 10): + self.dfs(i) + + return self.ret + + +if __name__ == "__main__": + s = Solution() + n = 25 + print s.lexicalOrder(n) From 1b8ef5c530ab34cf5e0aeb8967eb9a06a8824012 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 15 Nov 2016 14:48:04 +0800 Subject: [PATCH 129/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lexicographical_Numbers.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Lexicographical_Numbers.py b/Lexicographical_Numbers.py index 7889906..88c10a7 100644 --- a/Lexicographical_Numbers.py +++ b/Lexicographical_Numbers.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-15 02:37:43 PM -# Last modified : 2016-11-15 02:43:55 PM +# Last modified : 2016-11-15 02:47:58 PM # File Name : Lexicographical_Numbers.py # Desc : class Solution(object): @@ -18,6 +18,8 @@ def dfs(self, cur): self.ret.append(cur) for i in range(10): + if cur * 10 + i > self.n: + return self.dfs(cur * 10 + i) return @@ -34,5 +36,5 @@ def lexicalOrder(self, n): if __name__ == "__main__": s = Solution() - n = 25 + n = 14959 print s.lexicalOrder(n) From ae591bd0e6c80ca45464778ae4e1ea6bdaa9ace3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 15 Nov 2016 14:50:47 +0800 Subject: [PATCH 130/210] =?UTF-8?q?1-n=E5=AD=97=E5=85=B8=E5=BA=8F=E6=8E=92?= =?UTF-8?q?=E5=BA=8F=EF=BC=8C=E5=B7=B2=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lexicographical_Numbers.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Lexicographical_Numbers.py b/Lexicographical_Numbers.py index 88c10a7..25b54b5 100644 --- a/Lexicographical_Numbers.py +++ b/Lexicographical_Numbers.py @@ -3,9 +3,12 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-15 02:37:43 PM -# Last modified : 2016-11-15 02:47:58 PM +# Last modified : 2016-11-15 02:50:29 PM # File Name : Lexicographical_Numbers.py # Desc : +""" +先序遍历 +""" class Solution(object): def __init__(self): From 695b0ca32d2574b78f8d0ae03832fb0a6a794d91 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 17 Nov 2016 13:55:38 +0800 Subject: [PATCH 131/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assign_Cookies.py | 33 +++++++++++++++++++++++++++++++++ Sum_of_Two_Integers.py | 28 ++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 Assign_Cookies.py create mode 100644 Sum_of_Two_Integers.py diff --git a/Assign_Cookies.py b/Assign_Cookies.py new file mode 100644 index 0000000..b479915 --- /dev/null +++ b/Assign_Cookies.py @@ -0,0 +1,33 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-17 01:48:52 PM +# Last modified : 2016-11-17 01:55:23 PM +# File Name : Assign_Cookies.py +# Desc : +class Solution(object): + def findContentChildren(self, g, s): + s = sorted(s, reverse=True) + g = sorted(g, reverse=True) + n = len(s) + l = len(g) + j = 0 + ret = 0 + for i in range(n): + if j >= l: + break + + if s[i] > g[j]: + j += 1 + ret += 1 + else: + break + + return ret + +if __name__ == "__main__": + s = Solution() + g = [1, 2] + s1 = [1, 2, 3] + print s.findContentChildren(g, s1) diff --git a/Sum_of_Two_Integers.py b/Sum_of_Two_Integers.py new file mode 100644 index 0000000..1ef0f02 --- /dev/null +++ b/Sum_of_Two_Integers.py @@ -0,0 +1,28 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-15 10:14:10 PM +# Last modified : 2016-11-15 10:21:15 PM +# File Name : Sum_of_Two_Integers.py +# Desc : +class Solution(object): + def getSum(self, a, b): + """ + :type a: int + :type b: int + :rtype: int + """ + + while b != 0: + x = a ^ b + y = (a & b) << 1 + a = x + b = y; + + return a + + +if __name__ == "__main__": + s = Solution() + s.getSum(-14, 16) From d9e2b7b1763c5b9604b55dbe30b4cb2b570f8b93 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 17 Nov 2016 14:22:43 +0800 Subject: [PATCH 132/210] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assign_Cookies.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Assign_Cookies.py b/Assign_Cookies.py index b479915..9f16e4f 100644 --- a/Assign_Cookies.py +++ b/Assign_Cookies.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-17 01:48:52 PM -# Last modified : 2016-11-17 01:55:23 PM +# Last modified : 2016-11-17 02:22:37 PM # File Name : Assign_Cookies.py # Desc : class Solution(object): @@ -21,8 +21,6 @@ def findContentChildren(self, g, s): if s[i] > g[j]: j += 1 ret += 1 - else: - break return ret From 1e4e92ab3db1393e5a212e42d708cf2c3fe604c2 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 17 Nov 2016 14:31:07 +0800 Subject: [PATCH 133/210] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assign_Cookies.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Assign_Cookies.py b/Assign_Cookies.py index 9f16e4f..54dbd7f 100644 --- a/Assign_Cookies.py +++ b/Assign_Cookies.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-17 01:48:52 PM -# Last modified : 2016-11-17 02:22:37 PM +# Last modified : 2016-11-17 02:30:51 PM # File Name : Assign_Cookies.py # Desc : class Solution(object): @@ -14,18 +14,19 @@ def findContentChildren(self, g, s): l = len(g) j = 0 ret = 0 - for i in range(n): - if j >= l: + for i in range(l): + if j >= n: break - if s[i] > g[j]: + if s[j] >= g[i]: j += 1 ret += 1 return ret + if __name__ == "__main__": s = Solution() - g = [1, 2] - s1 = [1, 2, 3] + g = [1, 2, 3] + s1 = [1, 1] print s.findContentChildren(g, s1) From 892a8a8697e60b1db9d9bad686dfe3bfce8d11f9 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 17 Nov 2016 14:48:08 +0800 Subject: [PATCH 134/210] =?UTF-8?q?=E6=89=BE=E4=B8=80=E4=B8=AA=E5=A4=9A?= =?UTF-8?q?=E4=BD=99=E7=9A=84=E4=B8=8D=E5=90=8C=E6=95=B0=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Find_the_Difference.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Find_the_Difference.py diff --git a/Find_the_Difference.py b/Find_the_Difference.py new file mode 100644 index 0000000..8c0ae20 --- /dev/null +++ b/Find_the_Difference.py @@ -0,0 +1,35 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-17 02:34:59 PM +# Last modified : 2016-11-17 02:47:47 PM +# File Name : Find_the_Difference.py +# Desc : +class Solution(object): + def findTheDifference(self, s, t): + sMap = 0 + tMap = 0 + for letter in s: + pos = ord(letter) - ord('a') + sMap = sMap ^ (1 << pos) + + for letter in t: + pos = ord(letter) - ord('a') + tMap = tMap ^ (1 << pos) + + tmp = sMap ^ tMap + ret = 0 + while tmp != 0: + ret += 1 + tmp >>= 1 + + return chr(ret + ord('a') - 1) + + +if __name__ == "__main__": + s = Solution() + s1 = 'abcda' + t = 'bcdaae' + print s.findTheDifference(s1, t) + From 03144915ca9315852348e9a86fa945c75947497d Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 17 Nov 2016 21:59:24 +0800 Subject: [PATCH 135/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Surrounded_Regions.py | 59 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 Surrounded_Regions.py diff --git a/Surrounded_Regions.py b/Surrounded_Regions.py new file mode 100644 index 0000000..0d45daf --- /dev/null +++ b/Surrounded_Regions.py @@ -0,0 +1,59 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-17 09:03:13 PM +# Last modified : 2016-11-17 09:59:15 PM +# File Name : Surrounded_Regions.py +# Desc : +import Queue +class Solution(object): + def solve(self, board): + n = len(board) + if n == 0: + return board + m = len(board[0]) + + visited = [[] for i in range(n)] + for i in range(n): + for j in range(m): + visited[i].append(0) + + stack = [] + q = Queue.Queue() + xa = [1, 0, -1, 0] + ya = [0, 1, 0, -1] + for i in range(n): + for j in range(m): + if board[i][j] == 'O' and visited[i][j] == 0: + visited[i][j] = 1 + flag = True + q.put((i, j)) + stack = [] + stack.append((i, j)) + if i == 0 or j == 0 or i == n - 1 or j == m - 1: + flag = False + while q.empty() == False: + y,x = q.get() + for k in range(4): + if x + xa[k] < m and x + xa[k] >= 0 and y + ya[k] < n and y + ya[k] >=0 and visited[y + ya[k]][x + xa[k]] == 0: + visited[y + ya[k]][x + xa[k]] = 1 + if board[y + ya[k]][x + xa[k]] == 'O': + q.put((y + ya[k], x + xa[k])) + stack.append((y + ya[k], x + xa[k])) + if x + xa[k] == 0 or x + xa[k] == m - 1 or y + ya[k] == 0 or y + ya[k] == n - 1: + flag = False + if flag == True: + for y, x in stack: + tmp = list(board[y]) + tmp[x] = 'X' + board[y] = ''.join(tmp) + + return board + + +if __name__ == "__main__": + s = Solution() + board = ["XXXX","XOOX","XXOX","XOXX"] + s.solve(board) + print board From c44c86e10f7b8223ce71f838c2b44ca3dc17b01d Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 17 Nov 2016 22:06:40 +0800 Subject: [PATCH 136/210] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Surrounded_Regions.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Surrounded_Regions.py b/Surrounded_Regions.py index 0d45daf..8b418f8 100644 --- a/Surrounded_Regions.py +++ b/Surrounded_Regions.py @@ -3,9 +3,10 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-17 09:03:13 PM -# Last modified : 2016-11-17 09:59:15 PM +# Last modified : 2016-11-17 10:06:38 PM # File Name : Surrounded_Regions.py # Desc : + import Queue class Solution(object): def solve(self, board): @@ -15,9 +16,11 @@ def solve(self, board): m = len(board[0]) visited = [[] for i in range(n)] + ret = [[] for i in range(n)] for i in range(n): for j in range(m): visited[i].append(0) + ret[i].append(board[i][j]) stack = [] q = Queue.Queue() @@ -45,9 +48,14 @@ def solve(self, board): flag = False if flag == True: for y, x in stack: + ret[y][x] = 'O' + """ tmp = list(board[y]) tmp[x] = 'X' board[y] = ''.join(tmp) + """ + for i in range(n): + board[i] = ''.join(ret[i]) return board From 9f0268b706e15bbca140a8be91e021fa8c5060c8 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 18 Nov 2016 12:23:46 +0800 Subject: [PATCH 137/210] =?UTF-8?q?=E6=88=91=E7=9A=84vim=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vimrc | 205 ++++++++++++++++++++++++++++++++++++++++++ Surrounded_Regions.py | 8 +- 2 files changed, 209 insertions(+), 4 deletions(-) create mode 100644 .vimrc diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..003296c --- /dev/null +++ b/.vimrc @@ -0,0 +1,205 @@ +set rtp+=~/.vim/bundle/Vundle.vim/ +call vundle#rc() +Bundle 'gmarik/vundle' + +" 设置当文件被改动时自动载入 +set autoread +"自动保存 +set autowrite +set ruler " 打开状态栏标尺*/ +set cursorline " 突出显示当前行*/*/ +set magic " 设置魔术*/ +"set statusline=\ %<%F[%1*%M%*%n%R%H]%=\ %y\ %0(%{&fileformat}\ %{&encoding}\ %c:%l/%L%)\ +" 设置在状态行显示的信息 +"set foldcolumn=0 +"set foldmethod=indent +"set foldlevel=3 +"set foldenable " 开始折叠 +" 不要使用vi的键盘模式,而是vim自己的 +set nocompatible +" 语法高亮 +"set syntax=on +syntax on +" 去掉输入错误的提示声音 +set noeb +" 在处理未保存或只读文件的时候,弹出确认 +set confirm +" 自动缩进 +set autoindent +set cindent +" Tab键的宽度 +set tabstop=4 +" 统一缩进为4 +set softtabstop=4 +set shiftwidth=4 +" 不要用空格代替制表符 +set noexpandtab +" 在行和段开始处使用制表符 +set smarttab +" 显示行号 +set number +" 历史记录数 +set history=1000 +"禁止生成临时文件 +set nobackup +set noswapfile +"搜索忽略大小写 +set ignorecase +"搜索逐字符高亮 +set hlsearch +set incsearch +"行内替换 +"set gdefault +"编码设置 +set enc=utf-8 + + +map h "左 +map l "右 +map j "下 +map k "上 +map :qa "退出所有页面 +map \c "注释 +map :w + +Bundle 'majutsushi/tagbar' +"nmap tb :TagbarToggle "快捷键设置 +let g:tagbar_ctags_bin='ctags' "ctags程序的路径 +let g:tagbar_width=30 "窗口宽度的设置 +map :Tagbar +autocmd BufReadPost *.py,*.cpp,*.c,*.h,*.hpp,*.cc,*.cxx call tagbar#autoopen() "如果是c语言的程序的话,tagbar自动开启 + +let g:python_author = 'TangHanYi' +let g:python_email = 'thydeyx@163.com' + +function HeaderPython() + normal 1G + call setline(".", "# -*- coding:utf-8 -*-") + normal o + call setline(".", "#") + normal o + call setline(".", "# Author : ".g:python_author) + normal o + call setline(".", "# E-mail : ".g:python_email) + normal o + call setline(".", "# Create Date : ".strftime("%Y-%m-%d %X" )) + normal o + call setline(".", "# Last modified : ".strftime("%Y-%m-%d %X" )) + normal o + call setline(".", "# File Name : ".expand("%")) + normal o + call setline(".", "# Desc :") + normal o + normal o + normal o + call setline(".", "if __name__ == \"__main__\":") + normal o + call setline(".", "\ts = Solution()") +endf +autocmd bufnewfile *.py call HeaderPython() + +autocmd BufWrite,BufWritePre,FileWritePre *.py ks|call LastModified()|'s +func LastModified() + if line("$") > 20 + let l = 20 + else + let l = line("$") + endif + exe "1,".l."g/# Last modified : /s/# Last modified : .*/# Last modified :". strftime(" %Y-%m-%d %X" ) . "/e" +endfunc + +function HeaderCPP() + normal 1G + call setline(".", "// Author : ".g:python_author) + normal o + call setline(".", "// E-mail : ".g:python_email) + normal o + call setline(".", "// Create Date : ".strftime("%y-%m-%d %H:%M:%S")) + normal o + call setline(".", "// File Name : ".expand("%")) + normal o + call setline(".", "// Desc :") + normal o + normal o + normal o + call setline(".", "#include") + normal o + call setline(".", "using namespace std;") + normal o + normal o + call setline(".", "int main()") + normal o + call setline(".", "{") + normal o + call setline(".", "\treturn 0;") + normal o + call setline(".", "}") +endf +autocmd bufnewfile *.cpp call HeaderCPP() + +Bundle 'scrooloose/nerdtree' +let NERDTreeWinPos='left' +let NERDTreeWinSize=30 +let NERDChristmasTree=0 +let NERDTreeChDirMode=2 +let NERDTreeIgnore=['\~$', '\.pyc$', '\.swp$'] +let NERDTreeShowBookmarks=1 +"map :NERDTreeToggle +autocmd vimenter * NERDTree + +Bundle 'fholgado/minibufexpl.vim' +let g:miniBufExplMapWindowNavVim = 1 +let g:miniBufExplMapWindowNavArrows = 1 +let g:miniBufExplMapCTabSwitchBufs = 1 +let g:miniBufExplModSelTarget = 1 +let g:miniBufExplMoreThanOne=0 +map :MBEbp +map :MBEbn + +"Bundle 'bling/vim-airline' +"set laststatus=2 + +Plugin 'Valloric/YouCompleteMe' + +let g:ycm_global_ycm_extra_conf='~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp/ycm/.ycm_extra_conf.py' +let g:ycm_error_symbol = '>>' +let g:ycm_warning_symbol = '>*' +set completeopt=longest,menu "让Vim的补全菜单行为与一般IDE一致(参考VimTip1228) +autocmd InsertLeave * if pumvisible() == 0|pclose|endif "离开插入模式后自动关闭预览窗口 +"youcompleteme 默认tab s-tab 和自动补全冲突 +"let g:ycm_key_list_select_completion=[''] +let g:ycm_key_list_select_completion = [''] +"let g:ycm_key_list_previous_completion=[''] +let g:ycm_key_list_previous_completion = [''] +let g:ycm_confirm_extra_conf=0 "关闭加载.ycm_extra_conf.py提示 +"在注释输入中也能补全 +let g:ycm_complete_in_comments = 1 +"在字符串输入中也能补全 +let g:ycm_complete_in_strings = 1 +"注释和字符串中的文字也会被收入补全 +let g:ycm_collect_identifiers_from_comments_and_strings = 0 +let g:ycm_seed_identifiers_with_syntax=1 " 语法关键字补全 +"let g:loaded_youcompleteme=1 + +syntax enable +set background=dark +colorscheme solarized +let g:solarized_termcolors=256 + +"Bundle "scrooloose/syntastic" +" configure syntastic syntax checking to check on open as well as save +"set statusline+=%#warningmsg# +"set statusline+=%{SyntasticStatuslineFlag()} +"set statusline+=%* +"let g:syntastic_always_populate_loc_list = 1 +"let g:syntastic_auto_loc_list = 1 +"let g:syntastic_check_on_open = 1 +"let g:syntastic_check_on_wq = 0 + +Bundle "scrooloose/nerdcommenter" +let g:NERDAltDelims_python = 1 +let g:NERDCompactSexyComs = 1 + +"filetype plugin on +"let g:pydiction_location = '/home/ubuntu/.vim/bundle/pydiction/complete-dict' +"let g:pydiction_menu_height = 20 diff --git a/Surrounded_Regions.py b/Surrounded_Regions.py index 8b418f8..b62b127 100644 --- a/Surrounded_Regions.py +++ b/Surrounded_Regions.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-17 09:03:13 PM -# Last modified : 2016-11-17 10:06:38 PM +# Last modified : 2016-11-17 10:21:42 PM # File Name : Surrounded_Regions.py # Desc : @@ -12,7 +12,7 @@ class Solution(object): def solve(self, board): n = len(board) if n == 0: - return board + return m = len(board[0]) visited = [[] for i in range(n)] @@ -48,7 +48,7 @@ def solve(self, board): flag = False if flag == True: for y, x in stack: - ret[y][x] = 'O' + ret[y][x] = 'X' """ tmp = list(board[y]) tmp[x] = 'X' @@ -57,7 +57,7 @@ def solve(self, board): for i in range(n): board[i] = ''.join(ret[i]) - return board + return if __name__ == "__main__": From a4560562a6d98d546157816d17802b0808a2c926 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sun, 20 Nov 2016 23:01:46 +0800 Subject: [PATCH 138/210] =?UTF-8?q?=E5=B9=BF=E6=90=9C=E5=AF=BB=E8=B7=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Island_Perimeter.py | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Island_Perimeter.py diff --git a/Island_Perimeter.py b/Island_Perimeter.py new file mode 100644 index 0000000..2d11795 --- /dev/null +++ b/Island_Perimeter.py @@ -0,0 +1,50 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-20 10:29:19 PM +# Last modified : 2016-11-20 11:01:17 PM +# File Name : Island_Perimeter.py +# Desc : +import Queue +class Solution(object): + def islandPerimeter(self, grid): + n = len(grid) + if n == 0: + return 0 + m = len(grid[0]) + g = [[] for i in range(n)] + for i in range(n): + for j in range(m): + g[i].append(0) + + ret = 0 + q = Queue.Queue() + xa = [0, 1, 0, -1] + ya = [1, 0, -1, 0] + for i in range(n): + for j in range(m): + if grid[i][j] == 1: + q.put((i, j)) + g[i][j] = 1 + break + if q.empty() == False: + break + + while q.empty() == False: + x, y = q.get() + for k in range(4): + i = x + xa[k] + j = y + ya[k] + if i >= 0 and i < n and j >= 0 and j < m and grid[i][j] == 1 and g[i][j] == 0: + g[i][j] = 1 + q.put((i, j)) + if i == -1 or i == n or j == -1 or j == m or grid[i][j] == 0: + ret += 1 + return ret + + +if __name__ == "__main__": + s = Solution() + grid = [[0,1,0,0],[1,1,1,0],[0,1,0,0],[1,1,0,0]] + print s.islandPerimeter(grid) From de4e91847448c80aac2cae9156d04adc31152a55 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 21 Nov 2016 16:49:34 +0800 Subject: [PATCH 139/210] =?UTF-8?q?16=E8=BF=9B=E5=88=B6=E8=BD=AC=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Convert_a_Number_to_Hexadecimal.py | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Convert_a_Number_to_Hexadecimal.py diff --git a/Convert_a_Number_to_Hexadecimal.py b/Convert_a_Number_to_Hexadecimal.py new file mode 100644 index 0000000..6bde3b9 --- /dev/null +++ b/Convert_a_Number_to_Hexadecimal.py @@ -0,0 +1,40 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-21 04:35:06 PM +# Last modified : 2016-11-21 04:49:18 PM +# File Name : Convert_a_Number_to_Hexadecimal.py +# Desc : +class Solution(object): + def toHex(self, num): + hexList = [] + tmp = 0 + hexDict = {10:'a', 11:'b', 12:'c', 13:'d', 14:'e', 15:'f'} + for i in range(33): + if i % 4 == 0 and i != 0: + hexList.append(tmp) + tmp = 0 + if (num & (1 << i)) != 0: + tmp = tmp | 1 << (i % 4) + + hexList = hexList[::-1] + ret = [] + begin = 0 + for i in hexList: + if i != 0: + break + begin += 1 + + for i in range(begin, 8): + if hexList[i] < 10: + ret.append(str(hexList[i])) + else: + ret.append(hexDict[hexList[i]]) + return ''.join(ret) + + +if __name__ == "__main__": + s = Solution() + num = -1 + print s.toHex(num) From f034c5fbe7f0c48d237595843a269fff2c8e6028 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 21 Nov 2016 16:51:14 +0800 Subject: [PATCH 140/210] =?UTF-8?q?16=E8=BF=9B=E5=88=B6=E8=BD=AC=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Convert_a_Number_to_Hexadecimal.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Convert_a_Number_to_Hexadecimal.py b/Convert_a_Number_to_Hexadecimal.py index 6bde3b9..0e9e8d8 100644 --- a/Convert_a_Number_to_Hexadecimal.py +++ b/Convert_a_Number_to_Hexadecimal.py @@ -3,11 +3,13 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-21 04:35:06 PM -# Last modified : 2016-11-21 04:49:18 PM +# Last modified : 2016-11-21 04:51:12 PM # File Name : Convert_a_Number_to_Hexadecimal.py # Desc : class Solution(object): def toHex(self, num): + if num == 0: + return "0" hexList = [] tmp = 0 hexDict = {10:'a', 11:'b', 12:'c', 13:'d', 14:'e', 15:'f'} From c25d4a0d3108b4fe6cfe485ae126a275bb030128 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 21 Nov 2016 17:32:00 +0800 Subject: [PATCH 141/210] =?UTF-8?q?kmp=E6=89=BE=E5=AD=97=E7=AC=A6=E4=B8=B2?= =?UTF-8?q?=E5=BE=AA=E7=8E=AF=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Repeated_Substring_Pattern.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Repeated_Substring_Pattern.py diff --git a/Repeated_Substring_Pattern.py b/Repeated_Substring_Pattern.py new file mode 100644 index 0000000..e61a2c9 --- /dev/null +++ b/Repeated_Substring_Pattern.py @@ -0,0 +1,29 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-21 05:13:40 PM +# Last modified : 2016-11-21 05:31:40 PM +# File Name : Repeated_Substring_Pattern.py +# Desc : +class Solution(object): + def repeatedSubstringPattern(self, string): + s = '$' + string + j = 0 + n = len(s) + P = [0 for i in range(n)] + for i in range(2, n): + while j > 0 and s[i] != s[j + 1]: + j = P[j] + if s[i] == s[j + 1]: + j += 1 + P[i] = j + + n -= 1 + return P[n] and (n % (n - P[n])) == 0 + + +if __name__ == "__main__": + s = Solution() + string = 'abcabcabcabc' + print s.repeatedSubstringPattern(string) From b15355d60891a30d7b6964d6cb4a2a6f1fcdfaa3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 21 Nov 2016 23:00:04 +0800 Subject: [PATCH 142/210] =?UTF-8?q?=E6=89=BE=E7=AC=ACn=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Nth_Digit.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Nth_Digit.py diff --git a/Nth_Digit.py b/Nth_Digit.py new file mode 100644 index 0000000..c5620ba --- /dev/null +++ b/Nth_Digit.py @@ -0,0 +1,41 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-21 08:29:47 PM +# Last modified : 2016-11-21 10:59:50 PM +# File Name : Nth_Digit.py +# Desc : +class Solution(object): + def findNthDigit(self, n): + tmp = 9 + base = 9 + begin = 1 + i = 1 + while tmp < n: + tmp = tmp + base * 10 * (i + 1) + i += 1 + base *= 10 + begin *= 10 + + tmp = tmp - base * i + n = n - tmp + ge = n / i + y = n % i + if y == 0: + ge -= 1 + begin += ge + return begin % 10 + else: + begin += ge + y = i - y + while y != 0: + begin /= 10 + y -= 1 + return begin % 10 + + +if __name__ == "__main__": + s = Solution() + n = 21 + print s.findNthDigit(n) From 1445d1f78c2c99604e03bcc742b4365d2f6eb5fc Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 22 Nov 2016 18:23:52 +0800 Subject: [PATCH 143/210] =?UTF-8?q?=E5=90=AF=E5=8A=A8=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- send.txt | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 send.txt diff --git a/send.txt b/send.txt new file mode 100644 index 0000000..880f6df --- /dev/null +++ b/send.txt @@ -0,0 +1,51 @@ +#!/bin/bash + +#在远程机器上执行部署的jar包 + +set -e + +WORKDIR=/opt/meituan/apps/waimai_service_product_server/work +JARNAME=waimai_service_product_server-1.0.0-SNAPSHOT.jar +LOGFILE=waimai_service_product_server.boot.log.`date "+%Y%m%d"` +source $WORKDIR/deploy.conf + +echo "#开始部署#" +HOST_NAME=`hostname` +echo $HOST_NAME +HOST_IP=`hostname -i | awk -F ' ' '{if(NF==1) print $1;else print $2 end}'` +#/usr/local/java/bin/java -jar -Djava.ext.dirs=$WORKDIR/lib $WORKDIR/$JARNAME >> $WORKDIR/$LOGFILE 2>&1 +cd $WORKDIR +if [ -f $JARNAME ]; then + if [ -d classes ]; then + rm -rf classes + fi + mkdir classes + cd classes + /usr/local/java/bin/jar -xvf $WORKDIR/$JARNAME + if [ $ENVIRONMENT == "production" ]; then + cd conf + cat $WORKDIR/deploy.conf > config.properties + if [[ $HOST_NAME == xianfu-* ]]; then + cat $WORKDIR/database.properties.lf > database.properties + elif [[ $HOST_NAME == yf-* ]]; then + cat $WORKDIR/database.properties.yf > database.properties + else + cat $WORKDIR/database.properties.dx > database.properties + fi + fi +fi +VM_PARAM='' +if [ $ENVIRONMENT == "production" ] +then + VM_PARAM='-server -Xmx6g -Xms6g -XX:SurvivorRatio=8 -XX:NewRatio=2 -XX:PermSize=128m -XX:MaxPermSize=256m -XX:+DisableExplicitGC -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintCommandLineFlags -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:ParallelCMSThreads=4 -XX:+CMSClassUnloadingEnabled -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction=1 -XX:CMSInitiatingOccupancyFraction=50' +else + VM_PARAM='' + if [ ! -d $WORKDIR/conf/ ]; then + mkdir $WORKDIR/conf/ + fi + VM_PARAM='-XX:PermSize=82m -XX:MaxPermSize=256m' + cp -f $WORKDIR/classes/conf/log4j.xml $WORKDIR/conf/ +fi +/usr/local/java/bin/java $VM_PARAM -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/sankuai/logs/waimai_service_product_server.heaperr.log.`date "+%Y%m%d%H%M%S"` -Denvironment=$ENVIRONMENT -Xloggc:/var/sankuai/logs/waimai_service_product_server.gc.log.`date "+%Y%m%d%H%M%S"` -Dapp.key=com.sankuai.waimai.product -Dapp.host=$HOST_NAME -Dapp.ip=$HOST_IP -Dapp.port=8522 -Dfile.encoding=utf8 -Dworkdir=$WORKDIR -cp $WORKDIR/classes:`find $WORKDIR/lib -name "*.jar" -printf "%p:"` com.sankuai.meituan.waimai.product.boot.Boot >> /var/sankuai/logs/$LOGFILE 2>&1 +#disown +echo "#结束部署#" \ No newline at end of file From c1b52ab508cb3ab6e3b02e51cdc4f2ec0840c48f Mon Sep 17 00:00:00 2001 From: tanghanyi Date: Tue, 22 Nov 2016 22:55:20 +0800 Subject: [PATCH 144/210] =?UTF-8?q?=E6=89=A7=E8=A1=8C=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- send.txt | 131 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 83 insertions(+), 48 deletions(-) diff --git a/send.txt b/send.txt index 880f6df..550542c 100644 --- a/send.txt +++ b/send.txt @@ -1,51 +1,86 @@ -#!/bin/bash - -#在远程机器上执行部署的jar包 - -set -e - -WORKDIR=/opt/meituan/apps/waimai_service_product_server/work -JARNAME=waimai_service_product_server-1.0.0-SNAPSHOT.jar -LOGFILE=waimai_service_product_server.boot.log.`date "+%Y%m%d"` -source $WORKDIR/deploy.conf - -echo "#开始部署#" -HOST_NAME=`hostname` -echo $HOST_NAME -HOST_IP=`hostname -i | awk -F ' ' '{if(NF==1) print $1;else print $2 end}'` -#/usr/local/java/bin/java -jar -Djava.ext.dirs=$WORKDIR/lib $WORKDIR/$JARNAME >> $WORKDIR/$LOGFILE 2>&1 -cd $WORKDIR -if [ -f $JARNAME ]; then - if [ -d classes ]; then - rm -rf classes +#!/usr/bin/env bash +# ------------------------------------ +# default jvm args if you do not config in /jetty/boot.ini +# ------------------------------------ +JVM_ARGS="-server -Dfile.encoding=UTF-8 -Dsun.jnu.encoding=UTF-8 -Djava.io.tmpdir=/tmp -Djava.net.preferIPv6Addresses=false" +JVM_GC="-XX:+DisableExplicitGC -XX:+PrintGCDetails -XX:+PrintHeapAtGC -XX:+PrintTenuringDistribution -XX:+UseConcMarkSweepGC -XX:+PrintGCTimeStamps -XX:+PrintGCDateStamps" +JVM_GC=$JVM_GC" -XX:CMSFullGCsBeforeCompaction=0 -XX:+UseCMSCompactAtFullCollection -XX:CMSInitiatingOccupancyFraction=80" +JVM_HEAP="-XX:SurvivorRatio=8 -XX:PermSize=256m -XX:MaxPermSize=256m -XX:+HeapDumpOnOutOfMemoryError -XX:ReservedCodeCacheSize=128m -XX:InitialCodeCacheSize=128m" +JVM_SIZE="-Xmx4g -Xms4g" + +# ------------------------------------ +# do not edit +# ------------------------------------ + + +function init() { + if [ -z "$LOG_PATH" ]; then + LOG_PATH="/opt/logs/mobile/$MODULE" + fi + + if [ -z "$WORK_PATH" ]; then + WORK_PATH="/opt/meituan/mobile/$MODULE" + fi + WEB_ROOT=$WORK_PATH/webroot + unzip *.war -d webroot + # 用于nginx健康检查, 有些业务的nginx健康检查的url是 /status, 故需要做touch操作 + touch $WEB_ROOT/status + # 创建log对应的目录 + mkdir -p $LOG_PATH + + # 定时清理日志,如果本身业务逻辑可以处理日志的定期清理,以下逻辑可以省略。 + cleanpath="$WORK_PATH/clean.sh" + echo "#!/bin/bash" > $cleanpath + echo "find $LOG_PATH -mtime +1 -exec /bin/gzip {} \;" >> $cleanpath + echo "find $LOG_PATH -mtime +3 -exec rm -fr {} \;" >> $cleanpath + chmod +x $cleanpath + (crontab -l|grep -v $cleanpath ; echo "58 05 * * * /bin/bash $cleanpath > /dev/null 2>&1" ) | crontab +} + +function run() { + #根据java版本,决定java命令的位置 + JAVA_CMD=$JAVA_VERSION + if [ -z "$JAVA_VERSION" ]; then + JAVA_CMD="java" #系统默认的java命令 + else + JAVA_CMD="/usr/local/$JAVA_VERSION/bin/java" + fi + + EXEC="exec" + CONTEXT=/ + cd $WEB_ROOT + # 解决多个包同时引用asm库造成包冲突引起服务启动不正常问题,用户可根据自己情况,决定下一句是否需要 + rm -rf WEB-INF/lib/asm-* + if [ -e "WEB-INF/classes/release" ]; then + cp -rf WEB-INF/classes/release/* WEB-INF/classes fi - mkdir classes - cd classes - /usr/local/java/bin/jar -xvf $WORKDIR/$JARNAME - if [ $ENVIRONMENT == "production" ]; then - cd conf - cat $WORKDIR/deploy.conf > config.properties - if [[ $HOST_NAME == xianfu-* ]]; then - cat $WORKDIR/database.properties.lf > database.properties - elif [[ $HOST_NAME == yf-* ]]; then - cat $WORKDIR/database.properties.yf > database.properties - else - cat $WORKDIR/database.properties.dx > database.properties - fi + if [ -e "WEB-INF/classes/jetty/boot.ini" ]; then + source WEB-INF/classes/jetty/boot.ini fi -fi -VM_PARAM='' -if [ $ENVIRONMENT == "production" ] -then - VM_PARAM='-server -Xmx6g -Xms6g -XX:SurvivorRatio=8 -XX:NewRatio=2 -XX:PermSize=128m -XX:MaxPermSize=256m -XX:+DisableExplicitGC -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintCommandLineFlags -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:ParallelCMSThreads=4 -XX:+CMSClassUnloadingEnabled -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction=1 -XX:CMSInitiatingOccupancyFraction=50' -else - VM_PARAM='' - if [ ! -d $WORKDIR/conf/ ]; then - mkdir $WORKDIR/conf/ + + + CLASSPATH=WEB-INF/classes + for i in WEB-INF/lib/* + do + CLASSPATH=$CLASSPATH:$i + done + export CLASSPATH + JAVA_ARGS="-Djetty.webroot=$WEB_ROOT" + EXEC_JAVA="$EXEC $JAVA_CMD $JVM_ARGS $JVM_SIZE $JVM_HEAP $JVM_JIT $JVM_GC" + EXEC_JAVA=$EXEC_JAVA" -Xloggc:$LOG_PATH/$MODULE.gc.log -XX:ErrorFile=$LOG_PATH/$MODULE.vmerr.log -XX:HeapDumpPath=$LOG_PATH/$MODULE.heaperr.log" + EXEC_JAVA=$EXEC_JAVA" -Djetty.appkey=$MODULE -Djetty.context=$CONTEXT -Djetty.logs=$LOG_PATH" + EXEC_JAVA=$EXEC_JAVA" $JAVA_ARGS" + if [ "$UID" = "0" ]; then + ulimit -n 1024000 + umask 000 + else + echo $EXEC_JAVA fi - VM_PARAM='-XX:PermSize=82m -XX:MaxPermSize=256m' - cp -f $WORKDIR/classes/conf/log4j.xml $WORKDIR/conf/ -fi -/usr/local/java/bin/java $VM_PARAM -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/sankuai/logs/waimai_service_product_server.heaperr.log.`date "+%Y%m%d%H%M%S"` -Denvironment=$ENVIRONMENT -Xloggc:/var/sankuai/logs/waimai_service_product_server.gc.log.`date "+%Y%m%d%H%M%S"` -Dapp.key=com.sankuai.waimai.product -Dapp.host=$HOST_NAME -Dapp.ip=$HOST_IP -Dapp.port=8522 -Dfile.encoding=utf8 -Dworkdir=$WORKDIR -cp $WORKDIR/classes:`find $WORKDIR/lib -name "*.jar" -printf "%p:"` com.sankuai.meituan.waimai.product.boot.Boot >> /var/sankuai/logs/$LOGFILE 2>&1 -#disown -echo "#结束部署#" \ No newline at end of file + $EXEC_JAVA com.sankuai.mms.boot.Bootstrap 2>&1 +} + +# ------------------------------------ +# actually work +# ------------------------------------ +init +run \ No newline at end of file From 05332db48a1ac74e8e27809a7b60789aaa907260 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 00:09:11 +0800 Subject: [PATCH 145/210] =?UTF-8?q?=E6=B1=82=E5=92=8C=E5=85=AC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arranging_Coins.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Arranging_Coins.py diff --git a/Arranging_Coins.py b/Arranging_Coins.py new file mode 100644 index 0000000..75236d7 --- /dev/null +++ b/Arranging_Coins.py @@ -0,0 +1,22 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-23 12:05:18 AM +# Last modified : 2016-11-23 12:08:28 AM +# File Name : Arranging_Coins.py +# Desc : +class Solution(object): + def arrangeCoins(self, n): + m = 1 + while True: + if m * (m + 1) / 2 > n: + break + m += 1 + return m - 1 + + +if __name__ == "__main__": + s = Solution() + n = 2100000000 + print s.arrangeCoins(n) From a13f6e0b3869b13fdf8e13a81ca9c543c86bf4d2 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 11:27:48 +0800 Subject: [PATCH 146/210] =?UTF-8?q?=E5=BE=AA=E7=8E=AF=E6=9C=80=E5=A4=A7?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rotate_Function.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Rotate_Function.py diff --git a/Rotate_Function.py b/Rotate_Function.py new file mode 100644 index 0000000..4624d6c --- /dev/null +++ b/Rotate_Function.py @@ -0,0 +1,34 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-23 10:44:17 AM +# Last modified : 2016-11-23 11:27:31 AM +# File Name : Rotate_Function.py +# Desc : +""" +第一遍获取到和sum_A +每次移动的增加值为sum_A - A[i] * n +因为每个数增加一倍,最后一个数减少下标乘以A[i]倍 +""" +class Solution(object): + def maxRotateFunction(self, A): + n = len(A) + sum_A = sum(A) + f = 0 + for i, j in enumerate(A): + f += i * j + max_f = f + + i = n - 1 + while i >= 0: + f += (sum_A - A[i] * n) + i -= 1 + max_f = max(max_f, f) + return max_f + + +if __name__ == "__main__": + s = Solution() + A = [4, 3, 2, 6] + print s.maxRotateFunction(A) From 62845c8bc4fe6f0659c0b069090600ca7770d852 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 16:53:34 +0800 Subject: [PATCH 147/210] =?UTF-8?q?=E2=80=9C=E6=8C=89=E7=85=A7=E5=9C=A8?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E5=85=83=E7=B4=A0=E4=B9=8B=E5=89=8D=E6=AF=94?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E5=85=83=E7=B4=A0=E5=A4=A7=E7=9A=84=E6=9C=89?= =?UTF-8?q?=E5=87=A0=E4=B8=AA=E6=9D=A5=E6=8E=92=E5=BA=8F=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Queue_Reconstruction_by_Height.py | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Queue_Reconstruction_by_Height.py diff --git a/Queue_Reconstruction_by_Height.py b/Queue_Reconstruction_by_Height.py new file mode 100644 index 0000000..5b1517a --- /dev/null +++ b/Queue_Reconstruction_by_Height.py @@ -0,0 +1,39 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-23 04:33:03 PM +# Last modified : 2016-11-23 04:52:30 PM +# File Name : Queue_Reconstruction_by_Height.py +# Desc : + +class Solution(object): + + def compare(self, pair_a, pair_b): + if pair_a[0] > pair_b[0]: + return -1 + elif pair_a[0] < pair_b[0]: + return 1 + elif pair_a[1] > pair_b[1]: + return 1 + elif pair_a[1] < pair_b[1]: + return -1 + else: + return 0 + + + def reconstructQueue(self, people): + n = len(people) + ret = [] + people_height = sorted(people, cmp = self.compare) + ret.append(people_height[0]) + for i in range(1, n): + ret.insert(people_height[i][1], people_height[i]) + + return ret + + +if __name__ == "__main__": + s = Solution() + people = [[7,0],[4,4],[7,1],[5,0],[6,1],[5,2]] + print s.reconstructQueue(people) From 3c32e42022ac912a3f2b9a9c0aec97f888e1824c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 16:54:50 +0800 Subject: [PATCH 148/210] =?UTF-8?q?=E2=80=9C=E6=8C=89=E7=85=A7=E5=9C=A8?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E5=85=83=E7=B4=A0=E4=B9=8B=E5=89=8D=E6=AF=94?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E5=85=83=E7=B4=A0=E5=A4=A7=E7=9A=84=E6=9C=89?= =?UTF-8?q?=E5=87=A0=E4=B8=AA=E6=9D=A5=E6=8E=92=E5=BA=8F=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Queue_Reconstruction_by_Height.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Queue_Reconstruction_by_Height.py b/Queue_Reconstruction_by_Height.py index 5b1517a..237adc0 100644 --- a/Queue_Reconstruction_by_Height.py +++ b/Queue_Reconstruction_by_Height.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-23 04:33:03 PM -# Last modified : 2016-11-23 04:52:30 PM +# Last modified : 2016-11-23 04:54:48 PM # File Name : Queue_Reconstruction_by_Height.py # Desc : @@ -25,6 +25,8 @@ def compare(self, pair_a, pair_b): def reconstructQueue(self, people): n = len(people) ret = [] + if n == 0: + return ret people_height = sorted(people, cmp = self.compare) ret.append(people_height[0]) for i in range(1, n): From 0e456061e25027266526d90eaacdeba0ac11d104 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 16:59:05 +0800 Subject: [PATCH 149/210] =?UTF-8?q?=E2=80=9C=E6=8C=89=E7=85=A7=E5=9C=A8?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E5=85=83=E7=B4=A0=E4=B9=8B=E5=89=8D=E6=AF=94?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E5=85=83=E7=B4=A0=E5=A4=A7=E7=9A=84=E6=9C=89?= =?UTF-8?q?=E5=87=A0=E4=B8=AA=E6=9D=A5=E6=8E=92=E5=BA=8F=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Queue_Reconstruction_by_Height.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Queue_Reconstruction_by_Height.py b/Queue_Reconstruction_by_Height.py index 237adc0..0bd0779 100644 --- a/Queue_Reconstruction_by_Height.py +++ b/Queue_Reconstruction_by_Height.py @@ -3,10 +3,25 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-23 04:33:03 PM -# Last modified : 2016-11-23 04:54:48 PM +# Last modified : 2016-11-23 04:59:02 PM # File Name : Queue_Reconstruction_by_Height.py # Desc : +""" +#we have list of persons represented as [height, key] as input +#First fill the answer list with the tallest persons in ascending order of their keys eg: [7,0], [7,1], [7,2] +#Then fill the next tallest persons in the answer list at index same as key. eg: [7,0],[6,1],[7,1],[7,2],[6,5] +#so on +more explanation: + +#First sort the input list in descending order of heights and ascending order of keys +#now iterate over the list and insert each person into answer array at index same as key of person. + +eg: input : [[7,0], [4,4], [7,1], [5,0], [6,1], [5,2]] +sort input: [[7,0], [7,1], [6,1], [5,0], [5,2], [4,4] +iterate over sorted array and insert each person at index same as key of the person +answer array grows like this for each iteration. +""" class Solution(object): def compare(self, pair_a, pair_b): From 811be208242335ed1ee0e98d27466b5c6558eb30 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 17:14:55 +0800 Subject: [PATCH 150/210] =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E6=88=98=E5=88=97?= =?UTF-8?q?=E8=88=B0=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Battleships_in_a_Board.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Battleships_in_a_Board.py diff --git a/Battleships_in_a_Board.py b/Battleships_in_a_Board.py new file mode 100644 index 0000000..ce1c75f --- /dev/null +++ b/Battleships_in_a_Board.py @@ -0,0 +1,32 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-23 05:03:30 PM +# Last modified : 2016-11-23 05:14:40 PM +# File Name : Battleships_in_a_Board.py +# Desc : +class Solution(object): + def countBattleships(self, board): + n = len(board) + if n == 0: + return 0 + m = len(board[0]) + ret = 0 + + for i in range(n): + for j in range(m): + if board[i][j] != '.' and ((i - 1 < 0 and (j - 1 < 0 or board[i][j - 1] != 'X')) or (j - 1 < 0 and (i - 1 < 0 or board[i - 1][j] != 'X'))): + ret += 1 + continue + if board[i][j] == '.' or board[i-1][j] == 'X' or board[i][j-1] == 'X': + continue + ret += 1 + + return ret + + +if __name__ == "__main__": + s = Solution() + board = ["X..X","...X","...X"] + print s.countBattleships(board) From 2bbcf87fd3bafde7cd570efe45aa7f6d842c05bf Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 23:55:24 +0800 Subject: [PATCH 151/210] =?UTF-8?q?=E7=AD=89=E5=B7=AE=E6=95=B0=E5=88=97?= =?UTF-8?q?=E5=AD=90=E5=BA=8F=E5=88=97=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arithmetic_Slices.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Arithmetic_Slices.py diff --git a/Arithmetic_Slices.py b/Arithmetic_Slices.py new file mode 100644 index 0000000..933c40c --- /dev/null +++ b/Arithmetic_Slices.py @@ -0,0 +1,29 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-23 09:18:03 PM +# Last modified : 2016-11-23 11:54:53 PM +# File Name : Arithmetic_Slices.py +# Desc : +class Solution(object): + def numberOfArithmeticSlices(self, A): + addend = 0 + n = len(A) + ret = 0 + cha = A[1] - A[0] + for i in range(2, n): + if A[i] - A[i - 1] == cha: + addend += 1 + ret += addend + else: + addend = 0 + + return ret + + +if __name__ == "__main__": + s = Solution() + A = [1, 2, 3, 4] + print s.numberOfArithmeticSlices(A) + From cf614e0444eb7ab75cd4f5f7e6e86c1c334650fa Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 23:56:48 +0800 Subject: [PATCH 152/210] =?UTF-8?q?=E7=AD=89=E5=B7=AE=E6=95=B0=E5=88=97?= =?UTF-8?q?=E5=AD=90=E5=BA=8F=E5=88=97=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arithmetic_Slices.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Arithmetic_Slices.py b/Arithmetic_Slices.py index 933c40c..6afec65 100644 --- a/Arithmetic_Slices.py +++ b/Arithmetic_Slices.py @@ -3,9 +3,17 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-23 09:18:03 PM -# Last modified : 2016-11-23 11:54:53 PM +# Last modified : 2016-11-23 11:56:45 PM # File Name : Arithmetic_Slices.py # Desc : +""" +数组 等差数列的数目 与上一数组的等差数列数目比较 +1 2 3 1 1 - 0 = 1 +1 2 3 4 3 3 - 1 = 2 +1 2 3 4 5 6 6 - 3 = 3 +1 2 3 4 5 6 10 10 - 6 = 4 +1 2 3 4 5 6 7 15 15 - 10 = 5 +""" class Solution(object): def numberOfArithmeticSlices(self, A): addend = 0 From 104fa2eaf73833cbcad7111c1932910f724cc0b6 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 23:58:11 +0800 Subject: [PATCH 153/210] =?UTF-8?q?=E7=AD=89=E5=B7=AE=E6=95=B0=E5=88=97?= =?UTF-8?q?=E5=AD=90=E5=BA=8F=E5=88=97=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arithmetic_Slices.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Arithmetic_Slices.py b/Arithmetic_Slices.py index 6afec65..e4fa48a 100644 --- a/Arithmetic_Slices.py +++ b/Arithmetic_Slices.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-23 09:18:03 PM -# Last modified : 2016-11-23 11:56:45 PM +# Last modified : 2016-11-23 11:58:08 PM # File Name : Arithmetic_Slices.py # Desc : """ @@ -18,6 +18,8 @@ class Solution(object): def numberOfArithmeticSlices(self, A): addend = 0 n = len(A) + if n == 0: + return 0 ret = 0 cha = A[1] - A[0] for i in range(2, n): From d2b1d71b03ed5b221acc24e901817ee4c60c6c4b Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 23 Nov 2016 23:59:10 +0800 Subject: [PATCH 154/210] =?UTF-8?q?=E7=AD=89=E5=B7=AE=E6=95=B0=E5=88=97?= =?UTF-8?q?=E5=AD=90=E5=BA=8F=E5=88=97=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arithmetic_Slices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arithmetic_Slices.py b/Arithmetic_Slices.py index e4fa48a..777ba20 100644 --- a/Arithmetic_Slices.py +++ b/Arithmetic_Slices.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-23 09:18:03 PM -# Last modified : 2016-11-23 11:58:08 PM +# Last modified : 2016-11-23 11:59:08 PM # File Name : Arithmetic_Slices.py # Desc : """ @@ -18,7 +18,7 @@ class Solution(object): def numberOfArithmeticSlices(self, A): addend = 0 n = len(A) - if n == 0: + if n < 3: return 0 ret = 0 cha = A[1] - A[0] From 0f4c182aa3497491097add96e4847e8101bcbd20 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 24 Nov 2016 00:00:17 +0800 Subject: [PATCH 155/210] =?UTF-8?q?=E7=AD=89=E5=B7=AE=E6=95=B0=E5=88=97?= =?UTF-8?q?=E5=AD=90=E5=BA=8F=E5=88=97=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arithmetic_Slices.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Arithmetic_Slices.py b/Arithmetic_Slices.py index 777ba20..93cb3fc 100644 --- a/Arithmetic_Slices.py +++ b/Arithmetic_Slices.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-23 09:18:03 PM -# Last modified : 2016-11-23 11:59:08 PM +# Last modified : 2016-11-24 12:00:13 AM # File Name : Arithmetic_Slices.py # Desc : """ @@ -27,6 +27,7 @@ def numberOfArithmeticSlices(self, A): addend += 1 ret += addend else: + cha = A[i] - A[i - 1] addend = 0 return ret From 1019ac05c98800a867f49684a0ef9daef2e4e303 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 24 Nov 2016 23:37:55 +0800 Subject: [PATCH 156/210] =?UTF-8?q?=E9=9A=8F=E6=9C=BAshuffle=E6=95=B0?= =?UTF-8?q?=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Shuffle_an_Array.py | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Shuffle_an_Array.py diff --git a/Shuffle_an_Array.py b/Shuffle_an_Array.py new file mode 100644 index 0000000..5554989 --- /dev/null +++ b/Shuffle_an_Array.py @@ -0,0 +1,46 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-24 11:37:19 PM +# Last modified : 2016-11-24 11:37:34 PM +# File Name : Shuffle_an_Array.py +# Desc : + +class Solution(object): + + def __init__(self, nums): + """ + + :type nums: List[int] + :type size: int + """ + self.initial = nums[:] + self.nums = nums + self.n = len(nums) + + + def reset(self): + """ + Resets the array to its original configuration and return it. + :rtype: List[int] + """ + return self.initial + + + def shuffle(self): + """ + Returns a random shuffling of the array. + :rtype: List[int] + """ + n = self.n + nums = self.nums[:] + while n != 0: + pos = int(random.random() * n) + nums[pos], nums[n - 1] = nums[n - 1], nums[pos] + n -= 1 + + return nums + +if __name__ == "__main__": + s = Solution() From a454dd8d56ef0e0847208bb33918403fed28e01e Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 24 Nov 2016 23:55:46 +0800 Subject: [PATCH 157/210] =?UTF-8?q?=E4=B8=8D=E8=BF=9E=E7=BB=AD=E5=AD=90?= =?UTF-8?q?=E4=B8=B2=E5=88=A4=E5=AE=9A=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Is_Subsequence.py | 56 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 Is_Subsequence.py diff --git a/Is_Subsequence.py b/Is_Subsequence.py new file mode 100644 index 0000000..5f117a4 --- /dev/null +++ b/Is_Subsequence.py @@ -0,0 +1,56 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-24 11:39:42 PM +# Last modified : 2016-11-24 11:54:56 PM +# File Name : Is_Subsequence.py +# Desc : +""" +class Solution(object): + def isSubsequence(self, s, t): + s = '$' + s + t = '$' + t + sn = len(s) + tn = len(t) + P = [0 for i in range(sn)] + j = 0 + for i in range(2, sn): + while j > 0 and s[i] != s[j + 1]: + j = P[j] + if s[i] == s[j + 1]: + j += 1 + P[i] = j + + j = 0 + for i in range(1, tn): + while j > 0 and t[i] != s[j + 1]: + j = P[j] + if t[i] == s[j + 1]: + j += 1 + if j == sn - 1: + print i - sn + 1 + j = P[j] + + return False +""" + +class Solution(object): + def isSubsequence(self, s, t): + sn = len(s) + tn = len(t) + j = 0 + for i in range(tn): + if t[i] == s[j]: + j += 1 + if j == sn: + return True + + return False + + +if __name__ == "__main__": + s = Solution() + st = "abc" + t = "diejfabcldjfabc" + print s.isSubsequence(st, t) From 4bf63ce71846415bd7d7806923ca38d50cf28cd2 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 24 Nov 2016 23:59:12 +0800 Subject: [PATCH 158/210] =?UTF-8?q?=E4=B8=8D=E8=BF=9E=E7=BB=AD=E5=AD=90?= =?UTF-8?q?=E4=B8=B2=E5=88=A4=E5=AE=9A=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Is_Subsequence.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Is_Subsequence.py b/Is_Subsequence.py index 5f117a4..4b219a8 100644 --- a/Is_Subsequence.py +++ b/Is_Subsequence.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-24 11:39:42 PM -# Last modified : 2016-11-24 11:54:56 PM +# Last modified : 2016-11-24 11:59:09 PM # File Name : Is_Subsequence.py # Desc : """ @@ -39,6 +39,9 @@ class Solution(object): def isSubsequence(self, s, t): sn = len(s) tn = len(t) + if sn == 0: + return True + j = 0 for i in range(tn): if t[i] == s[j]: From d1cdcf934b3153e2f798c1bf58f9a2a1badca9a8 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 26 Nov 2016 23:39:49 +0800 Subject: [PATCH 159/210] =?UTF-8?q?=E7=BB=84=E5=90=88=E6=88=90=E7=9B=AE?= =?UTF-8?q?=E6=A0=87=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Combination_Sum_IV.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Combination_Sum_IV.py diff --git a/Combination_Sum_IV.py b/Combination_Sum_IV.py new file mode 100644 index 0000000..0ca562f --- /dev/null +++ b/Combination_Sum_IV.py @@ -0,0 +1,32 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-26 11:34:16 PM +# Last modified : 2016-11-26 11:39:00 PM +# File Name : Combination_Sum_IV.py +# Desc : +class Solution(object): + def __init__(self): + self.ret = 0 + + def dfs(self, nums, target, n): + if target == 0: + self.ret += 1 + return + + for i in range(n): + if target >= nums[i]: + self.dfs(nums, target - nums[i], n) + + + def combinationSum4(self, nums, target): + self.dfs(nums, target, len(nums)) + return self.ret + + +if __name__ == "__main__": + s = Solution() + nums = [1, 2, 3] + target = 4 + print s.combinationSum4(nums, target) From 0bb2d614d7ade9308eded76429080595dd36d0e6 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sun, 27 Nov 2016 00:23:53 +0800 Subject: [PATCH 160/210] =?UTF-8?q?=E7=BB=84=E5=90=88=E6=88=90=E7=9B=AE?= =?UTF-8?q?=E6=A0=87=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Combination_Sum_IV.py | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/Combination_Sum_IV.py b/Combination_Sum_IV.py index 0ca562f..f489101 100644 --- a/Combination_Sum_IV.py +++ b/Combination_Sum_IV.py @@ -3,26 +3,20 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-11-26 11:34:16 PM -# Last modified : 2016-11-26 11:39:00 PM +# Last modified : 2016-11-27 12:23:50 AM # File Name : Combination_Sum_IV.py # Desc : class Solution(object): - def __init__(self): - self.ret = 0 - - def dfs(self, nums, target, n): - if target == 0: - self.ret += 1 - return - - for i in range(n): - if target >= nums[i]: - self.dfs(nums, target - nums[i], n) - - def combinationSum4(self, nums, target): - self.dfs(nums, target, len(nums)) - return self.ret + dp = [0 for i in range(target + 1)] + dp[0] = 1 + n = len(nums) + for i in range(target + 1): + for j in range(n): + if i >= nums[j]: + dp[i] = dp[i] + dp[i - nums[j]] + + return dp[target] if __name__ == "__main__": From 838980b6006afdfccd6a2201aa2dd931b750496a Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 30 Nov 2016 00:30:04 +0800 Subject: [PATCH 161/210] =?UTF-8?q?=E8=A1=A8=E8=BE=BE=E5=BC=8F=E7=9A=84?= =?UTF-8?q?=E6=89=80=E6=9C=89=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Different_Ways_to_Add_Parentheses.py | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Different_Ways_to_Add_Parentheses.py diff --git a/Different_Ways_to_Add_Parentheses.py b/Different_Ways_to_Add_Parentheses.py new file mode 100644 index 0000000..7ecd4d7 --- /dev/null +++ b/Different_Ways_to_Add_Parentheses.py @@ -0,0 +1,45 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-30 12:16:30 AM +# Last modified : 2016-11-30 12:29:35 AM +# File Name : Different_Ways_to_Add_Parentheses.py +# Desc : +import operator as op +class Solution(object): + def dfs(self, s): + if s in self.mem: + return self.mem[s] + elif s.isdigit(): + return [int(s)] + else: + res = [] + ops = None + for i in range(len(s)): + if s[i].isdigit(): + continue + a1 = self.dfs(s[0:i]) + a2 = self.dfs(s[i+1:]) + if s[i] == '-': + ops = op.sub + elif s[i] == '+': + ops = op.add + elif s[i] == '*': + ops = op.mul + for e1 in a1: + for e2 in a2: + res.append(ops(e1, e2)) + self.mem[s] = res + return res + + + def diffWaysToCompute(self, in_put): + self.mem = {} + return self.dfs(in_put) + + +if __name__ == "__main__": + s = Solution() + in_put = "2*3-4*5" + print s.diffWaysToCompute(in_put) From 00ea8d7c31294ffeb363b67aa4ee32d4b759f0de Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 3 Dec 2016 17:35:37 +0800 Subject: [PATCH 162/210] =?UTF-8?q?=E6=95=B0=E7=BB=84partition=E6=88=90?= =?UTF-8?q?=E4=B8=A4=E4=B8=AA=E7=9B=B8=E7=AD=89=E6=95=B0=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Partition_Equal_Subset_Sum.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Partition_Equal_Subset_Sum.py diff --git a/Partition_Equal_Subset_Sum.py b/Partition_Equal_Subset_Sum.py new file mode 100644 index 0000000..c548026 --- /dev/null +++ b/Partition_Equal_Subset_Sum.py @@ -0,0 +1,27 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-03 04:56:59 PM +# Last modified : 2016-12-03 05:35:05 PM +# File Name : Partition_Equal_Subset_Sum.py +# Desc : +class Solution(object): + def canPartition(self, nums): + s = sum(nums) + if (s & 1) != 0: + return False + + to_dict = {0:0} + for i in nums: + for key in to_dict.keys(): + to_dict[key + i] = 0 + if key + i == (s >> 1): + return True + + +if __name__ == "__main__": + s = Solution() + nums = [1, 5, 11, 5] + nums = [1, 2, 3, 5] + print s.canPartition(nums) From 4da690e1b07a642ab1238948d117c47af92a299d Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 3 Dec 2016 17:38:42 +0800 Subject: [PATCH 163/210] =?UTF-8?q?=E6=95=B0=E7=BB=84partition=E6=88=90?= =?UTF-8?q?=E4=B8=A4=E4=B8=AA=E7=9B=B8=E7=AD=89=E6=95=B0=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Partition_Equal_Subset_Sum.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Partition_Equal_Subset_Sum.py b/Partition_Equal_Subset_Sum.py index c548026..6a237cf 100644 --- a/Partition_Equal_Subset_Sum.py +++ b/Partition_Equal_Subset_Sum.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-03 04:56:59 PM -# Last modified : 2016-12-03 05:35:05 PM +# Last modified : 2016-12-03 05:38:38 PM # File Name : Partition_Equal_Subset_Sum.py # Desc : class Solution(object): @@ -18,6 +18,7 @@ def canPartition(self, nums): to_dict[key + i] = 0 if key + i == (s >> 1): return True + return False if __name__ == "__main__": From c2caeaa07062956dbeaf1512a2a81fbebe662290 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 3 Dec 2016 17:41:39 +0800 Subject: [PATCH 164/210] =?UTF-8?q?=E6=95=B0=E7=BB=84partition=E6=88=90?= =?UTF-8?q?=E4=B8=A4=E4=B8=AA=E7=9B=B8=E7=AD=89=E6=95=B0=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Partition_Equal_Subset_Sum.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Partition_Equal_Subset_Sum.py b/Partition_Equal_Subset_Sum.py index 6a237cf..b97c206 100644 --- a/Partition_Equal_Subset_Sum.py +++ b/Partition_Equal_Subset_Sum.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-03 04:56:59 PM -# Last modified : 2016-12-03 05:38:38 PM +# Last modified : 2016-12-03 05:41:35 PM # File Name : Partition_Equal_Subset_Sum.py # Desc : class Solution(object): @@ -15,9 +15,10 @@ def canPartition(self, nums): to_dict = {0:0} for i in nums: for key in to_dict.keys(): - to_dict[key + i] = 0 - if key + i == (s >> 1): - return True + if key + i <= (s >> 1): + to_dict[key + i] = 0 + if key + i == (s >> 1): + return True return False From 66beff929b143941c5581272e7df0a7a8432f1bd Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sun, 4 Dec 2016 00:39:32 +0800 Subject: [PATCH 165/210] =?UTF-8?q?=E5=9B=9B=E4=B8=AA=E6=95=B0=E7=BB=84?= =?UTF-8?q?=E5=85=83=E7=B4=A0=E5=92=8C=E4=B8=BA0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 4Sum_II.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 4Sum_II.py diff --git a/4Sum_II.py b/4Sum_II.py new file mode 100644 index 0000000..7263f36 --- /dev/null +++ b/4Sum_II.py @@ -0,0 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-04 12:30:49 AM +# Last modified : 2016-12-04 12:38:25 AM +# File Name : 4Sum_II.py +# Desc : +import collections +class Solution(object): + def fourSumCount(self, A, B, C, D): + AB = collections.Counter(a + b for a in A for b in B) + return sum([AB[-c-d] for c in C for d in D]) + + +if __name__ == "__main__": + s = Solution() + A = [ 1, 2] + B = [-2,-1] + C = [-1, 2] + D = [ 0, 2] + print s.fourSumCount(A, B, C, D) + From 67bce8b8263475142b2a9402d24360c82981635a Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sun, 4 Dec 2016 12:13:04 +0800 Subject: [PATCH 166/210] =?UTF-8?q?=E6=9C=80=E9=95=BF=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E5=AD=90=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Longest_Repeating_Character_Replacement.py | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/Longest_Repeating_Character_Replacement.py b/Longest_Repeating_Character_Replacement.py index e69de29..590faad 100644 --- a/Longest_Repeating_Character_Replacement.py +++ b/Longest_Repeating_Character_Replacement.py @@ -0,0 +1,33 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-04 11:45:58 AM +# Last modified : 2016-12-04 12:12:45 PM +# File Name : Longest_Repeating_Character_Replacement.py +# Desc : +class Solution(object): + def characterReplacement(self, s, k): + l = len(s) + start = 0 + ret = 0 + max_word = 0 + word_count = [0 for i in range(26)] + + for end in range(l): + word_count[ord(s[end]) - ord('A')] += 1 + max_word = max(max_word, word_count[ord(s[end]) - ord('A')]) + while end - start + 1 - max_word > k: + word_count[ord(s[start]) - ord('A')] -= 1 + start += 1 + + ret = max(ret, end - start + 1) + + return ret + + +if __name__ == "__main__": + s = Solution() + st = "AABABBA" + k = 1 + print s.characterReplacement(st, k) From f5a5607c4352e0fc3b1f775d8437036b5e129ab2 Mon Sep 17 00:00:00 2001 From: tanghanyi Date: Thu, 8 Dec 2016 18:30:31 +0800 Subject: [PATCH 167/210] =?UTF-8?q?=C3=8B=D1=B7=C2=BF=C3=8D=C3=B8=D7=A5?= =?UTF-8?q?=C8=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- soufang/body | 5731 ++++++++++++++++++ soufang/page/peking10 | 4658 +++++++++++++++ soufang/page/peking11 | 4593 ++++++++++++++ soufang/page/peking12 | 4456 ++++++++++++++ soufang/page/peking13 | 4178 +++++++++++++ soufang/page/peking14 | 4855 +++++++++++++++ soufang/page/peking15 | 3773 ++++++++++++ soufang/page/peking16 | 4240 +++++++++++++ soufang/page/peking17 | 4144 +++++++++++++ soufang/page/peking18 | 5186 ++++++++++++++++ soufang/page/peking19 | 4708 +++++++++++++++ soufang/page/peking2 | 5030 ++++++++++++++++ soufang/page/peking20 | 6304 ++++++++++++++++++++ soufang/page/peking21 | 4153 +++++++++++++ soufang/page/peking3 | 4281 +++++++++++++ soufang/page/peking4 | 4133 +++++++++++++ soufang/page/peking5 | 5732 ++++++++++++++++++ soufang/page/peking6 | 5831 ++++++++++++++++++ soufang/page/peking7 | 4201 +++++++++++++ soufang/page/peking8 | 5219 ++++++++++++++++ soufang/page/peking9 | 4258 +++++++++++++ soufang/s | 5728 ++++++++++++++++++ soufang/scrapy.cfg | 11 + soufang/soufang/__init__.py | 0 soufang/soufang/__init__.pyc | Bin 0 -> 153 bytes soufang/soufang/items.py | 17 + soufang/soufang/items.pyc | Bin 0 -> 520 bytes soufang/soufang/middlewares.py | 56 + soufang/soufang/pipelines.py | 11 + soufang/soufang/settings.py | 90 + soufang/soufang/settings.pyc | Bin 0 -> 299 bytes soufang/soufang/spiders/__init__.py | 4 + soufang/soufang/spiders/__init__.pyc | Bin 0 -> 161 bytes soufang/soufang/spiders/soufang_spider.py | 94 + soufang/soufang/spiders/soufang_spider.pyc | Bin 0 -> 2647 bytes soufang/test.json | 0 36 files changed, 105675 insertions(+) create mode 100644 soufang/body create mode 100644 soufang/page/peking10 create mode 100644 soufang/page/peking11 create mode 100644 soufang/page/peking12 create mode 100644 soufang/page/peking13 create mode 100644 soufang/page/peking14 create mode 100644 soufang/page/peking15 create mode 100644 soufang/page/peking16 create mode 100644 soufang/page/peking17 create mode 100644 soufang/page/peking18 create mode 100644 soufang/page/peking19 create mode 100644 soufang/page/peking2 create mode 100644 soufang/page/peking20 create mode 100644 soufang/page/peking21 create mode 100644 soufang/page/peking3 create mode 100644 soufang/page/peking4 create mode 100644 soufang/page/peking5 create mode 100644 soufang/page/peking6 create mode 100644 soufang/page/peking7 create mode 100644 soufang/page/peking8 create mode 100644 soufang/page/peking9 create mode 100644 soufang/s create mode 100644 soufang/scrapy.cfg create mode 100644 soufang/soufang/__init__.py create mode 100644 soufang/soufang/__init__.pyc create mode 100644 soufang/soufang/items.py create mode 100644 soufang/soufang/items.pyc create mode 100644 soufang/soufang/middlewares.py create mode 100644 soufang/soufang/pipelines.py create mode 100644 soufang/soufang/settings.py create mode 100644 soufang/soufang/settings.pyc create mode 100644 soufang/soufang/spiders/__init__.py create mode 100644 soufang/soufang/spiders/__init__.pyc create mode 100644 soufang/soufang/spiders/soufang_spider.py create mode 100644 soufang/soufang/spiders/soufang_spider.pyc create mode 100644 soufang/test.json diff --git a/soufang/body b/soufang/body new file mode 100644 index 0000000..2d6e0d7 --- /dev/null +++ b/soufang/body @@ -0,0 +1,5731 @@ + + + + + + + + + + +¥̡_¥_-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+
+
+ + +
+
ų
+
ABCDFGH
+
JKLMNQST
+
WXYZ
+ +
+ +
+ + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
+ + + + + + + +
+ +
+
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+
+
+ +
+
    + + +
  • Ͷ
  • + +
  • +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ ͼ + б +
+
+ +
+ +
+
+
+ + + +
+
+
+ + + + + + + + + + + +
+
+
+ ¥ + + Դ + ֪ѧУ +
+
+ ҷ +
+ +
+
    +
  • +
  • + + + + + ƽ + + ɽ + + ͨ + + + + ̨ + + ˳ + + + + ͷ + + + + + + + + + + ʯɽ + + ƽ + + + + + + ȷ + + + + + + ػʵ + + ̰ + + + + + + + + + + ׯ + + ܱ + + + + +
  • +
+
+ + +
+ +
+ +
+
+ +
+
+  - + +
+
+ + +
+
+ +
+
+
+
+
    +
  • +
  • + + + һ + + + + + + ľ + + + + + +
  • +
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+
+
ɫ
+ +
+
+ +
+
+ + +
+
+ +
+
+ + +
+ +
+ + +
+ + +
վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
+ +
+

ṩ2016¥̼Ϣο±רҵıṩʵʱı¥, ¥ϢԼ۲ѯԲ鵽¥̵ĴŻԼŹΪҵʺϵı·Ϣ

+
+
+ + + + + + + + + +
+
+ + վ + ϵ + ƸϢ + ¼
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
BزDݸز Ϸز ز ز
Cɶز ز ϷʷزQൺزT򷿵ز
 췿زFݷزJϷزSϺزW人ز
 ɳزGݷزNϾز ڷز ز
 ز ز ϲز ݷزXز
 ݷزHݷز ز ʯׯزZ֣ݷز
+ +
+ վͼ + + ֻ + ƽ̨ + + ˷ +
+ +
Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
+
ϺϢƼ޹˾ Ȩ
+
ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking10 b/soufang/page/peking10 new file mode 100644 index 0000000..b5146fd --- /dev/null +++ b/soufang/page/peking10 @@ -0,0 +1,4658 @@ + + + + + ʢ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ + + + + + + + + + + + + + + + +
+ + +
+ + + + +
+
+
+
+
+
+ + +
+
ų
+
ABCDFGH
+
JKLMNQST
+
WXYZ
+ +
+ +
+ + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
+ + + + + + + +
+ +
+
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+
+
+ +
+
    + + +
  • Ͷ
  • + +
  • +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+
+ +
+
+
+ + + + + +
+
+ + + + + + + + + + + + + +
+ + + + + + +
+
+
+
+ ɨ赽ֻ ¥ʱ +
+
+
+ +

ʢ

+ + + + + + + + +
+
+
+ ̼ + ַ + ʽز +
+
+
+
+
+
+ + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+
+ + + + + + + + + + + + + + + + +
+ + +
+
+ +
+
    +
  • +
    +
    + ʢЧͼ + +
    +
    +
  • +
  • +
    +
    + ʢŽͨͼ + +
    +
    +
  • +
  • +
    +
    + ʢʵͼ + +
    +
    +
  • +
  • +
    +
    + ʢ + +
    +
    +
  • +
  • +
    +
    + ʢŻֳ + +
    +
    +
  • +
  • +
    +
    + ʢܱͼ + +
    +
    +
  • +
  • +
    +
    + ʢŻͼ + +
    +
    +
  • +
+
+ + +
+
+ +
+
+ +
+ +
+
+ +
+
+ + +
+ + +
+
+
+

+ ƽ۸ 14000 Ԫ/ƽ +

+
+ + +
+ + 鿴۸ + +
+
+ + + +
+ +
+ + + + + ֪ͨ + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+

ûۣ

+
+
+
+ +
    + +
+
+
+
+
+ + + + +
+

¥̵ַ  ݱ·9

+
+ +
+
+
+

ͣ  + + + + һ(62O)    + + + + (94O)    + + + + (112O)    +

+
+ +
+
+
+

ϸϢ>>

+
+
+
+ + +
+
    + +
  • + ղ + + + + + +
  • + +
  • + ¥̶Ա +
  • +
  • + + ɨ赽ֻ + + + + +
  • +
+
+ + + + +
+ +
+
+

¥绰400-890-0000 ת 659390

+
+ + + + +
+ + + + + +
+ + + + +
+
+ + +
+ + + + + + + +
+
+ + + + + + + +
+ +
+
+
>
+
+

ʢ¥̶̬

+
+
+
+ +
+

ʢҵ̳

+ 10268 +
+ + ͼ + Ȧ
+ + +
+ +
+
+ + +
+
+
+
+ > +
+
+

ʢѶ/֪ʶ

+
+
+
+ +
+
+
+
+
+ > +
+
+

ʢ¥ʴ

+
+
+
+
    +
+
+ +
+
+
+
+ +
+ + + + + + + +
+ + + + + + + +
+
+
+
+

ʢ¥Ϣ

+
+
+ + + +
+
+ + + + +
+ +
+
ʢ¥б
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + +
+
+ +
+ һ(8)| + (10)| + (3)| + + > +
+ +
+

ʢŻͼ(21)

+
+
+
+
+ +
+
+ + +
+
+
ѡ/¥㼼
+
>
+
+ +
+ +
+ + +
+
+ +
+ ͼ(21)| + ͨͼ(2)| + ʵͼ(32)| + Чͼ(11)| + (9)| + ֳ(1)| + ͼ(31)| + > +
+ +
+

ʢ¥(107)

+
+
+ +
+ +
+ +
+ +
+ + + +
+
+ +
+
+ + + + +
+
+ + +
+
+ +
+
+
+ +
+
+ +
+ + +

+ +

+
+
+
+
+ +
+
+ + +
+ +
+

+ ظ0 + 1 + s***9 2016-11-30 13:33:00  iPhoneͻ +

+
+
+
+
+ +
+
+ + +
+ +
+

+ ظ0 + 3 + s***7 2016-10-22 11:16:32  Androidͻ +

+
+
+
+
+ +
+
+ + +
+ +
+

+ ظ0 + 3 + s***3 2016-09-18 09:22:01  PC +

+
+
+ +
+
+ +
+
+
+

ʢPK

+
+
+
  • ͬ
  • ͬ۸
+
+
+ + +
    + +
+
+
+ + + +
+ +
+
+ + +
+
+
+
+
+ + + + + + + + + +
+ +
+
+ + + + +
+
+
    +
  • ܸȤ¥
  • +
  • ͬλ¥
  • +
+
+
+
+
    +
    +
    + + +
    +
    +
    + + + + + + + + + + + + +
    +
    +
    +
    + ȫ> +
    +
    +

    ¥

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + ¥ + + + + ۸ + + ̳ + + Ա +
    + 1 + ׿ + + ƽ + + + -- + + BBS + +
    + 2 + + + + + + 1100Ԫ/ + + BBS + +
    + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
    + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
    + 5 + + + + + + -- + + BBS + +
    + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
    + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
    + 8 + δ + + + + + 270Ԫ/ + + BBS + +
    + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
    +
    +
    +
    +
    +
    + ȫ> +
    +
    +

    ¥

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + ¥ + + + + ۸ + + ̳ + + Ա +
    + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
    + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
    + 3 + ά + + + + + -- + + -- + + +
    + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
    + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
    + 6 + ŵɽ + + + + + -- + + -- + + +
    + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
    + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
    + 9 + + + + + + 15000Ԫ/O + + -- + + +
    +
    +
    +
    +
    +
    + ȫ> +
    +
    +

    ¿

    +
    +
    + +
    +
    +
    +
    + + + +
    +
    +
    +
      +
    +
    +
    +
    + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
    + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
    + 3 + + + + + + -- + + BBS + +
    + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
    + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
    + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
    + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
    + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
    + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    + + +
    + + +
    + + + + +
    +
    +
    + +
    + ɫ¥|ȫ> +
    + +
    +

    ¥Ƽ

    +
    +
    + +
    + + +
    +
    + + + +
    + + + + +
    + + + + + + +
    վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
    + + + + + +
    +
    + + վ + ϵ + ƸϢ + ¼
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    BزDݸز Ϸز ز ز
    Cɶز ز ϷʷزQൺزT򷿵ز
     췿زFݷزJϷزSϺزW人ز
     ɳزGݷزNϾز ڷز ز
     ز ز ϲز ݷزXز
     ݷزHݷز ز ʯׯزZ֣ݷز
    + +
    + վͼ + + ֻ + ƽ̨ + + ˷ +
    + +
    Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
    +
    ϺϢƼ޹˾ Ȩ
    +
    ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking11 b/soufang/page/peking11 new file mode 100644 index 0000000..ebdb3c9 --- /dev/null +++ b/soufang/page/peking11 @@ -0,0 +1,4593 @@ + + + + + TOWN-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + + + + + + + + + + + + +
    + + +
    + + + + +
    +
    +
    +
    +
    +
    + + +
    +
    ų
    +
    ABCDFGH
    +
    JKLMNQST
    +
    WXYZ
    + +
    + +
    + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
    + + + + + + + +
    + +
    +
    + + +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + + +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + +
    +
      + + +
    • Ͷ
    • + +
    • +
    +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    +
    + +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + + + + + + + + + + + +
    + + + + + + + + +
    + + + + + +
    +
    + +
    +
      +
    • +
      + TOWNЧͼ + +
      +
    • +
    • +
      + TOWNͨͼ + +
      +
    • +
    • +
      + TOWN⾰ͼ + +
      +
    • +
    • +
      + TOWN + +
      +
    • +
    • +
      + TOWNܱͼ + +
      +
    • +
    • +
      + TOWNͼ + +
      +
    • +
    +
    + + +
    +
    + +
    +
    + +
    + +
    +
    + +
    +
    + + + + + + + +
    + + + + +
    +
    +

    ¥绰400-890-0000 ת 660836

    +
    + + + + +
    + + + + + + +
    + + + + + + + +
    + +
    + + + + +
    + +
    + + + +
    +
    + + + +
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + +
      +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    +

    TOWN

    +
    + һ(4)| + (11)| + (7)| + > +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    +
    +
    +

    TOWNH8  2211   83O() +   

    +

    ֣5  5  ɹ5  5  ߴ5  ÷5 +

    +

    ͽռ䷽ս٣ѶȵͣռʡռɹܺãԺͿܹ֤... +

    +

    + ϱͨ͸ͷ

    +
    + 149.4 +
    +
    +
    +
    +
    + + +
    + +
    +
    +
    +
    +

    TOWND3  3211   89O() +   

    +

    ֣5  5  ɹ5  5  ߴ5  ÷5 +

    +

    ͽռ䷽ս٣ѶȵͣռʡռɹܺãԺͿܹ֤... +

    +

    + ϱͨ͸Ϳͷ

    +
    + 160.2 +
    +
    +
    +
    +
    + + +
    + +
    +
    +
    +
    +

    TOWNA6  3221   130O() +   

    +

    ֣5  5  ɹ5  5  ߴ5  ÷5 +

    +

    ͽռ䶼ܷڼҾߵİڷšȫͨ͸ĻͣסʶȽϸߡռгIJɹ⣬һ... +

    +

    + ϱͨ͸Ϳͷ

    +
    + 235.3 +
    +
    +
    +
    +
    +
    + + + +
    + + + + + + + + +
    +

    TOWN¥Ϣ

    +
    + + + + + +
    +
    + +
    + 15# + 17# + 13# + 16# + 10# + 7# + 12# + D5# + 6# + 9# + 4# + 8# + 3# + D18# + 1# + 14# + 11# + 2# +
    + +
    + +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • ߲
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    + +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    + +
    +
    +
      +
    • Ԫ2
    • 12
    • ߲
    • ¥19
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • Ԫ1
    • 24
    • ߲
    • ¥19
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • Ԫ2
    • 12
    • ߲
    • ¥19
    +
    +
    +
    +
    +
    + +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    + +
    +
    +
      +
    • Ԫ2
    • 24
    • ߲
    • ¥28
    • 224
    +
    + +
    +
    +
    +
    +
      +
    • 24
    • ߲
    +
    +
    +
    +
    +
    + +
    + +
    +
    + + +
    +
    + +
    +
    +

    TOWN

    99
    + >> +
    +
    +
    + +
    +
    + + + +
    +
    +
    + + + + + + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    + +
    + +

    TOWNѶ

    +
    + Ѷ + ֪ʶ + ʴ +
    +
    +
    +
    +
    +
    Ѷ +

    TOWNɽ

    +
    +
    +
    +
    Ѷ +

    TOWNɽ,һ˵µĵط

    +
    +
    + + +
    +
    ֪ʶ +

    ˣסڼȫ

    +
    +
    +
    +
    + +
    +
    +
    + + + + +
    + + + +
    +
    + +
    +
    + + + + +
    + +
    +
    + +
    + ͼ(22)| + ͨͼ(5)| + ʵͼ(44)| + Чͼ(44)| + (19)| + ͼ(10)| + > +
    + +
    +

    TOWN¥

    (144)

    +
    +
    + +
    + +
    + +
    +
    +
    +

    TOWN

    + >> +
    +
    +
    +
    +
    ¥̣סլ12ͼ۸
    +
    + + 18000Ԫ/O + + + + 0%
    +
    ·11¾ۣסլ
    40948Ԫ/O0%
    +
    ַ̰11¾ۣסլ
    16271Ԫ/O8.83%
    +
    +
    +
    +
    + + + + + +
    +
    +
    TOWN
    >>
    +
    +
    + +
    +

    +

    ѡټ㷿

    +
    +
    +
    ѡͣ
    +
    +
    + ѡ +
    +
      + +
    • 2211 83.00ƽ
    • + +
    • 3211 89.00ƽ
    • + +
    • 3212 130.70ƽ
    • +
    +
    +
    +
    +
    +
    +
    ܼۣ
    +
    +
    +
    +
    ׸
    +
    +
    + 3 + +
    +
    +
    +
    +
    +
    +
    + ҵ + +
    +
    +
    + + +
    +
    ʱ䣺
    +
    +
    + 30꣨360ڣ + +
    +
    +
    +
    +
     
    +
     ȶϢ     ȶ +
    +
    +
    +
    +
    +

    ˵

    +
    +
    +
    +

    ¾Ԫ

    + +
      +
    • ο׸
    • +
    • +
    • ֧Ϣ
    • +
    • ʹ3.25%
    • +
    • ҵ4.9%
    • +
    +

    >>

    +
    +
    +
    +
    +
    +
    + + + + + + + +
    +
    +
      +
    • ϲ
    • +
    +
    +
    +
      +
      + + +
      +
      +
      + + + + + + + + +
      + + + + + + +
      +
      +
      +
      + ȫ> +
      +
      +

      ¥ +

      +
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ¥۸̳
      + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
      + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
      + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
      + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
      + 5 + + + + + -- + + BBS + 3.88 +
      + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
      + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
      + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
      + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
      + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
      +
      +
      +
      +
      +
      + ȫ> +
      +
      +

      ¥

      +
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ¥۸̳
      + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
      + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
      + 3 + ά + + + + -- + + -- + 0.00 +
      + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
      + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
      + 6 + ŵɽ + + + + -- + + -- + 4.89 +
      + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
      + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
      + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
      + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
      +
      +
      +
      +
      +
      + ȫ> +
      +
      +

      ¿

      +
      +
      + +
      +
      +
      +
      + +
      +
      +
      +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
        + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
        + 3 + + + + + -- + + BBS + 4.30 +
        + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
        + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
        + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
        + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
        + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
        + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
        + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
        +
        +
        +
        +
        +
        + + + + +
        + + + + +
        +
        +
        + +
        + ɫ¥|ȫ> +
        + +
        +

        ¥Ƽ

        +
        +
        + +
        + + +
        +
        + + + +
        +
        +
        +
        +

        ֻ鿴TOWN + ؼ +

        +
        +
        +
        +
        +
        ¥
        +
        + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
        +
        +
        +
        +
        + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
        +
        +
        +
        з
        +
        + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
        +
        +
        +
        + + + +
        +
        +
        +
        +

        ¥

        +
        +
        +
        + +
        +
        + + +
        + + + +
        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
        + + + +
        +
        + + վ + ϵ + ƸϢ + ¼
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        BزDݸز Ϸز ز ز
        Cɶز ز ϷʷزQൺزT򷿵ز
         췿زFݷزJϷزSϺزW人ز
         ɳزGݷزNϾز ڷز ز
         ز ز ϲز ݷزXز
         ݷزHݷز ز ʯׯزZ֣ݷز
        + +
        + վͼ + + ֻ + ƽ̨ + + ˷ +
        + +
        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
        +
        ϺϢƼ޹˾ Ȩ
        +
        ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
        + +
        + + + + + + + +
        + + + + + + + + + + + + + +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking12 b/soufang/page/peking12 new file mode 100644 index 0000000..0e7e4f2 --- /dev/null +++ b/soufang/page/peking12 @@ -0,0 +1,4456 @@ + + + + + Ͷ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + +
        + + + + + + + + + + + + + + + +
        + + +
        + + + + +
        +
        +
        +
        +
        +
        + + +
        +
        ų
        +
        ABCDFGH
        +
        JKLMNQST
        +
        WXYZ
        + +
        + +
        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
        + + + + + + + +
        + +
        +
        + + +
        +
        + +
        + +
        +
        +
        + +
        + +
        +
        +
        + +
        + +
        +
        +
        + + +
        +
        + +
        + +
        +
        +
        + +
        + +
        +
        +
        +
        +
        + +
        +
        +
        + +
        +
          + + +
        • Ͷ
        • + +
        • +
        +
        +
        +
        + +
        + +
        +
        +
        + +
        + +
        +
        +
        + +
        + +
        +
        +
        + +
        + +
        +
        +
        +
        + +
        +
        +
        + +
        +
        +
        + +
        +
        +
        +
        +
        +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + +
        + + +
        +
        + +
        +
        + +
        +
        +
        + + + + + +
        +
        + + + + + + + + + + + + + +
        + + + + + + + + +
        + + + + + +
        +
        + +
        +
          +
        • +
          + ͶЧͼ + +
          +
        • +
        • +
          + Ͷ̽ͨͼ + +
          +
        • +
        • +
          + Ͷʵͼ + +
          +
        • +
        • +
          +
          + ͶƵ + + +
          +
        • +
        • +
          + Ͷȫ + +
          +
        • +
        • +
          + Ͷ + +
          +
        • +
        • +
          + Ͷ̻ֳ + +
          +
        • +
        • +
          + Ͷܱͼ + +
          +
        • +
        • +
          + Ͷ̻ͼ + +
          +
        • +
        +
        + + +
        +
        + +
        +
        + +
        + +
        +
        + +
        +
        + + + + + + + +
        + + + + +
        +
        +

        ¥绰400-890-0000 ת 662453

        +
        + + + + +
        + + + + + + +
        + + + + + + + +
        + +
        + + + + +
        + +
        + + + +
        +
        + + + +
        +
        +
        + +
        + + + + + + + + + + + + + + + + + + + + + + + +
        + +
          +
        + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        + + +
        +
        +
        +
        + ̬ +

        + ද̬>> + Ͷ̲ƷϢ2016-12-08 +

        +
        +
        +

        + Ͷ̶ڷԴ̲ƷԤУ忪Ϣע + Ķȫ>

        +
        +
        +
        +
        + +
        +
        +
        + +
        +
        +

        Ͷ̻

        +
        + (4)| + (3)| + > +
        +
        + +
        + + + +
        + + + + + + + + +
        +

        Ͷ¥Ϣ

        +
        + + + +
        + + + + + +
        + +
        +
        + +
        + 14# + 13# + 23# + 28# + 25# + 22# + 26# + 17# + 16# + 15# + 27# + 24# + 18# + 21# +
        + +
        + +
        +
        +
          +
        • Ԫ4
        • 12
        • ¥8
        • 32
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ4
        • 12
        • ¥8
        • 180
        +
        +
        +
        +
        +
        +
        +
        +
          +
        • Ԫ2
        • 24
        • ¥
        • ¥15
        • 115
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ4
        • 12
        • С߲
        • ¥15
        • 115
        +
        +
        +
        +
        +
        +
        +
        +
          +
        • Ԫ4
        • 12
        • Ͳ
        • ¥12
        • 91
        +
        +
        +
        +
        +
        +
        +
        +
          +
        • Ԫ4
        • 12
        • ¥
        • ¥12
        • 91
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ2
        • 24
        • ¥
        • ¥15
        • 115
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ1
        • 12
        • С߲
        • ¥9
        • 36
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ1
        • 12
        • С߲
        • ¥9
        • 36
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ1
        • 12
        • С߲
        • ¥8
        • 32
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ4
        • 12
        • ¥
        • ¥15
        • 116
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ4
        • 12
        • ¥
        • ¥12
        • 92
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ1
        • 12
        • ¥9
        • 36
        +
        + +
        +
        +
        +
        +
          +
        • Ԫ4
        • 12
        • ¥
        • ¥13
        • 84
        +
        + +
        +
        +
        + +
        +
        + + +
        +
        + +
        +
        +

        Ͷ̵

        83
        + >> +
        +
        +
        + +
        +
        + + + +
        +
        +
        + + + + + + +
        +
        +
        +
        + +
        +
        + +
        +
        +
        +
        +
        + +
        + +

        ͶѶ

        +
        + Ѷ + ֪ʶ + ʴ +
        +
        +
        +
        +
        +
        Ѷ +

        Ͷô λúͼ۸Ʒ

        +
        +
        +
        +
        Ѷ +

        סͶ,úӮϡͶ̾˾ѧ

        +
        +
        + + +
        +
        ֪ʶ +

        ˣסڼȫ

        +
        +
        + + +
        +
        ʴ +

        ˭ԸҾͶô

        +
        +
        + + +
        +
        ʴ +

        Ͷװֺһ

        +
        +
        + + + + + + + + +
        +
        + +
        +
        +
        + + + + +
        + + + +
        +
        + +
        +
        + + + + +
        + +
        +
        + +
        + ͼ(7)| + ͨͼ(2)| + ʵͼ(64)| + Чͼ(5)| + (48)| + ֳ(8)| + ͼ(72)| + > +
        + +
        +

        Ͷ¥

        (206)

        +
        +
        + +
        + +
        + +
        +
        +
        +

        Ͷ̷

        + >> +
        +
        +
        +
        +
        ¥̣סլ12¼۸
        +
        + + + 0%
        +
        ·11¾ۣסլ
        40948Ԫ/O0%
        +
        ɽַ11¾ۣסլ
        28997Ԫ/O1.62%
        +
        +
        +
        +
        + + + + + +
        +
        +
        Ͷ̷
        >>
        +
        +
        + +
        +

        +

        ѡټ㷿

        +
        +
        +
        ѡͣ
        +
        +
        + ѡ +
        +
          + +
        • 3211 102.00ƽ
        • + +
        • 3211 108.00ƽ
        • + +
        • 2211 88.00ƽ
        • +
        +
        +
        +
        +
        +
        +
        ܼۣ
        +
        +
        +
        +
        ׸
        +
        +
        + 3 + +
        +
        +
        +
        +
        +
        +
        + ҵ + +
        +
        +
        + + +
        +
        ʱ䣺
        +
        +
        + 30꣨360ڣ + +
        +
        +
        +
        +
         
        +
         ȶϢ     ȶ +
        +
        +
        +
        +
        +

        ˵

        +
        +
        +
        +

        ¾Ԫ

        + +
          +
        • ο׸
        • +
        • +
        • ֧Ϣ
        • +
        • ʹ3.25%
        • +
        • ҵ4.9%
        • +
        +

        >>

        +
        +
        +
        +
        +
        +
        + + + + + + + +
        +
        +
          +
        • ϲ
        • +
        +
        +
        +
          +
          + + +
          +
          +
          + + + + + + + + +
          + + + + + + +
          +
          +
          +
          + ȫ> +
          +
          +

          ¥ +

          +
          +
          +
          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          ¥۸̳
          + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
          + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
          + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
          + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
          + 5 + + + + + -- + + BBS + 3.88 +
          + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
          + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
          + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
          + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
          + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
          +
          +
          +
          +
          +
          + ȫ> +
          +
          +

          ¥

          +
          +
          +
          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          ¥۸̳
          + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
          + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
          + 3 + ά + + + + -- + + -- + 0.00 +
          + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
          + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
          + 6 + ŵɽ + + + + -- + + -- + 4.89 +
          + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
          + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
          + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
          + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
          +
          +
          +
          +
          +
          + ȫ> +
          +
          +

          ¿

          +
          +
          + +
          +
          +
          +
          + +
          +
          +
          +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
            + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
            + 3 + + + + + -- + + BBS + 4.30 +
            + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
            + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
            + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
            + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
            + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
            + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
            + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
            +
            +
            +
            +
            +
            + + + + +
            + + + + +
            +
            +
            + +
            + ɫ¥|ȫ> +
            + +
            +

            ¥Ƽ

            +
            +
            + +
            + + +
            +
            + + + +
            +
            +
            +
            +

            ֻ鿴Ͷ + ؼ +

            +
            +
            +
            +
            +
            ¥
            +
            + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
            +
            +
            +
            +
            + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
            +
            +
            +
            з
            +
            + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
            +
            +
            +
            + + + +
            +
            +
            +
            +

            ¥

            +
            +
            +
            + +
            +
            + + +
            + + + +
            վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
            + + + +
            +
            + + վ + ϵ + ƸϢ + ¼
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            BزDݸز Ϸز ز ز
            Cɶز ز ϷʷزQൺزT򷿵ز
             췿زFݷزJϷزSϺزW人ز
             ɳزGݷزNϾز ڷز ز
             ز ز ϲز ݷزXز
             ݷزHݷز ز ʯׯزZ֣ݷز
            + +
            + վͼ + + ֻ + ƽ̨ + + ˷ +
            + +
            Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
            +
            ϺϢƼ޹˾ Ȩ
            +
            ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
            + +
            + + + + + + + +
            + + + + + + + + + + + + + +
            + + + + + + + + +
            + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking13 b/soufang/page/peking13 new file mode 100644 index 0000000..ff9b00f --- /dev/null +++ b/soufang/page/peking13 @@ -0,0 +1,4178 @@ + + + + + -¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            + + +
            + + + + + + + + + + + + + + + +
            + + +
            + + + + +
            +
            +
            +
            +
            +
            + + +
            +
            ų
            +
            ABCDFGH
            +
            JKLMNQST
            +
            WXYZ
            + +
            + +
            + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
            + + + + + + + +
            + +
            +
            + + +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + + +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            +
            +
            + +
            +
            +
            + +
            +
              + + +
            • Ͷ
            • + +
            • +
            +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            +
            + +
            +
            +
            + +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            +
            +
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            + + +
            +
            +
            + + + + + + + + + + + + + + + + + + + + + + +
            + + +
            +
            + +
            +
            + +
            +
            +
            + + + + + +
            +
            + + + + + + + + + + + + + +
            + + + + + + + + +
            + + + + + +
            +
            + +
            +
              +
            • +
              + Чͼ + +
              +
            • +
            • +
              + ͨͼ + +
              +
            • +
            • +
              + ʵͼ + +
              +
            • +
            • +
              + + +
              +
            • +
            • +
              + ֳ + +
              +
            • +
            • +
              + ܱͼ + +
              +
            • +
            • +
              + ͼ + +
              +
            • +
            +
            + + +
            +
            + +
            +
            + +
            + +
            +
            + +
            +
            + + + + + + + +
            + +
            +
            + +
            + +
            + + + +
            +
            +
            +
            + ̼ + ַ + ס + +
            +
            +
            +
            +

            ͣ

            + +
            + +
            +
            +
            +

            Ŀַ

              ·ҵѧű100
            + +
            + + + + +
            +
            +

            ϸϢ>>

            +
            +
            + +
            +
            +
            +
            + + +
            +
            +

            ¥绰400-890-0000 ת 664622

            +
            + + + + +
            + + + + + + +
            + + + + + + + +
            + +
            + + + + +
            + +
            + + + +
            +
            + + + +
            +
            +
            + +
            + + + + + + + + + + + + + + + + + + + + + + + +
            + +
              +
            + + +
            +
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            + +
            +
            +

            +
            + (3)| + (7)| + ľ(3)| + (2)| + > +
            +
            +
            +
            +
            +
            + + +
            + +
            +
            +
            +
            +

            A3-3  2221   144O() +   

            +

            + ϱͨ͸ͷ

            +
            + 1195.2 +
            +
            +
            +
            +
            + + +
            + +
            +
            +
            +
            +

            A3-2  2221   147O() +   

            +

            + ϱͨ͸ͷ

            +
            + 1220.1 +
            +
            +
            +
            +
            + + +
            + +
            +
            +
            +
            +

            Cƽ-05  2221   150O() +   

            +

            + ϱͨ͸ͷ

            +
            + 1245 +
            +
            +
            +
            +
            +
            + + + +
            + + + + + + + + +
            +

            ¥Ϣ

            +
            + + + +
            + + + + + +
            + +
            +
            + +
            + 1# + 8# + 7# + 2# + 6# + 5# + 3# + 4# + 9# +
            + +
            + +
            +
            +
              +
            • ŬϢڴ
            • +
            +
            +
            +
            +
            +
            +
            + +
            +
            + +
            +
            + +
            +
            + +
            +
            + +
            +
            + +
            +
            +
            +
              +
            • Ԫ3
            • 12
            • Ͳ
            • ¥4
            • 17
            +
            +
            +
            +
            +
            +
            + +
            +
            + +
            +
            + + +
            +
            + +
            +
            +

            46
            + >> +
            +
            +
            + +
            +
            + + + +
            +
            +
            + + + + + + +
            +
            +
            +
            + +
            +
            + +
            +
            +
            +
            +
            + +
            + +

            Ѷ

            +
            + Ѷ + ֪ʶ + ʴ +
            +
            +
            +
            +
            +
            Ѷ +

            ʽû:Դͳ

            +
            +
            +
            +
            Ѷ +

            ӵ·ضΡθ߶¥

            +
            +
            + + +
            +
            ֪ʶ +

            ˣסڼȫ

            +
            +
            + + +
            +
            ʴ +

            ܲ˵һºô

            +
            +
            + + +
            +
            ʴ +

            ֣ԥַô?

            +
            +
            + + + + + + + + +
            +
            + +
            +
            +
            + + + + +
            + + + +
            +
            + +
            +
            + + + + +
            + +
            +
            + +
            + ͼ(15)| + ͨͼ(4)| + ʵͼ(54)| + Чͼ(11)| + (29)| + ֳ(1)| + ͼ(6)| + > +
            + +
            +

            ¥

            (120)

            +
            +
            + +
            + +
            + +
            +
            +
            +

            + >> +
            +
            +
            +
            +
            ¥̣סլ12ƽ۸
            +
            + 83000Ԫ/O + + + 0%
            +
            ·11¾ۣסլ
            40948Ԫ/O0%
            +
            ַ11¾ۣסլ
            66314Ԫ/O6.26%
            +
            +
            +
            +
            + + + + + +
            +
            + +
            +
            + +
            +

            +

            ѡټ㷿

            +
            +
            +
            ѡͣ
            +
            +
            + ѡ +
            +
              + +
            • 2212 144.00ƽ
            • + +
            • 2212 147.00ƽ
            • + +
            • 2212 150.00ƽ
            • +
            +
            +
            +
            +
            +
            +
            ܼۣ
            +
            +
            +
            +
            ׸
            +
            +
            + 3 + +
            +
            +
            +
            +
            +
            +
            + ҵ + +
            +
            +
            + + +
            +
            ʱ䣺
            +
            +
            + 30꣨360ڣ + +
            +
            +
            +
            +
             
            +
             ȶϢ     ȶ +
            +
            +
            +
            +
            +

            ˵

            +
            +
            +
            +

            ¾Ԫ

            + +
              +
            • ο׸
            • +
            • +
            • ֧Ϣ
            • +
            • ʹ3.25%
            • +
            • ҵ4.9%
            • +
            +

            >>

            +
            +
            +
            +
            +
            +
            + + + + + + + +
            +
            +
              +
            • ϲ
            • +
            +
            +
            +
              +
              + + +
              +
              +
              + + + + + + + + +
              + + + + + + +
              +
              +
              +
              + ȫ> +
              +
              +

              ¥ +

              +
              +
              +
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              ¥۸̳
              + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
              + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
              + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
              + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
              + 5 + + + + + -- + + BBS + 3.88 +
              + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
              + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
              + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
              + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
              + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
              +
              +
              +
              +
              +
              + ȫ> +
              +
              +

              ¥

              +
              +
              +
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              ¥۸̳
              + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
              + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
              + 3 + ά + + + + -- + + -- + 0.00 +
              + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
              + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
              + 6 + ŵɽ + + + + -- + + -- + 4.89 +
              + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
              + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
              + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
              + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
              +
              +
              +
              +
              +
              + ȫ> +
              +
              +

              ¿

              +
              +
              + +
              +
              +
              +
              + +
              +
              +
              +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                + 3 + + + + + -- + + BBS + 4.30 +
                + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                +
                +
                +
                +
                +
                + + + + +
                + + + + +
                +
                +
                + +
                + ɫ¥|ȫ> +
                + +
                +

                ¥Ƽ

                +
                +
                + +
                + + +
                +
                + + + +
                +
                +
                +
                +

                ֻ鿴 + ؼ +

                +
                +
                +
                +
                +
                ¥
                +
                + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                +
                +
                +
                +
                + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                +
                +
                +
                з
                +
                + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                +
                +
                +
                + + + +
                +
                +
                +
                +

                ¥

                +
                +
                +
                + +
                +
                + + + + +
                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                + + + +
                +
                + + վ + ϵ + ƸϢ + ¼
                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                BزDݸز Ϸز ز ز
                Cɶز ز ϷʷزQൺزT򷿵ز
                 췿زFݷزJϷزSϺزW人ز
                 ɳزGݷزNϾز ڷز ز
                 ز ز ϲز ݷزXز
                 ݷزHݷز ز ʯׯزZ֣ݷز
                + +
                + վͼ + + ֻ + ƽ̨ + + ˷ +
                + +
                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                +
                ϺϢƼ޹˾ Ȩ
                +
                ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                + +
                + + + + + + + +
                + + + + + + + + + + + + + +
                + + + + + + + + +
                + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking14 b/soufang/page/peking14 new file mode 100644 index 0000000..9e4fb81 --- /dev/null +++ b/soufang/page/peking14 @@ -0,0 +1,4855 @@ + + + + + K2ʨӳ-¥-ȷѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                + + + +
                + + + + + + + + + + + + + + + + +
                + + +
                + + + + + +
                +
                +
                + +
                + + +
                + + +
                +
                ų
                +
                ABCDFGH
                +
                JKLMNQST
                +
                WXYZ
                + +
                + +
                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                + + + + + +
                + +
                +
                + + +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + + +
                +
                + +
                + +
                +
                +
                + + +
                +
                +
                + +
                +
                + +
                +
                  + + +
                • Ͷ
                • + +
                • +
                +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                +
                + + +
                +
                +
                + + +
                + +
                +
                + + +
                +
                +
                +
                + +
                + +
                + + + + +
                +
                + +
                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                + + +
                +
                +
                + + + + + + + + + + + + + + + + + + + + + + +
                + + +
                +
                + +
                +
                + +
                +
                +
                + + + + + +
                +
                + + + + + + + + + + + + + +
                + + + + + + +
                +
                +
                +
                + ɨ赽ֻ ¥ʱ +
                +
                +
                + +

                K2ʨӳ

                + + + + + + + + +
                +
                + +
                +
                +
                +
                +
                + + +
                + + + +
                + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                + + + +
                +
                + + + + + + + + + + + + + + + + +
                + + +
                +
                + +
                +
                  +
                • +
                  +
                  + K2ʨӳЧͼ + +
                  +
                  +
                • +
                • +
                  +
                  + K2ʨӳǽͨͼ + +
                  +
                  +
                • +
                • +
                  +
                  + K2ʨӳʵͼ + +
                  +
                  +
                • +
                • +
                  +
                  + K2ʨӳ + +
                  +
                  +
                • +
                • +
                  +
                  + K2ʨӳǻֳ + +
                  +
                  +
                • +
                • +
                  +
                  + K2ʨӳܱͼ + +
                  +
                  +
                • +
                • +
                  +
                  + K2ʨӳǻͼ + +
                  +
                  +
                • +
                +
                + + +
                +
                + +
                +
                + +
                + +
                +
                + +
                +
                + + +
                + + +
                +
                +
                +

                + ƽ۸ 20000 Ԫ/ƽ +

                +
                + +
                + + 鿴۸ + +
                +
                + + + +
                + +
                + + + + + ֪ͨ + + + + + + + + + + +
                +
                +
                + +
                + + +
                +
                +

                ûۣ

                +
                +
                +
                + +
                  + +
                +
                +
                +
                +
                + + + + +
                +

                ¥̵ַ  CBD·㴦

                +
                + +
                +
                +
                +

                ͣ  + + + + һ(65O)    + + + + (98O)    + + + + (118O)    +

                +
                + +
                +
                +
                +

                ϸϢ>>

                +
                +
                +
                + + +
                +
                  + +
                • + ղ + + + + + +
                • + +
                • + ¥̶Ա +
                • +
                • + + ɨ赽ֻ + + + + +
                • +
                +
                + + + + +
                + +
                +
                +

                ¥绰400-890-0000 ת 614730

                +
                + + + + +
                + + + + + +
                + + + + +
                +
                + + +
                + + + + + + + +
                +
                + + + + + + + +
                + +
                +
                +
                >
                + +
                +
                + +
                +

                K2ʨӳҵ̳

                + 6127 +
                + + ͼ +
                + + +
                + +
                +
                + + +
                +
                +
                +
                + > +
                + +
                + +
                +
                +
                +
                + > +
                + +
                +
                + +
                + +
                +
                +
                +
                + +
                + + + + + + + +
                + + + + + + + +
                +
                +
                + +
                + + + +
                +
                + + + + +
                + +
                +
                K2ʨӳ¥б
                +
                + +
                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                + + + + +
                +
                + +
                + һ(3)| + (4)| + (2)| + ľ(2)| + + > +
                + +
                +

                K2ʨӳǻͼ(11)

                +
                +
                +
                +
                + +
                +
                + + + + +
                + + +
                +
                + +
                + ͼ(11)| + ͨͼ(2)| + ʵͼ(84)| + Чͼ(11)| + (36)| + ֳ(154)| + ͼ(31)| + > +
                + +
                +

                K2ʨӳ¥(329)

                +
                +
                + +
                + +
                + +
                + +
                + + + +
                +
                + +
                +
                + + + + +
                +
                + + +
                +
                + +
                +
                +
                + +
                +
                + +
                + + +

                + +

                +
                +
                +
                +
                + +
                +
                + + +
                + +
                +

                + ظ0 + 1 +  2016-11-26 16:29:32  iPhoneͻ +

                +
                +
                +
                +
                + +
                +
                + + +
                + +
                +

                + ظ0 + 0 + 6666666 2016-12-05 11:43:08  PC +

                +
                +
                +
                +
                + +
                +
                + + +
                + +
                +

                + ظ3 + 21 + jcgzwangpeng 2016-09-21 09:56:33  PC +

                +
                +
                + +
                +
                + +
                +
                +
                +

                K2ʨӳPK

                +
                +
                +
                • ͬ
                • ͬ۸
                +
                +
                + + +
                  + +
                +
                +
                + + + +
                + +
                +
                + +
                +
                +
                +
                +
                + + + + + + + + +
                + +
                +
                + + + + +
                +
                +
                  +
                • ܸȤ¥
                • +
                • ͬλ¥
                • +
                +
                +
                +
                +
                  +
                  +
                  + + +
                  +
                  +
                  + + + + + + + + + + + + +
                  +
                  +
                  +
                  + ȫ> +
                  +
                  +

                  ȷ¥

                  +
                  +
                  +
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  + ¥ + + + + ۸ + + ̳ + + Ա +
                  + 1 + + + + + + -- + + BBS + +
                  + 2 + ʢ + + + + + 15000Ԫ/O + + BBS + +
                  + 3 + ļ԰ + + + + + 115Ԫ/ + + BBS + +
                  + 4 + ȷȸø + + + + + -- + + BBS + +
                  + 5 + ļ + + + + + 9500Ԫ/O + + BBS + +
                  + 6 + 仪ͥ + + + + + -- + + BBS + +
                  + 7 + ʢ + + + + + 15000Ԫ/O + + BBS + +
                  + 8 + K2ʨӳ + + + + + 20000Ԫ/O + + BBS + +
                  + 9 + ˳ + + + + + 16000Ԫ/O + + BBS + +
                  +
                  +
                  +
                  +
                  +
                  + ȫ> +
                  +
                  +

                  ȷ¥

                  +
                  +
                  +
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  + ¥ + + + + ۸ + + ̳ + + Ա +
                  + 1 + ͤž + + + + + 27000Ԫ/O + + -- + + +
                  + 2 + ɭݳ + + + + + -- + + -- + + +
                  + 3 + ʢ + + + + + 17500Ԫ/O + + BBS + + +
                  + 4 + ԰ + + + + + -- + + -- + + +
                  + 5 + нù + + + + + 12500Ԫ/O + + BBS + + +
                  + 6 + ̫ǡʯ + + + + + 9500Ԫ/O + + BBS + + +
                  + 7 + гǻ + + + + + -- + + -- + + +
                  + 8 + ɽ + + + + + 12000Ԫ/O + + -- + + +
                  + 9 + ͥ + + İ + + + 6500Ԫ/O + + BBS + + +
                  +
                  +
                  +
                  +
                  +
                  + ȫ> +
                  +
                  +

                  ¿

                  +
                  +
                  + +
                  +
                  +
                  +
                  + + + +
                  +
                  +
                  +
                    +
                  +
                  +
                  +
                  + + + +
                  +
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  + 1 + K2ʨӳ + + + + + 20000Ԫ/O + + BBS + +
                  + 2 + ̴ + + + + + -- + + -- + +
                  + 3 + ̬ + + + + + 20000Ԫ/O + + BBS + +
                  + 4 + гǹ + + ̰ + + + 16800Ԫ/O + + BBS + +
                  + 5 + Ȫ԰ + + ̰ + + + 9500Ԫ/O + + BBS + +
                  + 6 + ʢˮ + + + + + -- + + BBS + +
                  + 7 + + + + + + -- + + BBS + +
                  + 8 + ԰ + + + + + -- + + BBS + +
                  + 9 + + + + + + -- + + BBS + +
                  +
                  +
                  +
                  +
                  +
                  + + + +
                  +
                  +
                  + + +
                  +
                  + + + +
                  +
                  +
                  + +
                  + |ȫ> +
                  + +
                  +

                  ȷ¥Ƽ

                  +
                  +
                  + +
                  + + +
                  +
                  + + + +
                  +
                  +
                  +
                  +

                  ֻ鿴K2ʨӳȷؼ

                  +
                  +
                  +
                  +
                  +
                  ȷ¥
                  +
                  ¥ ¥ ¥ ¥ ¥ ¥ ̰¥ ¥ İ¥ ¥ ¥ ¥ ¥
                  +
                  +
                  +
                  ȷ
                  +
                  η 巿 ӷ ӷ ̰ ݷ İ Ƿ 󳧷
                  +
                  +
                  +
                  з
                  +
                  ӷ ̰ ݷ ɽ Ϻ ݷ ڷ ɶ 췿 򷿲 ݷ Ͼ Ϸ Ƿ ۷
                  +
                  +
                  +
                  + + + +
                  + + + + + + +
                  վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                  + + + + + +
                  +
                  + + վ + ϵ + ƸϢ + ¼
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  BزDݸز Ϸز ز ز
                  Cɶز ز ϷʷزQൺزT򷿵ز
                   췿زFݷزJϷزSϺزW人ز
                   ɳزGݷزNϾز ڷز ز
                   ز ز ϲز ݷزXز
                   ݷزHݷز ز ʯׯزZ֣ݷز
                  + +
                  + վͼ + + ֻ + ƽ̨ + + ˷ +
                  + +
                  Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                  +
                  ϺϢƼ޹˾ Ȩ
                  +
                  ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                  + +
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking15 b/soufang/page/peking15 new file mode 100644 index 0000000..4d6d196 --- /dev/null +++ b/soufang/page/peking15 @@ -0,0 +1,3773 @@ + + + + + 8-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  + + + +
                  + + + + + + + + + + + + + + + + +
                  + + +
                  + + + + +
                  +
                  +
                  +
                  +
                  +
                  + + +
                  +
                  ų
                  +
                  ABCDFGH
                  +
                  JKLMNQST
                  +
                  WXYZ
                  + +
                  + +
                  + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                  + + + + + + + +
                  + +
                  +
                  + + +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + + +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  +
                  +
                  + +
                  +
                  +
                  + +
                  +
                    + + +
                  • Ͷ
                  • + +
                  • +
                  +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  +
                  + +
                  +
                  +
                  + +
                  +
                  +
                  + +
                  +
                  +
                  +
                  +
                  +
                  +
                  +
                  +
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  +
                  + + +
                  +
                  +
                  + + + + + + + + + + + + + + + + + + + + + + +
                  + + +
                  +
                  + +
                  +
                  + +
                  +
                  +
                  + + + + + +
                  +
                  + + + + + + + + + + + + + +
                  + + + + + + +
                  +
                  +
                  +
                  + ɨ赽ֻ ¥ʱ +
                  +
                  +
                  + +

                  8

                  + + + + + + + + +
                  +
                  +
                  + ̼ + ַ + ɫ + ˾̬ز +
                  +
                  +
                  +
                  +
                  +
                  + + +
                  + + + +
                  + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  +
                  + + + + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  + + + +
                  +
                  + + + + + + + + + + + + + + + + +
                  + + +
                  +
                  + +
                  +
                    +
                  • +
                    +
                    + 8Чͼ + +
                    +
                    +
                  • +
                  • +
                    +
                    + 8Žͨͼ + +
                    +
                    +
                  • +
                  • +
                    +
                    + 8ʵͼ + +
                    +
                    +
                  • +
                  • +
                    +
                    + 8 + +
                    +
                    +
                  • +
                  • +
                    +
                    + 8Żֳ + +
                    +
                    +
                  • +
                  • +
                    +
                    + 8ܱͼ + +
                    +
                    +
                  • +
                  • +
                    +
                    + 8Żͼ + +
                    +
                    +
                  • +
                  +
                  + + +
                  +
                  + +
                  +
                  + +
                  + +
                  +
                  + +
                  +
                  + + +
                  + +
                  +
                  +
                  +

                  + +

                  +
                  + + + +
                  +
                  + +
                  + + +
                  +
                  +

                  ûۣ

                  +
                  +
                  +
                  + +
                    + +
                  +
                  +
                  +
                  +
                  + + + + +
                  +

                  ¥̵ַ  復תֱ1800

                  +
                  + +
                  +
                  + + +
                  +
                  +
                  +

                  ϸϢ>>

                  +
                  +
                  +
                  + + +
                  +
                    + +
                  • + ղ + + + + + +
                  • + +
                  • + ¥̶Ա +
                  • +
                  • + + ɨ赽ֻ + + + + +
                  • +
                  +
                  + + + + +
                  + +
                  +
                  +

                  ¥绰400-890-0000 ת 611789

                  +
                  + + + + +
                  + + + + + +
                  + + + + +
                  +
                  + + +
                  + + + + + + + +
                  +
                  + + + + + + + +
                  + +
                  +
                  +
                  >
                  +
                  +

                  8¥̶̬

                  +
                  +
                  +
                  + +
                  +

                  8ҵ̳

                  + 59944 +
                  + + ͼ + Ȧ
                  + + +
                  + +
                  +
                  + + +
                  +
                  +
                  +
                  + > +
                  +
                  +

                  /֪ʶ

                  +
                  +
                  +
                  + +
                  +
                  +
                  +
                  +
                  + > +
                  +
                  +

                  8¥ʴ

                  +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  +
                  + +
                  + + + + + + + +
                  + + + + + +
                  +
                  + +
                  + (30)| + ľ(14)| + (5)| + + > +
                  + +
                  +

                  8Żͼ(49)

                  +
                  +
                  +
                  +
                  + +
                  +
                  + + +
                  +
                  +
                  ѡ/¥㼼
                  +
                  >
                  +
                  + +
                  + +
                  + + +
                  +
                  + +
                  + ͼ(49)| + ͨͼ(3)| + ʵͼ(35)| + Чͼ(5)| + (16)| + ֳ(4)| + ͼ(21)| + > +
                  + +
                  +

                  (133)

                  +
                  +
                  + +
                  + +
                  + +
                  + +
                  + + + +
                  +
                  + +
                  +
                  + + + + +
                  +
                  + + +
                  +
                  + +
                  +
                  +
                  + +
                  +
                  + +
                  + + +

                  + +

                  +
                  +
                  +
                  +
                  + +
                  +
                  + + +
                  + +
                  +

                  + ظ0 + 2 + n***9 2016-10-06 18:27:45  Wap +

                  +
                  +
                  +
                  +
                  + +
                  +
                  + + +
                  +
                  +

                  + ǺӱضˡܱҲô +

                  +
                  +
                  +

                  + ظ0 + 0 + װ007 2016-09-17 07:57:15  iPhoneͻ +

                  +
                  +
                  +
                  +
                  + +
                  +
                  + + +
                  +
                  +

                  + ƺɹ +

                  +
                  +
                  +

                  + ظ1 + 1 + αʮ 2015-03-17 17:04:46  Androidͻ +

                  +
                  +
                  + +
                  +
                  + +
                  +
                  +
                  +

                  8PK

                  +
                  +
                  +
                  • ͬ
                  • ͬ۸
                  +
                  +
                  + +
                    +
                  +
                    + +
                  +
                  +
                  + + + +
                  + +
                  +
                  + + +
                  +
                  +
                  +
                  +
                  + + + + + + + + + +
                  + +
                  +
                  + + + + +
                  +
                  +
                    +
                  • ܸȤ¥
                  • + +
                  +
                  +
                  +
                  +
                    +
                    +
                    + +
                    +
                    +
                    + + + + + + + + + + + + +
                    +
                    +
                    +
                    + ȫ> +
                    +
                    +

                    ¥

                    +
                    +
                    +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    + ¥ + + + + ۸ + + ̳ + + Ա +
                    + 1 + ׿ + + ƽ + + + -- + + BBS + +
                    + 2 + + + + + + 1100Ԫ/ + + BBS + +
                    + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                    + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                    + 5 + + + + + + -- + + BBS + +
                    + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                    + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                    + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                    + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                    +
                    +
                    +
                    +
                    +
                    + ȫ> +
                    +
                    +

                    ¥

                    +
                    +
                    +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    + ¥ + + + + ۸ + + ̳ + + Ա +
                    + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                    + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                    + 3 + ά + + + + + -- + + -- + + +
                    + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                    + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                    + 6 + ŵɽ + + + + + -- + + -- + + +
                    + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                    + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                    + 9 + + + + + + 15000Ԫ/O + + -- + + +
                    +
                    +
                    +
                    +
                    +
                    + ȫ> +
                    +
                    +

                    ¿

                    +
                    +
                    + +
                    +
                    +
                    +
                    + + + +
                    +
                    +
                    +
                      +
                    +
                    +
                    +
                    + + + +
                    +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                    + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                    + 3 + + + + + + -- + + BBS + +
                    + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                    + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                    + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                    + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                    + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                    + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                    +
                    +
                    +
                    +
                    +
                    + + + +
                    +
                    +
                    +
                    + + +
                    +
                    + + + + +
                    +
                    +
                    + +
                    + ɫ¥|ȫ> +
                    + +
                    +

                    ¥Ƽ

                    +
                    +
                    + +
                    + + +
                    +
                    + + + +
                    + + + + +
                    + + + + +
                    + + + +
                    վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                    + + + + + +
                    +
                    + + վ + ϵ + ƸϢ + ¼
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    BزDݸز Ϸز ز ز
                    Cɶز ز ϷʷزQൺزT򷿵ز
                     췿زFݷزJϷزSϺزW人ز
                     ɳزGݷزNϾز ڷز ز
                     ز ز ϲز ݷزXز
                     ݷزHݷز ز ʯׯزZ֣ݷز
                    + +
                    + վͼ + + ֻ + ƽ̨ + + ˷ +
                    + +
                    Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                    +
                    ϺϢƼ޹˾ Ȩ
                    +
                    ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                    + +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking16 b/soufang/page/peking16 new file mode 100644 index 0000000..c176c8a --- /dev/null +++ b/soufang/page/peking16 @@ -0,0 +1,4240 @@ + + + + + ȷȸ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    + + +
                    + + + + + + + + + + + + + + + +
                    + + +
                    + + + + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    +
                    ų
                    +
                    ABCDFGH
                    +
                    JKLMNQST
                    +
                    WXYZ
                    + +
                    + +
                    + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                    + + + + + + + +
                    + +
                    +
                    + + +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + + +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    + +
                    +
                      + + +
                    • Ͷ
                    • + +
                    • +
                    +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    + +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    + + +
                    +
                    +
                    + + + + + + + + + + + + + + + + + + + + + + +
                    + + +
                    +
                    + +
                    +
                    + +
                    +
                    +
                    + + + + + +
                    +
                    + + + + + + + + + + + + + +
                    + + + + + + + + +
                    + + + + + +
                    +
                    + +
                    +
                      +
                    • +
                      + ȷȸЧͼ + +
                      +
                    • +
                    • +
                      + ȷȸǽͨͼ + +
                      +
                    • +
                    • +
                      +
                      + ȷȸƵ + + +
                      +
                    • +
                    • +
                      + ȷȸȫ + +
                      +
                    • +
                    • +
                      + ȷȸ⾰ͼ + +
                      +
                    • +
                    • +
                      + ȷȸ + +
                      +
                    • +
                    • +
                      + ȷȸǻֳ + +
                      +
                    • +
                    • +
                      + ȷȸܱͼ + +
                      +
                    • +
                    • +
                      + ȷȸǻͼ + +
                      +
                    • +
                    +
                    + + +
                    +
                    + +
                    +
                    + +
                    + +
                    +
                    + +
                    +
                    + + + + + + + +
                    + + + + +
                    +
                    +

                    ¥绰400-890-0000 ת 627834

                    +
                    + + + + +
                    + + + + + + +
                    + + + + + + + +
                    + +
                    + + + + +
                    + +
                    + + + +
                    +
                    + + + +
                    +
                    +
                    + +
                    + + + + + + + + + + + + + + + + + + + + + + + +
                    + +
                      +
                    + + +
                    +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    + +
                    +
                    +

                    ȷȸǻ

                    +
                    + (10)| + (16)| + ľ(6)| + (1)| + > +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    ȷȸ1-502  2211   85O() +   

                    +

                    + ϱͨ͸ͷʪ

                    +
                    + 174.3 +
                    +
                    +
                    +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    ȷȸ2.1D  2211   85O() +   

                    +

                    + ϱͨ͸ͷʪ

                    +
                    + 62.1 +
                    +
                    +
                    +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    ȷȸ2.1A2  2211   85O() +   

                    +

                    + ϱͨ͸ͷʪ

                    +
                    + 174.3 +
                    +
                    +
                    +
                    +
                    +
                    + + + +
                    + + + + + + + + +
                    +

                    ȷȸ¥Ϣ

                    +
                    + + + +
                    + + + + + +
                    + +
                    +
                    + +
                    + 4# + 1.41# + 1.43# + 2# + 10# +
                    + +
                    + +
                    +
                    +
                      +
                    • Ԫ2
                    • 12
                    • ߲
                    • ¥24
                    • 96
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                      +
                    • Ԫ3
                    • 12
                    • ߲
                    • ¥26
                    • 156
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                      +
                    • Ԫ2
                    • 12
                    • ߲
                    • ¥25
                    • 100
                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    + +
                    +
                    + +
                    +
                    + + +
                    +
                    + +
                    +
                    + +
                    +
                    + +
                    +
                    + + + +
                    +
                    +
                    + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    + +
                    + +

                    ȷȸѶ

                    +
                    + Ѷ + ֪ʶ + ʴ +
                    +
                    +
                    +
                    +
                    +
                    Ѷ +

                    ˫ǡ,ơȷȸȡȷȸ2015Ʒ

                    +
                    +
                    +
                    +
                    Ѷ +

                    ȷȸǴѧ8¿̻ſ!߻궯!

                    +
                    +
                    + + +
                    +
                    ֪ʶ +

                    ˣסڼȫ

                    +
                    +
                    + + +
                    +
                    ʴ +

                    ȷȸDZ۸Ƕ

                    +
                    +
                    + + +
                    +
                    ʴ +

                    ӱȷȸ԰?ƭ

                    +
                    +
                    + + + + + + + + +
                    +
                    + +
                    +
                    +
                    + + + + +
                    + + + +
                    +
                    + +
                    +
                    + + + + +
                    + +
                    +
                    + +
                    + ͼ(33)| + ͨͼ(2)| + ʵͼ(43)| + Чͼ(14)| + (1)| + ֳ(20)| + ͼ(25)| + > +
                    + +
                    +

                    ȷȸ¥

                    (138)

                    +
                    +
                    + +
                    + +
                    + +
                    +
                    +
                    +

                    ȷȸǷ

                    + >> +
                    +
                    +
                    +
                    +
                    ¥̣סլ12ƽ۸
                    +
                    + 20500Ԫ/O + + + 7.32%
                    +
                    ·11¾ۣסլ
                    40948Ԫ/O0%
                    +
                    ȷַ11¾ۣסլ
                    16271Ԫ/O8.83%
                    +
                    +
                    +
                    +
                    + + + + + +
                    +
                    +
                    ȷȸǷ
                    >>
                    +
                    +
                    + +
                    +

                    +

                    ѡټ㷿

                    +
                    +
                    +
                    ѡͣ
                    +
                    +
                    + ѡ +
                    +
                      + +
                    • 2211 85.00ƽ
                    • + +
                    • 2211 85.00ƽ
                    • + +
                    • 2211 85.00ƽ
                    • +
                    +
                    +
                    +
                    +
                    +
                    +
                    ܼۣ
                    +
                    +
                    +
                    +
                    ׸
                    +
                    +
                    + 3 + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + ҵ + +
                    +
                    +
                    + + +
                    +
                    ʱ䣺
                    +
                    +
                    + 30꣨360ڣ + +
                    +
                    +
                    +
                    +
                     
                    +
                     ȶϢ     ȶ +
                    +
                    +
                    +
                    +
                    +

                    ˵

                    +
                    +
                    +
                    +

                    ¾Ԫ

                    + +
                      +
                    • ο׸
                    • +
                    • +
                    • ֧Ϣ
                    • +
                    • ʹ3.25%
                    • +
                    • ҵ4.9%
                    • +
                    +

                    >>

                    +
                    +
                    +
                    +
                    +
                    +
                    + + + + + + + +
                    +
                    +
                      +
                    • ϲ
                    • +
                    • ͬλ¥
                    +
                    +
                    +
                      +
                      + + + +
                      +
                      +
                      + + + + + + + + +
                      + + + + + + +
                      +
                      +
                      +
                      + ȫ> +
                      +
                      +

                      ¥ +

                      +
                      +
                      +
                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      ¥۸̳
                      + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                      + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                      + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                      + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                      + 5 + + + + + -- + + BBS + 3.88 +
                      + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                      + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                      + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                      + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                      + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                      +
                      +
                      +
                      +
                      +
                      + ȫ> +
                      +
                      +

                      ¥

                      +
                      +
                      +
                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      ¥۸̳
                      + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                      + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                      + 3 + ά + + + + -- + + -- + 0.00 +
                      + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                      + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                      + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                      + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                      + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                      + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                      + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                      +
                      +
                      +
                      +
                      +
                      + ȫ> +
                      +
                      +

                      ¿

                      +
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                        + 2 + + + + + -- + + BBS + 4.30 +
                        + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                        + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                        + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                        + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                        + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                        + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                        + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                        + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                        +
                        +
                        +
                        +
                        +
                        + + + + +
                        + + + + +
                        +
                        +
                        + +
                        + ɫ¥|ȫ> +
                        + +
                        +

                        ¥Ƽ

                        +
                        +
                        + +
                        + + +
                        +
                        + + + +
                        +
                        +
                        +
                        +

                        ֻ鿴ȷȸ + ؼ +

                        +
                        +
                        +
                        +
                        +
                        ¥
                        +
                        + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                        +
                        +
                        +
                        +
                        + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                        +
                        +
                        +
                        з
                        +
                        + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                        +
                        +
                        +
                        + + + +
                        +
                        +
                        +
                        +

                        ¥

                        +
                        +
                        + +
                        + + +
                        + + + +
                        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                        + + + +
                        +
                        + + վ + ϵ + ƸϢ + ¼
                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        BزDݸز Ϸز ز ز
                        Cɶز ز ϷʷزQൺزT򷿵ز
                         췿زFݷزJϷزSϺزW人ز
                         ɳزGݷزNϾز ڷز ز
                         ز ز ϲز ݷزXز
                         ݷزHݷز ز ʯׯزZ֣ݷز
                        + +
                        + վͼ + + ֻ + ƽ̨ + + ˷ +
                        + +
                        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                        +
                        ϺϢƼ޹˾ Ȩ
                        +
                        ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                        + +
                        + + + + + + + +
                        + + + + + + + + + + + + + +
                        + + + + + + + + +
                        + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking17 b/soufang/page/peking17 new file mode 100644 index 0000000..0972d2d --- /dev/null +++ b/soufang/page/peking17 @@ -0,0 +1,4144 @@ + + + + + ̵ع21-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        + + +
                        + + + + + + + + + + + + + + + +
                        + + +
                        + + + + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        +
                        ų
                        +
                        ABCDFGH
                        +
                        JKLMNQST
                        +
                        WXYZ
                        + +
                        + +
                        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                        + + + + + + + +
                        + +
                        +
                        + + +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + + +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        + +
                        +
                          + + +
                        • Ͷ
                        • + +
                        • +
                        +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        + +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        + + +
                        +
                        +
                        + + + + + + + + + + + + + + + + + + + + + + +
                        + + +
                        +
                        + +
                        +
                        + +
                        +
                        +
                        + + + + + +
                        +
                        + + + + + + + + + + + + + +
                        + + + + + + + + +
                        + + + + + +
                        +
                        + +
                        +
                          +
                        • +
                          + ̵ع21Чͼ + +
                          +
                        • +
                        • +
                          + ̵ع21ǽͨͼ + +
                          +
                        • +
                        • +
                          + ̵ع21⾰ͼ + +
                          +
                        • +
                        • +
                          + ̵ع21 + +
                          +
                        • +
                        • +
                          + ̵ع21ǻֳ + +
                          +
                        • +
                        • +
                          + ̵ع21ܱͼ + +
                          +
                        • +
                        • +
                          + ̵ع21ǻͼ + +
                          +
                        • +
                        +
                        + + +
                        +
                        + +
                        +
                        + +
                        + +
                        +
                        + +
                        +
                        + + + + + + + +
                        + +
                        +
                        +

                        ̵ع21

                        4.05
                        +
                        + +
                        + + + +
                        +
                        +
                        +
                        + + ַ + ƷƵز + ۾ +
                        +
                        +
                        +
                        +

                        ͣ

                        + +
                        + +
                        +
                        +
                        +

                        Ŀַ

                          Ӿӵڶ¸ת
                        + +
                        + + + + +
                        +
                        +

                        ϸϢ>>

                        +
                        +
                        + +
                        +
                        +
                        +
                        + + +
                        +
                        +

                        ¥绰400-890-0000 ת 640127

                        +
                        + + + + +
                        + + + + + + +
                        + + + + + + + +
                        + +
                        + + + + +
                        + +
                        + + + +
                        +
                        + + + +
                        +
                        +
                        + +
                        + + + + + + + + + + + + + + + + + + + + + + + +
                        + +
                          +
                        + + +
                        +
                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        + +
                        +
                        +

                        ̵ع21ǻ

                        +
                        + һ(1)| + (5)| + ľ(14)| + (6)| + (10)| + (1)| + > +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        ̵ع21G  1111   63O() +   

                        +

                        + ȫʪ

                        +
                        + 44.3 +
                        +
                        +
                        +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        ̵ع21F  2111   72O() +   

                        +

                        + ȫʪ

                        +
                        + +
                        +
                        +
                        +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        ̵ع21E  2111   73O() +   

                        +

                        + ȫʪ

                        +
                        + 49.6 +
                        +
                        +
                        +
                        +
                        +
                        + + + +
                        + + + + + + + + +
                        +

                        ̵ع21¥Ϣ

                        +
                        + + + +
                        + + + + + +
                        + +
                        +
                        + +
                        + 3# + 4# + 5# + 8# + 9# +
                        + +
                        + +
                        +
                        +
                          +
                        • Ԫ1
                        • 24
                        • ߲
                        • ¥26
                        • 104
                        • ۷Դ1
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                          +
                        • Ԫ2
                        • 24
                        • ߲
                        • ¥26
                        • 208
                        • ۷Դ1
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                          +
                        • Ԫ1
                        • 24
                        • ߲
                        • ¥26
                        • 104
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                          +
                        • Ԫ1
                        • 24
                        • ߲
                        • ¥18
                        • 72
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                          +
                        • Ԫ1
                        • 24
                        • ߲
                        • ¥18
                        • 72
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        + + +
                        +
                        + +
                        +
                        + +
                        +
                        + +
                        +
                        + + + +
                        +
                        +
                        + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        + +
                        + +

                        ̵ع21Ѷ

                        +
                        + Ѷ + ֪ʶ + ʴ +
                        +
                        +
                        +
                        +
                        +
                        Ѷ +

                        ҵ ̵ع21Ϊǡ̵ع21פ̼ǩԼɹٰ

                        +
                        +
                        +
                        +
                        Ѷ +

                        ̵ع21Ǹ߲35¥7500Ԫ/ƽ

                        +
                        +
                        + + +
                        +
                        ֪ʶ +

                        ˣסڼȫ

                        +
                        +
                        + + +
                        +
                        ʴ +

                        ˭̵֪ع21DZ۸

                        +
                        +
                        + + +
                        +
                        ʴ +

                        ̵ع21ܱô̵ع21¥̼۸

                        +
                        +
                        + + + + + + + + +
                        +
                        + +
                        +
                        +
                        + + + + +
                        + + + +
                        +
                        + +
                        +
                        + + + + +
                        + +
                        +
                        + +
                        + ͼ(37)| + ͨͼ(3)| + ʵͼ(73)| + Чͼ(12)| + (32)| + ֳ(29)| + ͼ(6)| + > +
                        + +
                        +

                        ̵ع21¥

                        (192)

                        +
                        +
                        + +
                        + +
                        + +
                        +
                        +
                        +

                        ̵ع21Ƿ

                        + >> +
                        +
                        +
                        +
                        +
                        ¥̣סլ12ƽ۸
                        +
                        + 265Ԫ/ + + + 0%
                        +
                        ·11¾ۣסլ
                        40948Ԫ/O0%
                        +
                        Ӷַ11¾ۣסլ
                        16271Ԫ/O8.83%
                        +
                        +
                        +
                        +
                        + + + + + +
                        +
                        +
                        ̵ع21Ƿ
                        >>
                        +
                        +
                        + +
                        +

                        +

                        ѡټ㷿

                        +
                        +
                        +
                        ѡͣ
                        +
                        +
                        + ѡ +
                        +
                          + +
                        • 1111 63.00ƽ
                        • + +
                        • 2111 72.00ƽ
                        • + +
                        • 2111 73.00ƽ
                        • +
                        +
                        +
                        +
                        +
                        +
                        +
                        ܼۣ
                        +
                        +
                        +
                        +
                        ׸
                        +
                        +
                        + 3 + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + ҵ + +
                        +
                        +
                        + + +
                        +
                        ʱ䣺
                        +
                        +
                        + 30꣨360ڣ + +
                        +
                        +
                        +
                        +
                         
                        +
                         ȶϢ     ȶ +
                        +
                        +
                        +
                        +
                        +

                        ˵

                        +
                        +
                        +
                        +

                        ¾Ԫ

                        + +
                          +
                        • ο׸
                        • +
                        • +
                        • ֧Ϣ
                        • +
                        • ʹ3.25%
                        • +
                        • ҵ4.9%
                        • +
                        +

                        >>

                        +
                        +
                        +
                        +
                        +
                        +
                        + + + + + + + +
                        +
                        +
                          +
                        • ϲ
                        • +
                        • ͬλ¥
                        +
                        +
                        +
                          +
                          + + + +
                          +
                          +
                          + + + + + + + + +
                          + + + + + + +
                          +
                          +
                          +
                          + ȫ> +
                          +
                          +

                          ¥ +

                          +
                          +
                          +
                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          ¥۸̳
                          + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                          + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                          + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                          + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                          + 5 + + + + + -- + + BBS + 3.88 +
                          + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                          + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                          + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                          + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                          + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                          +
                          +
                          +
                          +
                          +
                          + ȫ> +
                          +
                          +

                          ¥

                          +
                          +
                          +
                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          ¥۸̳
                          + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                          + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                          + 3 + ά + + + + -- + + -- + 0.00 +
                          + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                          + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                          + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                          + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                          + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                          + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                          + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                          +
                          +
                          +
                          +
                          +
                          + ȫ> +
                          +
                          +

                          ¿

                          +
                          +
                          + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                            + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                            + 3 + + + + + -- + + BBS + 4.30 +
                            + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                            + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                            + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                            + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                            + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                            + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                            + 10 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                            +
                            +
                            +
                            +
                            +
                            + + + + +
                            + + + + +
                            +
                            +
                            + +
                            + ɫ¥|ȫ> +
                            + +
                            +

                            ¥Ƽ

                            +
                            +
                            + +
                            + + +
                            +
                            + + + +
                            +
                            +
                            +
                            +

                            ֻ鿴̵ع21 + ؼ +

                            +
                            +
                            +
                            +
                            +
                            ¥
                            +
                            + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                            +
                            +
                            +
                            +
                            + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                            +
                            +
                            +
                            з
                            +
                            + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                            +
                            +
                            +
                            + + + +
                            +
                            +
                            +
                            +

                            ¥

                            +
                            +
                            +
                            + +
                            +
                            + + +
                            + + + +
                            վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                            + + + +
                            +
                            + + վ + ϵ + ƸϢ + ¼
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            BزDݸز Ϸز ز ز
                            Cɶز ز ϷʷزQൺزT򷿵ز
                             췿زFݷزJϷزSϺزW人ز
                             ɳزGݷزNϾز ڷز ز
                             ز ز ϲز ݷزXز
                             ݷزHݷز ز ʯׯزZ֣ݷز
                            + +
                            + վͼ + + ֻ + ƽ̨ + + ˷ +
                            + +
                            Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                            +
                            ϺϢƼ޹˾ Ȩ
                            +
                            ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                            + +
                            + + + + + + + +
                            + + + + + + + + + + + + + +
                            + + + + + + + + +
                            + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking18 b/soufang/page/peking18 new file mode 100644 index 0000000..2d81777 --- /dev/null +++ b/soufang/page/peking18 @@ -0,0 +1,5186 @@ + + + + + -¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            + + + +
                            + + + + + + + + + + + + + + + + +
                            + + +
                            + + + + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            +
                            ų
                            +
                            ABCDFGH
                            +
                            JKLMNQST
                            +
                            WXYZ
                            + +
                            + +
                            + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                            + + + + + + + +
                            + +
                            +
                            + + +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + + +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            + +
                            +
                              + + +
                            • Ͷ
                            • + +
                            • +
                            +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            + +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            + + +
                            +
                            +
                            + + + + + + + + + + + + + + + + + + + + + + +
                            + + +
                            +
                            + +
                            +
                            + +
                            +
                            +
                            + + + + + +
                            +
                            + + + + + + + + + + + + + +
                            + + + + + + +
                            +
                            +
                            +
                            + ɨ赽ֻ ¥ʱ +
                            +
                            +
                            + +

                            + + +
                            +
                            ¥
                            + +
                            + + + + + + +
                            +
                            +
                            + + ̼ + ַ + ˮز + ˾̬ز +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + +
                            + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            + + + +
                            +
                            + + + + + + + + + + + + + + + + +
                            + + +
                            +
                            + +
                            +
                              +
                            • +
                              +
                              +
                              + Ƶ + + +
                              +
                              +
                            • +
                            • +
                              +
                              + ȫ + +
                              +
                              +
                            • +
                            • +
                              +
                              + Чͼ + +
                              +
                              +
                            • +
                            • +
                              +
                              + ͨͼ + +
                              +
                              +
                            • +
                            • +
                              +
                              + ʵͼ + +
                              +
                              +
                            • +
                            • +
                              +
                              + + +
                              +
                              +
                            • +
                            • +
                              +
                              + ܱͼ + +
                              +
                              +
                            • +
                            • +
                              +
                              + ͼ + +
                              +
                              +
                            • +
                            +
                            + + +
                            +
                            + +
                            +
                            +
                              +
                            • +

                              Ƶ

                              + + Ƶ +
                            • +
                            • +

                              ȫ

                              + + ȫ +
                            • +
                            • +

                              Чͼ

                              + + Чͼ +
                            • +
                            • +

                              ͨͼ

                              + + ͨͼ +
                            • +
                            • +

                              ʵͼ

                              + + ʵͼ +
                            • +
                            • +

                              + + +
                            • +
                            • +

                              ܱͼ

                              + + ܱͼ +
                            • +
                            • +

                              ͼ

                              + + ͼ +
                            • +
                            +
                            + +
                            +
                            + +
                            +
                            + + +
                            + + +
                            +
                            +
                            +

                            + ƽ۸ 15000 Ԫ/ƽ +

                            +
                            + + +
                            + + 鿴۸ + +
                            +
                            + + + +
                            + +
                            + + + + + ֪ͨ + + + + + + + + + + + + + + +
                            +
                            +
                            + +
                            + + +
                            +
                            +

                            ûۣ

                            +
                            +
                            +
                            + +
                              + +
                            +
                            +
                            +
                            +
                            + + + + +
                            +

                            ¥̵ַ  Ʊ궫ڣ

                            +
                            + +
                            +
                            +
                            +

                            ͣ  + + + + (310O)    + + + + (250O)    + + + + (250O)    +

                            +
                            + +
                            +
                            +
                            +

                            ϸϢ>>

                            +
                            +
                            +
                            + + +
                            +
                              + +
                            • + ղ + + + + + +
                            • + +
                            • + ¥̶Ա +
                            • +
                            • + + ɨ赽ֻ + + + + +
                            • +
                            +
                            + + + + +
                            + +
                            +
                            +

                            ¥绰400-890-0000 ת 643438

                            +
                            + + + + +
                            + + + + + +
                            + + + + +
                            +
                            + + +
                            + + + + + + + +
                            +
                            + + + + + + + +
                            + +
                            +
                            +
                            >
                            +
                            +

                            ¥̶̬

                            +
                            +
                            +
                            + +
                            +

                            ҵ̳

                            + 8179 +
                            + + ͼ + Ȧ
                            + + +
                            + +
                            +
                            + + +
                            +
                            +
                            +
                            + > +
                            +
                            +

                            Ѷ/֪ʶ

                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            + > +
                            +
                            +

                            ¥ʴ

                            +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            + +
                            + + + + + + + +
                            + + + + + + + +
                            +
                            +
                            +
                            +

                            ¥Ϣ

                            +
                            +
                            + + + +
                            +
                            + + + + +
                            + +
                            +
                            ¥б
                            +
                            + +
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            + + + + + +
                            +
                            + +
                            + һ(3)| + (1)| + (1)| + ľ(1)| + (22)| + (3)| + + > +
                            + +
                            +

                            ͼ(31)

                            +
                            +
                            +
                            +
                            + +
                            +
                            + + +
                            +
                            +
                            ѡ/¥㼼
                            +
                            >
                            +
                            + +
                            + +
                            + + +
                            +
                            + +
                            + ͼ(31)| + ͨͼ(4)| + ʵͼ(112)| + Чͼ(102)| + (26)| + ͼ(14)| + > +
                            + +
                            +

                            ¥(289)

                            +
                            +
                            + +
                            +
                              +
                            • +
                              +
                              +

                              Ƶ

                              +
                              + +
                              +
                              + + Ƶ + +
                              +
                            • +
                            • +
                              +
                              +

                              ȫ

                              +
                              + +
                              +
                              + + ȫ + +
                              +
                            • +
                            • +
                              +
                              +

                              + һڶ +

                              +
                              +
                              +
                              + + һڶ + +
                              +
                            • +
                            • +
                              +
                              +

                              + 滮Чͼ +

                              +
                              +
                              +
                              + + 滮Чͼ + +
                              +
                            • +
                            • +
                              +
                              +

                              + һڶ +

                              +
                              +
                              +
                              + + һڶ + +
                              +
                            • + +
                            +
                            + +
                            + +
                            + + + +
                            +
                            + +
                            +
                            + + + + +
                            +
                            + + +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + +
                            + + +

                            + +

                            +
                            +
                            +
                            +
                            + +
                            +
                            + + +
                            +
                            +

                            + ۸ʣȫֵù +

                            +
                            +
                            +

                            + ظ0 + 0 +  2016-12-02 08:47:16  Androidͻ +

                            +
                            +
                            +
                            +
                            + +
                            +
                            + +
                            + +
                            +

                            + ظ3 + 1 + ивн 2015-02-08 07:13:39  iPhoneͻ +

                            +
                            +
                            +
                            +
                            + +
                            +
                            + + +
                            +
                            +

                            + ͨԣһ +

                            +
                            +
                            +

                            + ظ2 + 0 + zdm1126 2015-02-15 16:39:23  Androidͻ +

                            +
                            +
                            + +
                            +
                            + +
                            +
                            +
                            +

                            PK

                            +
                            +
                            +
                            • ͬ
                            • ͬ۸
                            +
                            +
                            +
                              +
                            • + [] +
                              +
                            • + +
                            + +
                              + +
                            +
                            +
                            + + + +
                            + +
                            +
                            + + +
                            +
                            +
                            +
                            +
                            + + + + + + + + + +
                            + +
                            +
                            + + + + +
                            +
                            +
                              +
                            • ܸȤ¥
                            • +
                            • ͬλ¥
                            • +
                            +
                            +
                            +
                            +
                              +
                              +
                              + + +
                              +
                              +
                              + + + + + + + + + + + + +
                              +
                              +
                              +
                              + ȫ> +
                              +
                              +

                              ¥

                              +
                              +
                              +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              + ¥ + + + + ۸ + + ̳ + + Ա +
                              + 1 + ׿ + + ƽ + + + -- + + BBS + +
                              + 2 + + + + + + 1100Ԫ/ + + BBS + +
                              + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                              + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                              + 5 + + + + + + -- + + BBS + +
                              + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                              + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                              + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                              + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                              +
                              +
                              +
                              +
                              +
                              + ȫ> +
                              +
                              +

                              ¥

                              +
                              +
                              +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              + ¥ + + + + ۸ + + ̳ + + Ա +
                              + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                              + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                              + 3 + ά + + + + + -- + + -- + + +
                              + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                              + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                              + 6 + ŵɽ + + + + + -- + + -- + + +
                              + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                              + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                              + 9 + + + + + + 15000Ԫ/O + + -- + + +
                              +
                              +
                              +
                              +
                              +
                              + ȫ> +
                              +
                              +

                              ¿

                              +
                              +
                              + +
                              +
                              +
                              +
                              + + + +
                              +
                              +
                              +
                                +
                              +
                              +
                              +
                              + + + +
                              +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                              + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                              + 3 + + + + + + -- + + BBS + +
                              + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                              + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                              + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                              + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                              + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                              + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                              +
                              +
                              +
                              +
                              +
                              + + + +
                              +
                              +
                              +
                              + + +
                              + + +
                              + + + + +
                              +
                              +
                              + +
                              + ɫ¥|ȫ> +
                              + +
                              +

                              ¥Ƽ

                              +
                              +
                              + +
                              + + +
                              +
                              + + + +
                              + + + + +
                              + + + + +
                              + + + +
                              վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                              + + + + + +
                              +
                              + + վ + ϵ + ƸϢ + ¼
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              BزDݸز Ϸز ز ز
                              Cɶز ز ϷʷزQൺزT򷿵ز
                               췿زFݷزJϷزSϺزW人ز
                               ɳزGݷزNϾز ڷز ز
                               ز ز ϲز ݷزXز
                               ݷزHݷز ز ʯׯزZ֣ݷز
                              + +
                              + վͼ + + ֻ + ƽ̨ + + ˷ +
                              + +
                              Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                              +
                              ϺϢƼ޹˾ Ȩ
                              +
                              ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                              + +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking19 b/soufang/page/peking19 new file mode 100644 index 0000000..fe869e6 --- /dev/null +++ b/soufang/page/peking19 @@ -0,0 +1,4708 @@ + + + + + ȸǴ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              + + + +
                              + + + + + + + + + + + + + + + + +
                              + + +
                              + + + + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              +
                              ų
                              +
                              ABCDFGH
                              +
                              JKLMNQST
                              +
                              WXYZ
                              + +
                              + +
                              + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                              + + + + + + + +
                              + +
                              +
                              + + +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + + +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              + +
                              +
                                + + +
                              • Ͷ
                              • + +
                              • +
                              +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              + +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              + + +
                              +
                              +
                              + + + + + + + + + + + + + + + + + + + + + + +
                              + + +
                              +
                              + +
                              +
                              + +
                              +
                              +
                              + + + + + +
                              +
                              + + + + + + + + + + + + + +
                              + + + + + + +
                              +
                              +
                              +
                              + ɨ赽ֻ ¥ʱ +
                              +
                              +
                              + +

                              ȸǴ

                              + ӿȸǴ + + + + + + + + +
                              +
                              +
                              + + ̼ + ʻ + ܾ + ۾ +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + +
                              + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              + + + +
                              +
                              + + + + + + + + + + + + + + + + +
                              + + +
                              +
                              + +
                              +
                                +
                              • +
                                +
                                +
                                + ȸǴƵ + + +
                                +
                                +
                              • +
                              • +
                                +
                                + ȸǴȫ + +
                                +
                                +
                              • +
                              • +
                                +
                                + ȸǴЧͼ + +
                                +
                                +
                              • +
                              • +
                                +
                                + ȸǴͨͼ + +
                                +
                                +
                              • +
                              • +
                                +
                                + ȸǴ⾰ͼ + +
                                +
                                +
                              • +
                              • +
                                +
                                + ȸǴ + +
                                +
                                +
                              • +
                              • +
                                +
                                + ȸǴֳ + +
                                +
                                +
                              • +
                              • +
                                +
                                + ȸǴͼ + +
                                +
                                +
                              • +
                              +
                              + + +
                              +
                              + +
                              +
                              + +
                              + +
                              +
                              + +
                              +
                              + + +
                              + +
                              +
                              +
                              +

                              + +

                              +
                              + + + +
                              +
                              + +
                              + + +
                              +
                              +

                              ûۣ

                              +
                              +
                              +
                              + +
                                + +
                              +
                              +
                              +
                              +
                              + + + + +
                              +

                              ¥̵ַ  ̰Ұ԰(ֱ)

                              +
                              + +
                              +
                              +
                              +

                              ͣ  + + + + (235O)    + + + + ľ(202O)    + + + + (260O)    +

                              +
                              + +
                              +
                              +
                              +

                              ϸϢ>>

                              +
                              +
                              +
                              + + +
                              +
                                + +
                              • + ղ + + + + + +
                              • + +
                              • + ¥̶Ա +
                              • +
                              • + + ɨ赽ֻ + + + + +
                              • +
                              +
                              + + + + +
                              + +
                              +
                              +

                              ¥绰400-890-0000 ת 645491

                              +
                              + + + + +
                              + + + + + +
                              + + + + +
                              +
                              + + +
                              + + + + + + + +
                              +
                              + + + + + + + +
                              + +
                              +
                              +
                              >
                              + +
                              +
                              + +
                              +

                              ȸǴҵ̳

                              + 26089 +
                              + + ͼ + Ȧ
                              + + +
                              + +
                              +
                              + + +
                              +
                              +
                              +
                              + > +
                              + +
                              + +
                              +
                              +
                              +
                              + > +
                              +
                              +

                              ȸǴ¥ʴ

                              +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              + +
                              + + + + + + + +
                              + + + + + + + +
                              +
                              +
                              +
                              +

                              ȸǴ¥Ϣ

                              +
                              +
                              + + + +
                              +
                              + + + + +
                              + +
                              +
                              ȸǴ¥б
                              +
                              + +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              + + + + + +
                              +
                              + +
                              + (17)| + ľ(60)| + (10)| + (10)| + (2)| + + > +
                              + +
                              +

                              ȸǴͼ(99)

                              +
                              +
                              +
                              +
                              + +
                              +
                              + + +
                              +
                              +
                              ѡ/¥㼼
                              +
                              >
                              +
                              + +
                              + +
                              + + +
                              +
                              + +
                              + ͼ(99)| + ͨͼ(2)| + ʵͼ(173)| + Чͼ(46)| + (114)| + ֳ(5)| + > +
                              + +
                              +

                              ȸǴ¥(446)

                              +
                              +
                              + +
                              + +
                              + +
                              + +
                              + + + +
                              +
                              + +
                              +
                              + + + + +
                              +
                              + + +
                              +
                              + +
                              +
                              +
                              + +
                              +
                              + +
                              + + +

                              + +

                              +
                              +
                              +
                              +
                              + +
                              +
                              + + +
                              +
                              +

                              + ƯķӰҲ +

                              +
                              +
                              +

                              + ظ0 + 0 + Ұ345 2016-10-21 07:49:14  Androidͻ +

                              +
                              +
                              +
                              +
                              + +
                              +
                              + + +
                              +
                              +

                              + ĺܲû뵽չô +

                              +
                              +
                              +

                              + ظ0 + 0 + Ұ345 2016-10-20 08:37:30  Androidͻ +

                              +
                              +
                              +
                              +
                              + +
                              +
                              + + +
                              +
                              +

                              + һȸǣôᡣ +

                              +
                              +
                              +

                              + ظ0 + 0 + xiaran369 2016-10-18 00:43:10  Androidͻ +

                              +
                              +
                              + +
                              +
                              + +
                              +
                              +
                              +

                              ȸǴPK

                              +
                              +
                              +
                              • ͬ
                              • ͬ۸
                              +
                              +
                              + +
                                +
                              +
                                + +
                              +
                              +
                              + + + +
                              + +
                              +
                              + + +
                              +
                              +
                              +
                              +
                              + + + + + + + + + +
                              + +
                              +
                              + + + + +
                              +
                              +
                                +
                              • ܸȤ¥
                              • + +
                              +
                              +
                              +
                              +
                                +
                                +
                                + +
                                +
                                +
                                + + + + + + + + + + + + +
                                +
                                +
                                +
                                + ȫ> +
                                +
                                +

                                ¥

                                +
                                +
                                +
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                + ¥ + + + + ۸ + + ̳ + + Ա +
                                + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                + 5 + + + + + + -- + + BBS + +
                                + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                +
                                +
                                +
                                +
                                +
                                + ȫ> +
                                +
                                +

                                ¥

                                +
                                +
                                +
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                + ¥ + + + + ۸ + + ̳ + + Ա +
                                + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                + 3 + ά + + + + + -- + + -- + + +
                                + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                + 6 + ŵɽ + + + + + -- + + -- + + +
                                + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                +
                                +
                                +
                                +
                                +
                                + ȫ> +
                                +
                                +

                                ¿

                                +
                                +
                                + +
                                +
                                +
                                +
                                + + + +
                                +
                                +
                                +
                                  +
                                +
                                +
                                +
                                + + + +
                                +
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                + 3 + + + + + + -- + + BBS + +
                                + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                +
                                +
                                +
                                +
                                +
                                + + + +
                                +
                                +
                                +
                                + + +
                                + + +
                                + + + + +
                                +
                                +
                                + +
                                + ɫ¥|ȫ> +
                                + +
                                +

                                ¥Ƽ

                                +
                                +
                                + +
                                + + +
                                +
                                + + + +
                                + + + + +
                                + + + + +
                                + + + +
                                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                + + + + + +
                                +
                                + + վ + ϵ + ƸϢ + ¼
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                BزDݸز Ϸز ز ز
                                Cɶز ز ϷʷزQൺزT򷿵ز
                                 췿زFݷزJϷزSϺزW人ز
                                 ɳزGݷزNϾز ڷز ز
                                 ز ز ϲز ݷزXز
                                 ݷزHݷز ز ʯׯزZ֣ݷز
                                + +
                                + վͼ + + ֻ + ƽ̨ + + ˷ +
                                + +
                                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                +
                                ϺϢƼ޹˾ Ȩ
                                +
                                ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                + +
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking2 b/soufang/page/peking2 new file mode 100644 index 0000000..aaefb6e --- /dev/null +++ b/soufang/page/peking2 @@ -0,0 +1,5030 @@ + + + + + 㡤ɽ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                + + +
                                + + + + + + + + + + + + + + + +
                                + + +
                                + + + + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                +
                                ų
                                +
                                ABCDFGH
                                +
                                JKLMNQST
                                +
                                WXYZ
                                + +
                                + +
                                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                + + + + + + + +
                                + +
                                +
                                + + +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + + +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                + +
                                +
                                  + + +
                                • Ͷ
                                • + +
                                • +
                                +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                + +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                + + +
                                +
                                +
                                + + + + + + + + + + + + + + + + + + + + + + +
                                + + +
                                +
                                + +
                                +
                                + +
                                +
                                +
                                + + + + + +
                                +
                                + + + + + + + + + + + + + +
                                + + + + + + + + +
                                + + + + + +
                                +
                                + +
                                +
                                  +
                                • +
                                  + 㡤ɽЧͼ + +
                                  +
                                • +
                                • +
                                  + 㡤ɽͨͼ + +
                                  +
                                • +
                                • +
                                  + 㡤ɽʵͼ + +
                                  +
                                • +
                                • +
                                  + 㡤ɽ + +
                                  +
                                • +
                                • +
                                  + 㡤ɽܱͼ + +
                                  +
                                • +
                                • +
                                  + 㡤ɽͼ + +
                                  +
                                • +
                                +
                                + + +
                                +
                                + +
                                +
                                + +
                                + +
                                +
                                + +
                                +
                                + + + + + + + +
                                + +
                                +
                                +

                                㡤ɽ

                                ɽ԰ ԰4.05
                                +
                                + +
                                + + + +
                                +
                                +
                                +
                                + ̼ + ַ + ԰ +
                                +
                                +
                                +
                                +

                                ͣ

                                + +
                                + +
                                +
                                +
                                +

                                Ŀַ

                                  ̨·88
                                + +
                                + + + + +
                                +
                                +

                                ϸϢ>>

                                +
                                +
                                + +
                                +
                                +
                                +
                                + + +
                                +
                                +

                                ¥绰400-890-0000 ת 635835

                                +
                                + + + + +
                                + + + + + + +
                                + + + + + + + +
                                + +
                                + + + + +
                                + +
                                + + + +
                                +
                                + + + +
                                +
                                +
                                + +
                                + + + + + + + + + + + + + + + + + + + + + + + +
                                + +
                                  +
                                + + +
                                +
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                + +
                                +
                                +

                                㡤ɽ

                                +
                                + ľ(1)| + > +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                㡤ɽD3-B  4231   225O() +   

                                +

                                ֣4.8  5  ɹ5  5  ߴ5  ÷4 +

                                +

                                ͽռ䶼ܷڼҾߵİڷšռɹܺãԺͿܹ֤ܺõIJɹ⣻... +

                                +

                                + ϱͨ͸ͷ

                                +
                                + 1125 +
                                +
                                +
                                +
                                +
                                +
                                + + + +
                                + + + + + + + + +
                                +

                                㡤ɽ¥Ϣ

                                +
                                + + + + + +
                                +
                                + +
                                + A1# + A2# + A3# + A4# + A5# + A6# + A7# + A8# + A10# + A9# + A11# + A12# + A13# + A14# + A15# + A16# + A17# + A18# + A19# +
                                + + +
                                + +
                                +
                                +
                                  +
                                • ŬϢڴ
                                • +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                + + + + +
                                +
                                +
                                  +
                                • Ԫ2
                                • 12
                                • ¥6
                                • 24
                                +
                                + +
                                +
                                +
                                + +
                                + + +
                                +
                                +
                                  +
                                • Ԫ2
                                • һ
                                • ¥4
                                • 15
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ2
                                • 12
                                • ¥4
                                • 8
                                +
                                + +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ1
                                • 12
                                • ¥6
                                • 12
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ1
                                • 12
                                • ¥6
                                • 12
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                  +
                                • Ԫ4
                                • 12
                                • ¥6
                                • 12
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ3
                                • 12
                                • ¥6
                                • 12
                                +
                                + +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ2
                                • 12
                                • ¥5
                                • 10
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ2
                                • 12
                                • ¥5
                                • 10
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ4
                                • 12
                                • ¥6
                                • 48
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ3
                                • 12
                                • ¥5
                                • 30
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                + +
                                + +
                                +
                                + +
                                +
                                +
                                +
                                  +
                                • Ԫ1
                                • 12
                                • ¥4
                                • 8
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ1
                                • 12
                                • ¥4
                                • 8
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ3
                                • 12
                                • ¥5
                                • 30
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ1
                                • 12
                                • ¥4
                                • 8
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                + +
                                +
                                +
                                +
                                  +
                                • Ԫ1
                                • 12
                                • ¥4
                                • 8
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ2
                                • 12
                                • ¥5
                                • 20
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                  +
                                • Ԫ3
                                • 12
                                • ¥5
                                • 30
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ4
                                • 12
                                • ¥6
                                • 48
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ3
                                • 12
                                • ¥6
                                • 36
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                  +
                                • Ԫ3
                                • 12
                                • ¥6
                                • 36
                                +
                                +
                                +
                                +
                                +
                                + +
                                + +
                                +
                                + + +
                                +
                                + +
                                +
                                + +
                                +
                                + +
                                +
                                + + + +
                                +
                                +
                                + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                + +
                                +
                                +
                                +
                                +
                                + +
                                + +

                                㡤ɽѶ

                                +
                                + Ѷ + ֪ʶ + ʴ +
                                +
                                +
                                +
                                +
                                +
                                Ѷ +

                                㲻ٹµ,ɽѰ־ͬϵ

                                +
                                +
                                +
                                +
                                Ѷ +

                                H.OŶӼ ɽҵרȦ

                                +
                                +
                                + + +
                                +
                                ֪ʶ +

                                ˣסڼȫ

                                +
                                +
                                + + +
                                +
                                ʴ +

                                ҵѽ׸ûõԿףڸԿ֮ǰʱҪҵѺȡů

                                +
                                +
                                + + +
                                +
                                ʴ +

                                ﻧķӿҪעʲô⣿

                                +
                                +
                                + + + + + + + + +
                                +
                                + +
                                +
                                +
                                + + + + +
                                + + + +
                                +
                                + +
                                +
                                + + + + +
                                + +
                                +
                                + +
                                + ͼ(1)| + ͨͼ(1)| + ʵͼ(61)| + Чͼ(21)| + (39)| + ͼ(4)| + > +
                                + +
                                +

                                㡤ɽ¥

                                (127)

                                +
                                +
                                + +
                                + +
                                + +
                                +
                                +
                                +

                                㡤ɽ

                                + >> +
                                +
                                +
                                +
                                +
                                ¥̣סլ12ƽ۸
                                +
                                + 50000Ԫ/O + + + 0%
                                +
                                ·11¾ۣסլ
                                40948Ԫ/O0%
                                +
                                ַ̨11¾ۣסլ
                                54248Ԫ/O1.91%
                                +
                                +
                                +
                                +
                                + + + + + +
                                +
                                +
                                㡤ɽ
                                >>
                                +
                                +
                                + +
                                +

                                +

                                ѡټ㷿

                                +
                                +
                                +
                                ѡͣ
                                +
                                +
                                + ѡ +
                                +
                                  + +
                                • 4213 225.00ƽ
                                • +
                                +
                                +
                                +
                                +
                                +
                                +
                                ܼۣ
                                +
                                +
                                +
                                +
                                ׸
                                +
                                +
                                + 3 + +
                                +
                                +
                                +
                                +
                                +
                                +
                                + ҵ + +
                                +
                                +
                                + + +
                                +
                                ʱ䣺
                                +
                                +
                                + 30꣨360ڣ + +
                                +
                                +
                                +
                                +
                                 
                                +
                                 ȶϢ     ȶ +
                                +
                                +
                                +
                                +
                                +

                                ˵

                                +
                                +
                                +
                                +

                                ¾Ԫ

                                + +
                                  +
                                • ο׸
                                • +
                                • +
                                • ֧Ϣ
                                • +
                                • ʹ3.25%
                                • +
                                • ҵ4.9%
                                • +
                                +

                                >>

                                +
                                +
                                +
                                +
                                +
                                +
                                + + + + + + + +
                                +
                                +
                                  +
                                • ϲ
                                • +
                                • ͬλ¥
                                +
                                +
                                +
                                  +
                                  + + + +
                                  +
                                  +
                                  + + + + + + + + +
                                  + + + + + + +
                                  +
                                  +
                                  +
                                  + ȫ> +
                                  +
                                  +

                                  ¥ +

                                  +
                                  +
                                  +
                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  ¥۸̳
                                  + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                  + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                  + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                  + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                  + 5 + + + + + -- + + BBS + 3.88 +
                                  + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                  + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                  + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                  + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                  + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + ȫ> +
                                  +
                                  +

                                  ¥

                                  +
                                  +
                                  +
                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  ¥۸̳
                                  + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                  + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                  + 3 + ά + + + + -- + + -- + 0.00 +
                                  + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                  + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                  + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                  + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                  + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                  + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                  + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + ȫ> +
                                  +
                                  +

                                  ¿

                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                    + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                                    + 3 + + + + + -- + + BBS + 4.30 +
                                    + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                    + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                    + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                    + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                    + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                    + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                    + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + + + +
                                    + + + + +
                                    +
                                    +
                                    + +
                                    + ɫ¥|ȫ> +
                                    + +
                                    +

                                    ¥Ƽ

                                    +
                                    +
                                    + +
                                    + + +
                                    +
                                    + + + +
                                    +
                                    +
                                    +
                                    +

                                    ֻ鿴㡤ɽ + ؼ +

                                    +
                                    +
                                    +
                                    +
                                    +
                                    ¥
                                    +
                                    + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                    +
                                    +
                                    +
                                    +
                                    + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                    +
                                    +
                                    +
                                    з
                                    +
                                    + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                    +
                                    +
                                    +
                                    + + + +
                                    +
                                    +
                                    +
                                    +

                                    ¥

                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + + +
                                    + + + +
                                    վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                    + + + +
                                    +
                                    + + վ + ϵ + ƸϢ + ¼
                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    BزDݸز Ϸز ز ز
                                    Cɶز ز ϷʷزQൺزT򷿵ز
                                     췿زFݷزJϷزSϺزW人ز
                                     ɳزGݷزNϾز ڷز ز
                                     ز ز ϲز ݷزXز
                                     ݷزHݷز ز ʯׯزZ֣ݷز
                                    + +
                                    + վͼ + + ֻ + ƽ̨ + + ˷ +
                                    + +
                                    Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                    +
                                    ϺϢƼ޹˾ Ȩ
                                    +
                                    ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                    + +
                                    + + + + + + + +
                                    + + + + + + + + + + + + + +
                                    + + + + + + + + +
                                    + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking20 b/soufang/page/peking20 new file mode 100644 index 0000000..6fea2d0 --- /dev/null +++ b/soufang/page/peking20 @@ -0,0 +1,6304 @@ + + + + + ʢص-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +
                                    + + + +
                                    + + + + + + + + + + + + + + + + +
                                    + + +
                                    + + + + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + +
                                    +
                                    ų
                                    +
                                    ABCDFGH
                                    +
                                    JKLMNQST
                                    +
                                    WXYZ
                                    + +
                                    + +
                                    + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                    + + + + + + + +
                                    + +
                                    +
                                    + + +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + + +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    +
                                    + +
                                    +
                                      + + +
                                    • Ͷ
                                    • + +
                                    • +
                                    +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    +
                                    + +
                                    +
                                    +
                                    + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +
                                    +
                                    + + +
                                    +
                                    +
                                    + + + + + + + + + + + + + + + + + + + + + + +
                                    + + +
                                    +
                                    + +
                                    +
                                    + +
                                    +
                                    +
                                    + + + + + +
                                    +
                                    + + + + + + + + + + + + + +
                                    + + + + + + +
                                    +
                                    +
                                    +
                                    + ɨ赽ֻ ¥ʱ +
                                    +
                                    +
                                    + +

                                    ʢص

                                    + + + + + + + + +
                                    +
                                    +
                                    + + ַ + εز +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + +
                                    + + + +
                                    + + + + + + + + + + + + + + + + + + + + + + +
                                    +
                                    +
                                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +
                                    + + + +
                                    +
                                    + + + + + + + + + + + + + + + + +
                                    + + +
                                    +
                                    + +
                                    +
                                      +
                                    • +
                                      +
                                      +
                                      + ʢصƵ + + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢصȫ + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢصЧͼ + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢصͨͼ + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢص⾰ͼ + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢص + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢصֳ + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢصܱͼ + +
                                      +
                                      +
                                    • +
                                    • +
                                      +
                                      + ʢصͼ + +
                                      +
                                      +
                                    • +
                                    +
                                    + + +
                                    +
                                    + +
                                    +
                                    + +
                                    + +
                                    +
                                    + +
                                    +
                                    + + +
                                    + + +
                                    +
                                    +
                                    +

                                    + ƽ۸ 7800 Ԫ/ƽ +

                                    +
                                    + + +
                                    + + 鿴۸ + +
                                    +
                                    + + + +
                                    + +
                                    + + + + + ֪ͨ + + + + + + + + + + + + + + +
                                    +
                                    +
                                    + +
                                    + + +
                                    +
                                    +

                                    ûۣ

                                    +
                                    +
                                    +
                                    + +
                                      + +
                                    +
                                    +
                                    +
                                    +
                                    + + + + +
                                    +

                                    ¥̵ַ  ӱܱ߾ӳ2001

                                    +
                                    + +
                                    +
                                    +
                                    +

                                    ͣ  + + + + (89O)    + + + + (98O)    + + + + (78O)    +

                                    +
                                    + +
                                    +
                                    +
                                    +

                                    ϸϢ>>

                                    +
                                    +
                                    +
                                    + + +
                                    +
                                      + +
                                    • + ղ + + + + + +
                                    • + +
                                    • + ¥̶Ա +
                                    • +
                                    • + + ɨ赽ֻ + + + + +
                                    • +
                                    +
                                    + + + + +
                                    + +
                                    +
                                    +

                                    ¥绰400-890-0000 ת 660416

                                    +
                                    + + + + +
                                    + + + + + +
                                    + + + + +
                                    +
                                    + + +
                                    + + + + + + + +
                                    +
                                    + + + + + + + +
                                    + +
                                    +
                                    +
                                    >
                                    + +
                                    +
                                    + +
                                    +

                                    ʢصҵ̳

                                    + 50236 +
                                    + + ͼ + Ȧ
                                    + + +
                                    + +
                                    +
                                    + + +
                                    +
                                    +
                                    +
                                    + > +
                                    + +
                                    + +
                                    +
                                    +
                                    +
                                    + > +
                                    +
                                    +

                                    ʢص¥ʴ

                                    +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + + + +
                                    + + + + + + + +
                                    +
                                    +
                                    +
                                    +

                                    ʢص¥Ϣ

                                    +
                                    +
                                    + + + +
                                    +
                                    + + + + +
                                    + +
                                    +
                                    ʢص¥б
                                    +
                                    + +
                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +
                                    +
                                    + + + + + +
                                    +
                                    + +
                                    + (4)| + (8)| + + > +
                                    + +
                                    +

                                    ʢصͼ(12)

                                    +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + + +
                                    +
                                    +
                                    ѡ/¥㼼
                                    +
                                    >
                                    +
                                    + +
                                    + +
                                    + + +
                                    +
                                    + +
                                    + ͼ(12)| + ͨͼ(2)| + ʵͼ(38)| + Чͼ(11)| + (44)| + ֳ(26)| + ͼ(50)| + > +
                                    + +
                                    +

                                    ʢص¥(188)

                                    +
                                    +
                                    + +
                                    + +
                                    + +
                                    + +
                                    + + + +
                                    +
                                    + +
                                    +
                                    + + + + +
                                    +
                                    + + +
                                    +
                                    + +
                                    +
                                    +
                                    + +
                                    +
                                    + +
                                    + + +

                                    + +

                                    +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + + +
                                    + +
                                    +

                                    + ظ0 + 0 + n***4 2016-12-05 17:51:29  PC +

                                    +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + + +
                                    +
                                    +

                                    + ô ڶǮ +

                                    +
                                    +
                                    +

                                    + ظ0 + 0 + fang1****5 2016-12-03 16:10:44  iPhoneͻ +

                                    +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + + +
                                    +
                                    +

                                    + ûзԴˡ +

                                    +
                                    +
                                    +

                                    + ظ0 + 0 + soufunwa85213 2016-12-03 12:45:30  Androidͻ +

                                    +
                                    +
                                    + +
                                    +
                                    + +
                                    +
                                    +
                                    +

                                    ʢصPK

                                    +
                                    +
                                    +
                                    • ͬ
                                    • ͬ۸
                                    +
                                    +
                                    + + +
                                      + +
                                    +
                                    +
                                    + + + +
                                    + +
                                    +
                                    + + +
                                    +
                                    +
                                    +
                                    +
                                    + + + + + + + + + +
                                    + +
                                    +
                                    + + + + +
                                    +
                                    +
                                      +
                                    • ܸȤ¥
                                    • +
                                    • ͬλ¥
                                    • +
                                    +
                                    +
                                    +
                                    +
                                      +
                                      +
                                      + + +
                                      +
                                      +
                                      + + + + + + + + + + + + +
                                      +
                                      +
                                      +
                                      + ȫ> +
                                      +
                                      +

                                      ¥

                                      +
                                      +
                                      +
                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      + ¥ + + + + ۸ + + ̳ + + Ա +
                                      + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                      + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                      + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                      + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                      + 5 + + + + + + -- + + BBS + +
                                      + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                      + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                      + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                      + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + ȫ> +
                                      +
                                      +

                                      ¥

                                      +
                                      +
                                      +
                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      + ¥ + + + + ۸ + + ̳ + + Ա +
                                      + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                      + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                      + 3 + ά + + + + + -- + + -- + + +
                                      + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                      + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                      + 6 + ŵɽ + + + + + -- + + -- + + +
                                      + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                      + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                      + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + ȫ> +
                                      +
                                      +

                                      ¿

                                      +
                                      +
                                      + +
                                      +
                                      +
                                      +
                                      + + + +
                                      +
                                      +
                                      +
                                        +
                                      +
                                      +
                                      +
                                      + + + +
                                      +
                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                      + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                      + 3 + + + + + + -- + + BBS + +
                                      + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                      + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                      + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                      + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                      + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                      + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + + +
                                      +
                                      +
                                      +
                                      + + +
                                      + + +
                                      + + + + +
                                      +
                                      +
                                      + +
                                      + ɫ¥|ȫ> +
                                      + +
                                      +

                                      ¥Ƽ

                                      +
                                      +
                                      + +
                                      + + +
                                      +
                                      + + + +
                                      + + + + +
                                      + + + + +
                                      + + + +
                                      վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                      + + + + + +
                                      +
                                      + + վ + ϵ + ƸϢ + ¼
                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      BزDݸز Ϸز ز ز
                                      Cɶز ز ϷʷزQൺزT򷿵ز
                                       췿زFݷزJϷزSϺزW人ز
                                       ɳزGݷزNϾز ڷز ز
                                       ز ز ϲز ݷزXز
                                       ݷزHݷز ز ʯׯزZ֣ݷز
                                      + +
                                      + վͼ + + ֻ + ƽ̨ + + ˷ +
                                      + +
                                      Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                      +
                                      ϺϢƼ޹˾ Ȩ
                                      +
                                      ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                      + +
                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking21 b/soufang/page/peking21 new file mode 100644 index 0000000..5f00c2e --- /dev/null +++ b/soufang/page/peking21 @@ -0,0 +1,4153 @@ + + + + + ±-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      +
                                      + + + +
                                      + + + + + + + + + + + + + + + + +
                                      + + +
                                      + + + + +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + +
                                      +
                                      ų
                                      +
                                      ABCDFGH
                                      +
                                      JKLMNQST
                                      +
                                      WXYZ
                                      + +
                                      + +
                                      + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                      + + + + + + + +
                                      + +
                                      +
                                      + + +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + + +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      +
                                      +
                                      + +
                                      +
                                      +
                                      + +
                                      +
                                        + + +
                                      • Ͷ
                                      • + +
                                      • +
                                      +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      +
                                      + +
                                      +
                                      +
                                      + +
                                      +
                                      +
                                      + +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      +
                                      +
                                      + + +
                                      +
                                      +
                                      + + + + + + + + + + + + + + + + + + + + + + +
                                      + + +
                                      +
                                      + +
                                      +
                                      + +
                                      +
                                      +
                                      + + + + + +
                                      +
                                      + + + + + + + + + + + + + +
                                      + + + + + + +
                                      +
                                      +
                                      +
                                      + ɨ赽ֻ ¥ʱ +
                                      +
                                      +
                                      + +

                                      ±

                                      + + + + + + + + +
                                      +
                                      +
                                      + ̼ + +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + +
                                      + + + +
                                      + + + + + + + + + + + + + + + + + + + + + + +
                                      +
                                      +
                                      + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      +
                                      + + + +
                                      +
                                      + + + + + + + + + + + + + + + + +
                                      + + +
                                      +
                                      + +
                                      +
                                        +
                                      • +
                                        +
                                        + ±ȫ + +
                                        +
                                        +
                                      • +
                                      • +
                                        +
                                        + ±Чͼ + +
                                        +
                                        +
                                      • +
                                      • +
                                        +
                                        + ±Ľͨͼ + +
                                        +
                                        +
                                      • +
                                      • +
                                        +
                                        + ±⾰ͼ + +
                                        +
                                        +
                                      • +
                                      • +
                                        +
                                        + ± + +
                                        +
                                        +
                                      • +
                                      • +
                                        +
                                        + ±Ļֳ + +
                                        +
                                        +
                                      • +
                                      • +
                                        +
                                        + ±ܱͼ + +
                                        +
                                        +
                                      • +
                                      • +
                                        +
                                        + ±Ļͼ + +
                                        +
                                        +
                                      • +
                                      +
                                      + + +
                                      +
                                      + +
                                      +
                                      + +
                                      + +
                                      +
                                      + +
                                      +
                                      + + +
                                      + +
                                      +
                                      +
                                      +

                                      + +

                                      +
                                      + + +
                                      + + 鿴۸ + +
                                      +
                                      + + + +
                                      + +
                                      + + + + + ֪ͨ + + + + + + +
                                      +
                                      +
                                      + +
                                      + + +
                                      +
                                      +

                                      ûۣ

                                      +
                                      +
                                      +
                                      + +
                                        + +
                                      +
                                      +
                                      +
                                      +
                                      + + + + +
                                      +

                                      ¥̵ַ  ͨͨݱһ֣6߱վ

                                      +
                                      + +
                                      +
                                      +
                                      +

                                      ͣ  + + + + (115O)    + + + + (151O)    + + + + (117O)    +

                                      +
                                      + +
                                      +
                                      +
                                      +

                                      ϸϢ>>

                                      +
                                      +
                                      +
                                      + + +
                                      +
                                        + +
                                      • + ղ + + + + + +
                                      • + +
                                      • + ¥̶Ա +
                                      • +
                                      • + + ɨ赽ֻ + + + + +
                                      • +
                                      +
                                      + + + + +
                                      + +
                                      +
                                      +

                                      ¥绰400-890-0000 ת 651301

                                      +
                                      + + + + +
                                      + + + + + +
                                      + + + + +
                                      +
                                      + + +
                                      + + + + + + + +
                                      +
                                      + + + + + + + +
                                      + +
                                      +
                                      +
                                      >
                                      +
                                      +

                                      ±¥̶̬

                                      +
                                      +
                                      +
                                      + +
                                      +

                                      ±ҵ̳

                                      + 2102 +
                                      + + ͼ + Ȧ
                                      + + +
                                      + +
                                      +
                                      + + +
                                      +
                                      +
                                      +
                                      + > +
                                      +
                                      +

                                      ±Ѷ/֪ʶ

                                      +
                                      +
                                      +
                                      + +
                                      +
                                      +
                                      +
                                      +
                                      + > +
                                      +
                                      +

                                      ±¥ʴ

                                      +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      +
                                      + +
                                      + + + + + + + +
                                      + + + + + + + +
                                      +
                                      +
                                      +
                                      +

                                      ±¥Ϣ

                                      +
                                      +
                                      + + + +
                                      +
                                      + + + + +
                                      + +
                                      +
                                      ±¥б
                                      +
                                      + +
                                      + + + + + + + + + + + + + + + + + + + + + + + + +
                                      +
                                      +
                                      + + + + + +
                                      +
                                      + +
                                      + һ(7)| + (3)| + + > +
                                      + +
                                      +

                                      ±Ļͼ(10)

                                      +
                                      +
                                      +
                                      +
                                      + +
                                      +
                                      + + +
                                      +
                                      +
                                      ѡ/¥㼼
                                      +
                                      >
                                      +
                                      + +
                                      + +
                                      + + +
                                      +
                                      + +
                                      + ͼ(10)| + ͨͼ(2)| + ʵͼ(36)| + Чͼ(23)| + (2)| + ֳ(11)| + ͼ(17)| + > +
                                      + +
                                      +

                                      ±¥(101)

                                      +
                                      +
                                      + +
                                      + +
                                      + +
                                      + +
                                      + + + +
                                      +
                                      + +
                                      +
                                      + + + + +
                                      +
                                      + + +
                                      +
                                      + +
                                      +
                                      +
                                      + +
                                      +
                                      + +
                                      + + +

                                      + +

                                      +
                                      +
                                      +
                                      +
                                      + +
                                      +
                                      + + +
                                      +
                                      +

                                      + ܺõĵλã˫Կ +

                                      +
                                      +
                                      +

                                      + ظ0 + 0 +  2016-12-01 11:41:41  Androidͻ +

                                      +
                                      +
                                      +
                                      +
                                      + +
                                      +
                                      + + +
                                      + +
                                      +

                                      + ظ5 + 11 + ĵIJ 2015-09-30 16:12:12  PC +

                                      +
                                      +
                                      +
                                      +
                                      + +
                                      +
                                      + + +
                                      + +
                                      +

                                      + ظ4 + 12 + soufun-w62571819 2015-09-01 16:29:48  PC +

                                      +
                                      +
                                      + +
                                      +
                                      + +
                                      +
                                      +
                                      +

                                      ±PK

                                      +
                                      +
                                      +
                                      • ͬ
                                      • ͬ۸
                                      +
                                      +
                                      + +
                                        +
                                      +
                                        + +
                                      +
                                      +
                                      + + + +
                                      + +
                                      +
                                      + + +
                                      +
                                      +
                                      +
                                      +
                                      + + + + + + + + + +
                                      + + + + +
                                      +
                                      +
                                        +
                                      • ܸȤ¥
                                      • + +
                                      +
                                      +
                                      +
                                      +
                                        +
                                        +
                                        + +
                                        +
                                        +
                                        + + + + + + + + + + + + +
                                        +
                                        +
                                        +
                                        + ȫ> +
                                        +
                                        +

                                        ¥

                                        +
                                        +
                                        +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        + ¥ + + + + ۸ + + ̳ + + Ա +
                                        + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                        + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                        + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                        + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                        + 5 + + + + + + -- + + BBS + +
                                        + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                        + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                        + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                        + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + ȫ> +
                                        +
                                        +

                                        ¥

                                        +
                                        +
                                        +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        + ¥ + + + + ۸ + + ̳ + + Ա +
                                        + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                        + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                        + 3 + ά + + + + + -- + + -- + + +
                                        + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                        + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                        + 6 + ŵɽ + + + + + -- + + -- + + +
                                        + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                        + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                        + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + ȫ> +
                                        +
                                        +

                                        ¿

                                        +
                                        +
                                        + +
                                        +
                                        +
                                        +
                                        + + + +
                                        +
                                        +
                                        +
                                          +
                                        +
                                        +
                                        +
                                        + + + +
                                        +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                        + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                        + 3 + + + + + + -- + + BBS + +
                                        + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                        + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                        + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                        + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                        + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                        + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + + + +
                                        +
                                        +
                                        +
                                        + + +
                                        + + +
                                        + + + + +
                                        +
                                        +
                                        + +
                                        + ɫ¥|ȫ> +
                                        + +
                                        +

                                        ¥Ƽ

                                        +
                                        +
                                        + +
                                        + + +
                                        +
                                        + + + +
                                        + + + + +
                                        + + + + + + +
                                        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                        + + + + + +
                                        +
                                        + + վ + ϵ + ƸϢ + ¼
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        BزDݸز Ϸز ز ز
                                        Cɶز ز ϷʷزQൺزT򷿵ز
                                         췿زFݷزJϷزSϺزW人ز
                                         ɳزGݷزNϾز ڷز ز
                                         ز ز ϲز ݷزXز
                                         ݷزHݷز ز ʯׯزZ֣ݷز
                                        + +
                                        + վͼ + + ֻ + ƽ̨ + + ˷ +
                                        + +
                                        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                        +
                                        ϺϢƼ޹˾ Ȩ
                                        +
                                        ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                        + +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking3 b/soufang/page/peking3 new file mode 100644 index 0000000..beda1e6 --- /dev/null +++ b/soufang/page/peking3 @@ -0,0 +1,4281 @@ + + + + + ƽ̡̩Ժ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        +
                                        + + +
                                        + + + + + + + + + + + + + + + +
                                        + + +
                                        + + + + +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + + +
                                        +
                                        ų
                                        +
                                        ABCDFGH
                                        +
                                        JKLMNQST
                                        +
                                        WXYZ
                                        + +
                                        + +
                                        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                        + + + + + + + +
                                        + +
                                        +
                                        + + +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + + +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        +
                                        + +
                                        +
                                          + + +
                                        • Ͷ
                                        • + +
                                        • +
                                        +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        +
                                        + +
                                        +
                                        +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        +
                                        +
                                        + + +
                                        +
                                        +
                                        + + + + + + + + + + + + + + + + + + + + + + +
                                        + + +
                                        +
                                        + +
                                        +
                                        + +
                                        +
                                        +
                                        + + + + + +
                                        +
                                        + + + + + + + + + + + + + +
                                        + + + + + + + + +
                                        + + + + + +
                                        +
                                        + +
                                        +
                                          +
                                        • +
                                          + ƽ̡̩Ժȫ + +
                                          +
                                        • +
                                        • +
                                          + ƽ̡̩ԺЧͼ + +
                                          +
                                        • +
                                        • +
                                          + ƽ̡̩Ժӽͨͼ + +
                                          +
                                        • +
                                        • +
                                          + ƽ̡̩Ժʵͼ + +
                                          +
                                        • +
                                        • +
                                          + ƽ̡̩Ժ + +
                                          +
                                        • +
                                        • +
                                          + ƽ̡̩Ժӻֳ + +
                                          +
                                        • +
                                        • +
                                          + ƽ̡̩Ժܱͼ + +
                                          +
                                        • +
                                        • +
                                          + ƽ̡̩Ժӻͼ + +
                                          +
                                        • +
                                        +
                                        + + +
                                        +
                                        + +
                                        +
                                        + +
                                        + +
                                        +
                                        + +
                                        +
                                        + + + + + + + +
                                        + +
                                        +
                                        +

                                        ƽ̡̩Ժ

                                        ԰4.35
                                        +
                                        + +
                                        + + + +
                                        +
                                        +
                                        +
                                        + + + ܾ + ɫ + ס +
                                        +
                                        +
                                        +
                                        +

                                        ͣ

                                        + +
                                        + +
                                        +
                                        +
                                        +

                                        Ŀַ

                                          ƽ廷,йش山º,ɳվ800״
                                        + +
                                        + + + + +
                                        +
                                        +

                                        ϸϢ>>

                                        +
                                        +
                                        + +
                                        +
                                        +
                                        +
                                        + + +
                                        +
                                        +

                                        ¥绰400-890-0000 ת 833470

                                        +
                                        + + + + +
                                        + + + + + + +
                                        + + + + + + + +
                                        + +
                                        + + + + +
                                        + +
                                        + + + +
                                        +
                                        + + + +
                                        +
                                        +
                                        + +
                                        + + + + + + + + + + + + + + + + + + + + + + + +
                                        + +
                                          +
                                        + + +
                                        +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        +
                                        + +
                                        +
                                        +

                                        ƽ̡̩Ժӻ

                                        +
                                        + ľ(5)| + (16)| + (5)| + (10)| + > +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + + +
                                        + +
                                        +
                                        +
                                        +
                                        +

                                        ƽ̡̩ԺӶԺA-  7591   542O() +   

                                        +

                                        ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                        +

                                        ͽռ䷽ڿռʸߡȫͨ͸ĻͣסʶȽϸߡռгIJɹ⣬һں... +

                                        +

                                        + ϱͨ͸ȫͷ߸ռɹ

                                        +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        + + +
                                        + +
                                        +
                                        +
                                        +
                                        +

                                        ƽ̡̩ԺӶԺB-  8671   552O() +   

                                        +

                                        ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                        +

                                        ͽռ䶼ܷڼҾߵİڷšȫͨ͸ĻͣסʶȽϸߡռгIJɹ⣬һ... +

                                        +

                                        + ϱͨ͸ȫͷ߸ռɹ

                                        +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        + + +
                                        + +
                                        +
                                        +
                                        +
                                        +

                                        ƽ̡̩ԺӶԺC-  6681   441O() +   

                                        +

                                        ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                        +

                                        ͽռ䷽ս٣Ѷȵͣռʡȫͣÿһռ䶼д֤... +

                                        +

                                        + ϱͨ͸ȫͷ߸ռɹ

                                        +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + + + +
                                        + + + + + + + + +
                                        +

                                        ƽ̡̩Ժ¥Ϣ

                                        +
                                        + + + +
                                        + + + + + +
                                        + +
                                        +
                                        + +
                                        + 11# + 10# + 9# + 7# + 13# + 14# + 12# + 3# + 6# + 2# + 5# + 1# + 4# +
                                        + +
                                        + +
                                        +
                                        +
                                          +
                                        • Ԫ1
                                        • 11
                                        • Ͳ
                                        • ¥3
                                        • 14
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ1
                                        • 11
                                        • Ͳ
                                        • ¥3
                                        • 12
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ1
                                        • 11
                                        • Ͳ
                                        • ¥3
                                        • 12
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ1
                                        • Ͳ
                                        • ¥3
                                        • 7
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ1
                                        • 11
                                        • Ͳ
                                        • ¥3
                                        • 12
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ1
                                        • 11
                                        • Ͳ
                                        • ¥3
                                        • 14
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ1
                                        • 11
                                        • Ͳ
                                        • ¥3
                                        • 12
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ5
                                        • 11
                                        • Ͳ
                                        • ¥6
                                        • 30
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ͳ
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ6
                                        • 11
                                        • Ͳ
                                        • ¥6
                                        • 36
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ͳ
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ԫ3
                                        • 11
                                        • Ͳ
                                        • ¥6
                                        • 18
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                          +
                                        • Ͳ
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        + + +
                                        +
                                        + +
                                        +
                                        + +
                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                        +
                                        + + + + + + +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        + +
                                        + +

                                        ƽ̡̩ԺѶ

                                        +
                                        + Ѷ + ֪ʶ + ʴ +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        Ѷ +

                                        Դ,Яֱƽ̩Ժ콭Ϲ

                                        +
                                        +
                                        +
                                        +
                                        Ѷ +

                                        :ؼЩ ֹۿ2016¥

                                        +
                                        +
                                        + + +
                                        +
                                        ֪ʶ +

                                        ׸סլס 㻹İȫô

                                        +
                                        +
                                        + + +
                                        +
                                        ʴ +

                                        ƽĹԢҳ

                                        +
                                        +
                                        + + +
                                        +
                                        ʴ +

                                        42ڲƽǩԼͬ,ڼ۸,Ϊ˸,ҵгȵķӡԼ,

                                        +
                                        +
                                        + + + + + + + + +
                                        +
                                        + +
                                        +
                                        +
                                        + + + + +
                                        + + + +
                                        +
                                        + +
                                        +
                                        + + + + +
                                        + +
                                        +
                                        + +
                                        + ͼ(36)| + ͨͼ(2)| + ʵͼ(52)| + Чͼ(21)| + (19)| + ֳ(5)| + ͼ(5)| + > +
                                        + +
                                        +

                                        ƽ̡̩Ժ¥

                                        (140)

                                        +
                                        +
                                        + +
                                        + +
                                        + +
                                        +
                                        +
                                        +

                                        ƽ̡̩Ժӷ

                                        + >> +
                                        +
                                        +
                                        +
                                        +
                                        ¥̣סլ12ͼ۸
                                        +
                                        + + 950Ԫ/ + + + + 0%
                                        +
                                        ·11¾ۣסլ
                                        40948Ԫ/O0%
                                        +
                                        ƽַ11¾ۣסլ
                                        37598Ԫ/O5.04%
                                        +
                                        +
                                        +
                                        +
                                        + + + + + +
                                        +
                                        +
                                        ƽ̡̩Ժӷ
                                        >>
                                        +
                                        +
                                        + +
                                        +

                                        +

                                        ѡټ㷿

                                        +
                                        +
                                        +
                                        ѡͣ
                                        +
                                        +
                                        + ѡ +
                                        +
                                          + +
                                        • 7519 542.00ƽ
                                        • + +
                                        • 8617 552.00ƽ
                                        • + +
                                        • 6618 441.00ƽ
                                        • +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        ܼۣ
                                        +
                                        +
                                        +
                                        +
                                        ׸
                                        +
                                        +
                                        + 3 + +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + ҵ + +
                                        +
                                        +
                                        + + +
                                        +
                                        ʱ䣺
                                        +
                                        +
                                        + 30꣨360ڣ + +
                                        +
                                        +
                                        +
                                        +
                                         
                                        +
                                         ȶϢ     ȶ +
                                        +
                                        +
                                        +
                                        +
                                        +

                                        ˵

                                        +
                                        +
                                        +
                                        +

                                        ¾Ԫ

                                        + +
                                          +
                                        • ο׸
                                        • +
                                        • +
                                        • ֧Ϣ
                                        • +
                                        • ʹ3.25%
                                        • +
                                        • ҵ4.9%
                                        • +
                                        +

                                        >>

                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + + + + + + +
                                        +
                                        +
                                          +
                                        • ϲ
                                        • +
                                        +
                                        +
                                        +
                                          +
                                          + + +
                                          +
                                          +
                                          + + + + + + + + +
                                          + + + + + + +
                                          +
                                          +
                                          +
                                          + ȫ> +
                                          +
                                          +

                                          ¥ +

                                          +
                                          +
                                          +
                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                          ¥۸̳
                                          + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                          + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                          + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                          + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                          + 5 + + + + + -- + + BBS + 3.88 +
                                          + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                          + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                          + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                          + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                          + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                          +
                                          +
                                          +
                                          +
                                          +
                                          + ȫ> +
                                          +
                                          +

                                          ¥

                                          +
                                          +
                                          +
                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                          ¥۸̳
                                          + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                          + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                          + 3 + ά + + + + -- + + -- + 0.00 +
                                          + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                          + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                          + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                          + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                          + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                          + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                          + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                          +
                                          +
                                          +
                                          +
                                          +
                                          + ȫ> +
                                          +
                                          +

                                          ¿

                                          +
                                          +
                                          + +
                                          +
                                          +
                                          +
                                          + +
                                          +
                                          +
                                          +
                                            +
                                            +
                                            +
                                            + +
                                            +
                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                            + 2 + + + + + -- + + BBS + 4.30 +
                                            + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                            + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                            + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                            + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                            + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                            + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                            + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                            + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + + + + +
                                            + + + +
                                            +
                                            +
                                            + +
                                            + ɫ¥|ȫ> +
                                            + +
                                            +

                                            ¥Ƽ

                                            +
                                            +
                                            + +
                                            + + +
                                            +
                                            + + + +
                                            +
                                            +
                                            +
                                            +

                                            ֻ鿴ƽ̡̩Ժ + ؼ +

                                            +
                                            +
                                            +
                                            +
                                            +
                                            ¥
                                            +
                                            + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                            +
                                            +
                                            +
                                            +
                                            + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                            +
                                            +
                                            +
                                            з
                                            +
                                            + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                            +
                                            +
                                            +
                                            + + + +
                                            +
                                            +
                                            +
                                            +

                                            ¥

                                            +
                                            +
                                            + +
                                            + + + + +
                                            վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                            + + + +
                                            +
                                            + + վ + ϵ + ƸϢ + ¼
                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            BزDݸز Ϸز ز ز
                                            Cɶز ز ϷʷزQൺزT򷿵ز
                                             췿زFݷزJϷزSϺزW人ز
                                             ɳزGݷزNϾز ڷز ز
                                             ز ز ϲز ݷزXز
                                             ݷزHݷز ز ʯׯزZ֣ݷز
                                            + +
                                            + վͼ + + ֻ + ƽ̨ + + ˷ +
                                            + +
                                            Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                            +
                                            ϺϢƼ޹˾ Ȩ
                                            +
                                            ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                            + +
                                            + + + + + + + +
                                            + + + + + + + + + + + + + +
                                            + + + + + + + + +
                                            + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking4 b/soufang/page/peking4 new file mode 100644 index 0000000..ff89ff7 --- /dev/null +++ b/soufang/page/peking4 @@ -0,0 +1,4133 @@ + + + + + ̩㳡-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            +
                                            + + +
                                            + + + + + + + + + + + + + + + +
                                            + + +
                                            + + + + +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + + +
                                            +
                                            ų
                                            +
                                            ABCDFGH
                                            +
                                            JKLMNQST
                                            +
                                            WXYZ
                                            + +
                                            + +
                                            + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                            + + + + + + + +
                                            + +
                                            +
                                            + + +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + + +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            +
                                            +
                                            + +
                                            +
                                            +
                                            + +
                                            +
                                              + + +
                                            • Ͷ
                                            • + +
                                            • +
                                            +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            +
                                            + +
                                            +
                                            +
                                            + +
                                            +
                                            +
                                            + +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            +
                                            +
                                            + + +
                                            +
                                            +
                                            + + + + + + + + + + + + + + + + + + + + + + +
                                            + + +
                                            +
                                            + +
                                            +
                                            + +
                                            +
                                            +
                                            + + + + + +
                                            +
                                            + + + + + + + + + + + + + +
                                            + + + + + + + + +
                                            + + + + + +
                                            +
                                            + +
                                            +
                                              +
                                            • +
                                              + ̩㳡Чͼ + +
                                              +
                                            • +
                                            • +
                                              + ̩㳡ͨͼ + +
                                              +
                                            • +
                                            • +
                                              + ̩㳡ʵͼ + +
                                              +
                                            • +
                                            • +
                                              + ̩㳡ܱͼ + +
                                              +
                                            • +
                                            +
                                            + + +
                                            +
                                            + +
                                            +
                                            + +
                                            + +
                                            +
                                            + +
                                            +
                                            + + + + + + + +
                                            + +
                                            +
                                            +

                                            ̩㳡

                                            ̩ ̩̽4.15
                                            +
                                            + +
                                            + + + +
                                            +
                                            +
                                            +
                                            + ̼ + ƷƵز +
                                            +
                                            +
                                            +
                                            +

                                            ͣ

                                            +
                                            + +
                                            +
                                            + +
                                            +
                                            +
                                            +

                                            Ŀַ

                                              ˵4ׯ100״
                                            + +
                                            + + + + +
                                            +
                                            +

                                            ϸϢ>>

                                            +
                                            +
                                            + +
                                            +
                                            +
                                            +
                                            + + +
                                            +
                                            +

                                            ¥绰400-890-0000 ת 802289

                                            +
                                            + + + + +
                                            + + + + + + +
                                            + + + + + + + +
                                            + +
                                            + + + + +
                                            + +
                                            + + + +
                                            +
                                            + + + +
                                            +
                                            +
                                            + +
                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                            + +
                                              +
                                            + + +
                                            +
                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            +
                                            + + + + +
                                            + + + + + + + + +
                                            +

                                            ̩㳡¥Ϣ

                                            +
                                            + + + + + +
                                            +
                                            + +
                                            + 21c-1# + 21c-2# + 21a-2# + 21a-1# + 016a-3# + 016a-2# + 016a-1# + 017-1#... + 017-4# + 017-5# + 017-2# + 017-3# +
                                            + +
                                            + +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 316
                                            • С߲
                                            • ¥9
                                            • 161
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 316
                                            • С߲
                                            • ¥9
                                            • 142
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 519
                                            • С߲
                                            • ¥9
                                            • 170
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 417
                                            • С߲
                                            • ¥9
                                            • 146
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 418
                                            • С߲
                                            • ¥9
                                            • 160
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 416
                                            • С߲
                                            • ¥9
                                            • 142
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 418
                                            • С߲
                                            • ¥9
                                            • 161
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 426
                                            • С߲
                                            • ¥23
                                            • 389
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 426
                                            • С߲
                                            • ¥23
                                            • 390
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                              +
                                            • Ԫ1
                                            • 426
                                            • С߲
                                            • ¥23
                                            • 390
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + +
                                            +
                                            + + +
                                            +
                                            + +
                                            +
                                            +

                                            ̩㳡

                                            95
                                            + >> +
                                            +
                                            +
                                            + +
                                            +
                                            + + + +
                                            +
                                            +
                                            + + + + + + +
                                            +
                                            +
                                            +
                                            + +
                                            +
                                            + +
                                            +
                                            +
                                            +
                                            +
                                            + +
                                            + +

                                            ̩㳡Ѷ

                                            +
                                            + Ѷ + ֪ʶ + ʴ +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            Ѷ +

                                            ̩㳡廷ϵĺ÷ ס

                                            +
                                            +
                                            +
                                            +
                                            Ѷ +

                                            270ȹ۾,̩㳡÷۵

                                            +
                                            +
                                            + + +
                                            +
                                            ֪ʶ +

                                            ˣסڼȫ

                                            +
                                            +
                                            + + +
                                            +
                                            ʴ +

                                            ̩㳡ʲôʱ¥ַ

                                            +
                                            +
                                            + + +
                                            +
                                            ʴ +

                                            ̩㳡װô,ëǾװ?

                                            +
                                            +
                                            + + + + + + + + +
                                            +
                                            + +
                                            +
                                            +
                                            + + + + +
                                            + + + +
                                            +
                                            + +
                                            +
                                            + + + + +
                                            + +
                                            +
                                            + +
                                            + ͨͼ(3)| + ʵͼ(96)| + Чͼ(11)| + ͼ(38)| + > +
                                            + +
                                            +

                                            ̩㳡¥

                                            (148)

                                            +
                                            +
                                            + +
                                            + +
                                            + +
                                            +
                                            +
                                            +

                                            ̩㳡

                                            + >> +
                                            +
                                            +
                                            +
                                            +
                                            ¥̣סլ12ƽ۸
                                            +
                                            + 53800Ԫ/O + + + 2.23%
                                            +
                                            ·11¾ۣסլ
                                            40948Ԫ/O0%
                                            +
                                            ˶ַ11¾ۣסլ
                                            42386Ԫ/O3.62%
                                            +
                                            +
                                            +
                                            +
                                            + + + + + +
                                            +
                                            +
                                            ̩㳡
                                            >>
                                            +
                                            +
                                            + +
                                            +

                                            +

                                            ѡټ㷿

                                            +
                                            +
                                            +
                                            ѡͣ
                                            +
                                            +
                                            + ޻ +
                                            +
                                            +
                                            +
                                            ܼۣ
                                            +
                                            +
                                            +
                                            +
                                            ׸
                                            +
                                            +
                                            + 3 + +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + ҵ + +
                                            +
                                            +
                                            + + +
                                            +
                                            ʱ䣺
                                            +
                                            +
                                            + 30꣨360ڣ + +
                                            +
                                            +
                                            +
                                            +
                                             
                                            +
                                             ȶϢ     ȶ +
                                            +
                                            +
                                            +
                                            +
                                            +

                                            ˵

                                            +
                                            +
                                            +
                                            +

                                            ¾Ԫ

                                            + +
                                              +
                                            • ο׸
                                            • +
                                            • +
                                            • ֧Ϣ
                                            • +
                                            • ʹ3.25%
                                            • +
                                            • ҵ4.9%
                                            • +
                                            +

                                            >>

                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + + + + + + + +
                                            +
                                            +
                                              +
                                            • ϲ
                                            • +
                                            • ͬλ¥
                                            +
                                            +
                                            +
                                              +
                                              + + + +
                                              +
                                              +
                                              + + + + + + + + +
                                              + + + + + + +
                                              +
                                              +
                                              +
                                              + ȫ> +
                                              +
                                              +

                                              ¥ +

                                              +
                                              +
                                              +
                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                              ¥۸̳
                                              + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                              + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                              + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                              + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                              + 5 + + + + + -- + + BBS + 3.88 +
                                              + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                              + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                              + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                              + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                              + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              + ȫ> +
                                              +
                                              +

                                              ¥

                                              +
                                              +
                                              +
                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                              ¥۸̳
                                              + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                              + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                              + 3 + ά + + + + -- + + -- + 0.00 +
                                              + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                              + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                              + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                              + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                              + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                              + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                              + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              + ȫ> +
                                              +
                                              +

                                              ¿

                                              +
                                              +
                                              + +
                                              +
                                              +
                                              +
                                              + +
                                              +
                                              +
                                              +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                + 2 + + + + + -- + + BBS + 4.30 +
                                                + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                                + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + + +
                                                + + + +
                                                +
                                                +
                                                + +
                                                + ɫ¥|ȫ> +
                                                + +
                                                +

                                                ¥Ƽ

                                                +
                                                +
                                                + +
                                                + + +
                                                +
                                                + + + +
                                                +
                                                +
                                                +
                                                +

                                                ֻ鿴̩㳡 + ؼ +

                                                +
                                                +
                                                +
                                                +
                                                +
                                                ¥
                                                +
                                                + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                +
                                                +
                                                +
                                                +
                                                + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                +
                                                +
                                                +
                                                з
                                                +
                                                + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                +
                                                +
                                                +
                                                + + + +
                                                +
                                                +
                                                +
                                                +

                                                ¥

                                                +
                                                +
                                                +
                                                + +
                                                +
                                                + + + + +
                                                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                + + + +
                                                +
                                                + + վ + ϵ + ƸϢ + ¼
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                BزDݸز Ϸز ز ز
                                                Cɶز ز ϷʷزQൺزT򷿵ز
                                                 췿زFݷزJϷزSϺزW人ز
                                                 ɳزGݷزNϾز ڷز ز
                                                 ز ز ϲز ݷزXز
                                                 ݷزHݷز ز ʯׯزZ֣ݷز
                                                + +
                                                + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                + +
                                                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                +
                                                ϺϢƼ޹˾ Ȩ
                                                +
                                                ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                + +
                                                + + + + + + + +
                                                + + + + + + + + + + + + + +
                                                + + + + + + + + +
                                                + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking5 b/soufang/page/peking5 new file mode 100644 index 0000000..aabb468 --- /dev/null +++ b/soufang/page/peking5 @@ -0,0 +1,5732 @@ + + + +ѧ԰-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                + + + +
                                                + + + + + + + + + + + + + + + + + + + +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + +
                                                +
                                                ų
                                                +
                                                ABCDFGH
                                                +
                                                JKLMNQST
                                                +
                                                WXYZ
                                                + +
                                                + +
                                                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                + + + + + + + +
                                                + +
                                                +
                                                + + +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + + +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                  + + +
                                                • Ͷ
                                                • + +
                                                • +
                                                +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                + +
                                                +
                                                + +
                                                +
                                                + +
                                                +
                                                +
                                                + + + + + + + + + + + +
                                                +
                                                + + + + + + + + + + + + + +
                                                + + + + + +
                                                +
                                                +
                                                +
                                                ɨ赽ֻ ¥ʱ
                                                +
                                                + +
                                                + ̼ + סլ + ܼ + С +
                                                +
                                                +
                                                +
                                                + + +
                                                + +
                                                + + + + + + + + +
                                                + +
                                                +
                                                + +
                                                + +
                                                + + +
                                                +
                                                + +
                                                +
                                                +
                                                  +
                                                • +

                                                  + + +
                                                • +
                                                • +

                                                  ȫ

                                                  + + ȫ +
                                                • +
                                                • +

                                                  Чͼ

                                                  + + Чͼ +
                                                • +
                                                • +

                                                  ͨͼ

                                                  + + ͨͼ +
                                                • +
                                                • +

                                                  ʵͼ

                                                  + + ʵͼ +
                                                • +
                                                • +

                                                  + + +
                                                • +
                                                • +

                                                  ܱͼ

                                                  + + ܱͼ +
                                                • +
                                                • +

                                                  ͼ

                                                  + + ͼ +
                                                • + +
                                                +
                                                + +
                                                +
                                                + +
                                                +
                                                + + + + +
                                                + + + + +
                                                +
                                                +
                                                +
                                                +

                                                + ƽ۸ 18500 Ԫ/ƽ +

                                                +
                                                +
                                                + + 鿴۸ + +
                                                +
                                                + + + +
                                                + +
                                                + + + + + ֪ͨ + + + + + + + + + +
                                                +
                                                +
                                                + + +
                                                + + + +
                                                +
                                                +

                                                ͣ  + + + + (91O)    + + + + (95O)    + + + + (93O)    +

                                                +
                                                + +
                                                + + +
                                                +

                                                ¥̵ַ  ̰н1061000·

                                                +
                                                + +
                                                + +
                                                + + +
                                                +
                                                +

                                                ¿̣  2016-11-15

                                                +
                                                +
                                                + ֪ͨ +
                                                +
                                                +
                                                +
                                                +

                                                ʱ䣺  2018-10-31

                                                +
                                                +
                                                +
                                                +
                                                +

                                                Ȩޣ  70

                                                +
                                                +
                                                +
                                                +
                                                +

                                                ͣ  

                                                +
                                                +
                                                + + +
                                                +
                                                +

                                                ûۣ

                                                +
                                                +
                                                +
                                                + +
                                                  + +
                                                +
                                                +
                                                +
                                                + + + +
                                                +
                                                +

                                                ϸϢ>>

                                                +
                                                +
                                                +
                                                  + +
                                                • + ղ + + +
                                                • + +
                                                • + ¥̶Ա +
                                                • +
                                                • + + ɨ赽ֻ + + + + +
                                                • +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                +
                                                Ż
                                                ʱ
                                                +
                                                ʵԴ
                                                ۸ʵ͸¥ͬ
                                                +
                                                ѡ
                                                ɱԴ24Сʱ
                                                +
                                                + +
                                                +
                                                +
                                                ʵʱ
                                                +
                                                +
                                                  +
                                                +
                                                + +
                                                +
                                                +
                                                ͷ400-890-0000ת832902 + Ż>> + + + +
                                                +
                                                +
                                                +
                                                + + + + + + + + + + + + + + + + + + + +
                                                +
                                                + + + + + + + +
                                                + + +
                                                +
                                                + + + + + + + + + +
                                                + +
                                                +
                                                +

                                                ͻ

                                                400-890-0000ת832902

                                                +
                                                  +
                                                • +
                                                  + +
                                                  + + +
                                                  + +
                                                  +

                                                  + +

                                                  +

                                                  ת235430

                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                • +
                                                • +
                                                  + +
                                                  + + +
                                                  + +
                                                  +

                                                  + · +

                                                  +

                                                  ת266022

                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                • +
                                                • +
                                                  + +
                                                  + + +
                                                  + +
                                                  +

                                                  + +

                                                  +

                                                  ת250205

                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                • +
                                                +
                                                +
                                                + +
                                                + +
                                                + +
                                                ද̬ | >>¥̶̬
                                                +
                                                +
                                                +
                                                +
                                                ̬
                                                +
                                                +

                                                2016-11-22ѧ԰7¥ѿ88-90ƽ2

                                                +

                                                ѧ԰ڽڿ7¥7¥Ϊ԰󷿡ѧ԰7¥14㣬Ϊ24ƣΪ88-90ƽ2ӣ18500Ԫ/ƽܼ185/ĿΪ70ȨԤƽʱΪ2018... Ķȫ>

                                                +
                                                +
                                                +
                                                +
                                                +
                                                +

                                                2016-12-07áǮˢӡ1.8ҵ 䶬Ͼ

                                                + +
                                                +
                                                +
                                                +
                                                + + +
                                                ۻ
                                                +
                                                +
                                                +
                                                +
                                                5#91.89O
                                                +
                                                +

                                                2211  91.89ƽ

                                                +

                                                ͽ

                                                +

                                                ȫԳ˫̨

                                                +
                                                163.47Ԫѡ
                                                +
                                                +
                                                +
                                                +
                                                5#95.90Oͼ
                                                +
                                                +

                                                2211  95.90ƽ

                                                +

                                                ͽ

                                                +

                                                ˫̨Գȫ

                                                +
                                                168.89Ԫѡ
                                                +
                                                +
                                                +
                                                +
                                                + + + + +
                                                +
                                                + +
                                                +
                                                + + +
                                                + + +
                                                + +
                                                + + +
                                                +
                                                Ϣ
                                                +
                                                + ۸䶯 ֪ͨ +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                +

                                                + +
                                                + + + + + + + + + +
                                                +
                                                Ȥ¥
                                                +
                                                +
                                                  + +
                                                +
                                                + +
                                                + + + + + + + + +
                                                + +
                                                + + +
                                                ѧ԰¥Ϣ
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                  +
                                                • +
                                                • +
                                                • +
                                                +
                                                + +
                                                + + + + +
                                                +
                                                +
                                                + + + +
                                                +
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                + + + + + + + + + + + +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                + +
                                                +
                                                ͬ¥
                                                + +
                                                +
                                                +
                                                ͬλ¥
                                                + +
                                                + +
                                                + +
                                                +
                                                + + + +
                                                +
                                                + +
                                                + + +
                                                +
                                                + +
                                                + +
                                                + +
                                                + + + +
                                                +
                                                + + +
                                                +
                                                + +
                                                + +
                                                ܱ
                                                +
                                                +
                                                + +
                                                +
                                                + + +
                                                +
                                                +
                                                +
                                                +
                                                ¥̣סլƽ۸
                                                +
                                                + 18500Ԫ/O + 11 + + -- +
                                                +
                                                ̰·סլ
                                                16271Ԫ/O11--
                                                +
                                                ۣסլ
                                                40948Ԫ/O11--
                                                +
                                                +
                                                +
                                                +
                                                + + + +
                                                +
                                                + +
                                                + + +
                                                +
                                                + + +
                                                + +
                                                + +
                                                +
                                                + +
                                                +
                                                2016
                                                +
                                                +
                                                +
                                                +
                                                + +
                                                + +
                                                + + +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                +

                                                ѡټ㷿

                                                +
                                                +
                                                +
                                                ѡͣ
                                                +
                                                +
                                                + ѡ +
                                                +
                                                  + +
                                                • 2211 91.89ƽ
                                                • + +
                                                • 2211 95.90ƽ
                                                • +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                ܼۣ
                                                +
                                                +
                                                +
                                                ׸
                                                + 3 +
                                                +
                                                  +
                                                • 1
                                                • +
                                                • 2
                                                • +
                                                • 3
                                                • +
                                                • 4
                                                • +
                                                • 5
                                                • +
                                                • 6
                                                • +
                                                • 7
                                                • +
                                                • 8
                                                • +
                                                • 9
                                                • +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                  +
                                                • ҵ
                                                • +
                                                • +
                                                • ϴ
                                                • +
                                                +
                                                +
                                                +
                                                + + +
                                                +
                                                ʱ䣺
                                                + 30꣨360ڣ +
                                                +
                                                  +
                                                • 1꣨12ڣ
                                                • +
                                                • 2꣨24ڣ
                                                • +
                                                • 3꣨36ڣ
                                                • +
                                                • 4꣨48ڣ
                                                • +
                                                • 5꣨60ڣ
                                                • +
                                                • 6꣨72ڣ
                                                • +
                                                • 7꣨84ڣ
                                                • +
                                                • 8꣨96ڣ
                                                • +
                                                • 9꣨108ڣ
                                                • +
                                                • 10꣨120ڣ
                                                • +
                                                • 11꣨132ڣ
                                                • +
                                                • 12꣨144ڣ
                                                • +
                                                • 13꣨156ڣ
                                                • +
                                                • 14꣨168ڣ
                                                • +
                                                • 15꣨180ڣ
                                                • +
                                                • 16꣨192ڣ
                                                • +
                                                • 17꣨204ڣ
                                                • +
                                                • 18꣨216ڣ
                                                • +
                                                • 19꣨228ڣ
                                                • +
                                                • 20꣨240ڣ
                                                • +
                                                • 25꣨300ڣ
                                                • +
                                                • 30꣨360ڣ
                                                • +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                 
                                                ȶϢ  ȶ
                                                +
                                                +
                                                +
                                                +
                                                +

                                                ˵

                                                +
                                                +
                                                +
                                                +

                                                ¾Ԫ

                                                + + +
                                                  +
                                                • ο׸
                                                • +
                                                • +
                                                • ֧Ϣ
                                                • +
                                                • ʹ3.25%
                                                • +
                                                • ҵ4.9%
                                                • +
                                                +

                                                >>

                                                + +
                                                +
                                                +
                                                +
                                                +
                                                + + + + + + + + + +
                                                ֪
                                                +
                                                +
                                                + + + +
                                                +

                                                +
                                                +
                                                Q1ΪʲôҪ֧·ѣ
                                                +
                                                Ԥ·Ѻ󣬲ŻΪһʵԸǿҵĿͻǻɳרҵŶΪṩȫλ
                                                +
                                                +
                                                +
                                                Q2򷿷Ƿˣ
                                                +
                                                YESûڽ׹иǰʱֹף½ʱ˻û֧ķѣڣԷԴ⡢ԸڵȡʵչûȨ档
                                                +
                                                +
                                                +
                                                Q3ѡȫʲôģ
                                                +
                                                ѡǷ״Ļģʽûͨ򷿣ϲ鿴¥̻Ϣ->ѯ->ѡԴ->ȷǩ򷿺ͬ->ȷܷŻݡ
                                                +
                                                +
                                                +
                                                +
                                                + +
                                                ¥Ƽ
                                                +
                                                +
                                                + + +
                                                +
                                                + + +
                                                ؼ
                                                +
                                                +
                                                +
                                                +
                                                ¥
                                                +
                                                + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                +
                                                + +
                                                +
                                                +
                                                + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                +
                                                +
                                                +
                                                з
                                                +
                                                + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                +
                                                +
                                                +
                                                + + +
                                                ¥
                                                +
                                                +
                                                + +
                                                +
                                                + +
                                                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                +
                                                +
                                                + + + + + + +
                                                +
                                                + + վ + ϵ + ƸϢ + ¼
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                BزDݸز Ϸز ز ز
                                                Cɶز ز ϷʷزQൺزT򷿵ز
                                                 췿زFݷزJϷزSϺزW人ز
                                                 ɳزGݷزNϾز ڷز ز
                                                 ز ز ϲز ݷزXز
                                                 ݷزHݷز ز ʯׯزZ֣ݷز
                                                + +
                                                + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                + +
                                                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                +
                                                ϺϢƼ޹˾ Ȩ
                                                +
                                                ͷ绰400-850-8888 ΥϢٱ䣺jubao@fang.com
                                                + +
                                                + + + + + + + + + + + + + + + + + +
                                                + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking6 b/soufang/page/peking6 new file mode 100644 index 0000000..86e6313 --- /dev/null +++ b/soufang/page/peking6 @@ -0,0 +1,5831 @@ + + + + + Ҽ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                + + + +
                                                + + + + + + + + + + + + + + + + +
                                                + + +
                                                + + + + +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + +
                                                +
                                                ų
                                                +
                                                ABCDFGH
                                                +
                                                JKLMNQST
                                                +
                                                WXYZ
                                                + +
                                                + +
                                                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                + + + + + + + +
                                                + +
                                                +
                                                + + +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + + +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                  + + +
                                                • Ͷ
                                                • + +
                                                • +
                                                +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                +
                                                + + +
                                                +
                                                +
                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                + + +
                                                +
                                                + +
                                                +
                                                + +
                                                +
                                                +
                                                + + + + + +
                                                +
                                                + + + + + + + + + + + + + +
                                                + + + + + + +
                                                +
                                                +
                                                +
                                                + ɨ赽ֻ ¥ʱ +
                                                +
                                                +
                                                + +

                                                Ҽ

                                                + + + + + + + + +
                                                +
                                                +
                                                + ̼ + LOFT +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + +
                                                + + + +
                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                +

                                                S1סԢ ɽһˮȻ̬ס

                                                +
                                                  +
                                                • 200
                                                • + +
                                                • רʷ
                                                • +
                                                +
                                                +
                                                  +
                                                • +
                                                • +
                                                • +
                                                • +
                                                • ʱ
                                                • +
                                                • +
                                                • +
                                                • +
                                                • +
                                                +
                                                21˲
                                                +
                                                +
                                                +
                                                + ԤԼ +
                                                +
                                                +
                                                + +
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                + + + + + +
                                                + + +
                                                +
                                                + +
                                                +
                                                  +
                                                • +
                                                  +
                                                  +
                                                  + ҼƵ + + +
                                                  +
                                                  +
                                                • +
                                                • +
                                                  +
                                                  + Ҽȫ + +
                                                  +
                                                  +
                                                • +
                                                • +
                                                  +
                                                  + ҼЧͼ + +
                                                  +
                                                  +
                                                • +
                                                • +
                                                  +
                                                  + ҼŽͨͼ + +
                                                  +
                                                  +
                                                • +
                                                • +
                                                  +
                                                  + Ҽʵͼ + +
                                                  +
                                                  +
                                                • +
                                                • +
                                                  +
                                                  + Ҽ + +
                                                  +
                                                  +
                                                • +
                                                • +
                                                  +
                                                  + ҼŻͼ + +
                                                  +
                                                  +
                                                • +
                                                +
                                                + + +
                                                +
                                                + +
                                                +
                                                +
                                                  +
                                                • +

                                                  Ƶ

                                                  + + Ƶ +
                                                • +
                                                • +

                                                  ȫ

                                                  + + ȫ +
                                                • +
                                                • +

                                                  Чͼ

                                                  + + Чͼ +
                                                • +
                                                • +

                                                  ͨͼ

                                                  + + ͨͼ +
                                                • +
                                                • +

                                                  ʵͼ

                                                  + + ʵͼ +
                                                • +
                                                • +

                                                  + + +
                                                • +
                                                • +

                                                  ͼ

                                                  + + ͼ +
                                                • +
                                                +
                                                + +
                                                +
                                                + +
                                                +
                                                + + +
                                                + + +
                                                +
                                                +
                                                +

                                                + ƽ۸ 43000 Ԫ/ƽ +

                                                +
                                                +
                                                + + 鿴۸ + +
                                                +
                                                + + + +
                                                + +
                                                + + + + + ֪ͨ + + + + + + + + + + + + + + +
                                                +
                                                +
                                                + +
                                                + + +
                                                +
                                                +

                                                ûۣ

                                                +
                                                +
                                                +
                                                + +
                                                  + +
                                                +
                                                +
                                                +
                                                +
                                                + + + + +
                                                +

                                                ¥̵ַ  ͷʯ·62100ҼŽӴ

                                                +
                                                + +
                                                +
                                                +
                                                +

                                                ͣ  + + + + (69O)    + + + + (71O)    + + + + (80O)    +

                                                +
                                                + +
                                                +
                                                +
                                                +

                                                ϸϢ>>

                                                +
                                                +
                                                +
                                                + + +
                                                +
                                                  + +
                                                • + ղ + + + + + +
                                                • + +
                                                • + ¥̶Ա +
                                                • +
                                                • + + ɨ赽ֻ + + + + +
                                                • +
                                                +
                                                + + + + +
                                                + +
                                                +
                                                +

                                                ¥绰400-890-0000 ת 805330

                                                +
                                                + + + + +
                                                + + + + + +
                                                + + + + +
                                                +
                                                + + +
                                                + + + + + + + +
                                                +
                                                + + + + + + + +
                                                + +
                                                +
                                                +
                                                >
                                                +
                                                +

                                                Ҽ¥̶̬

                                                +
                                                +
                                                +
                                                + +
                                                +

                                                Ҽҵ̳

                                                + 2560 +
                                                + + ͼ + Ȧ
                                                + + +
                                                + +
                                                +
                                                + + +
                                                +
                                                +
                                                +
                                                + > +
                                                +
                                                +

                                                ҼѶ/֪ʶ

                                                +
                                                +
                                                + +
                                                +
                                                +
                                                +
                                                + > +
                                                +
                                                +

                                                Ҽ¥ʴ

                                                +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                +
                                                + +
                                                + + + + + + + +
                                                + + + + + + + +
                                                +
                                                +
                                                +
                                                +

                                                Ҽ¥Ϣ

                                                +
                                                +
                                                + + + +
                                                +
                                                +
                                                  + +
                                                • 1
                                                • + +
                                                • 2
                                                • +
                                                + + + + +
                                                + +
                                                +
                                                Ҽ¥б
                                                +
                                                + +
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                +
                                                + + + + + +
                                                +
                                                + +
                                                + һ(3)| + (18)| + (11)| + + > +
                                                + +
                                                +

                                                ҼŻͼ(32)

                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                + + +
                                                +
                                                +
                                                ѡ/¥㼼
                                                +
                                                >
                                                +
                                                + +
                                                + +
                                                + + +
                                                +
                                                + +
                                                + ͼ(32)| + ͨͼ(2)| + ʵͼ(25)| + Чͼ(18)| + (40)| + > +
                                                + +
                                                +

                                                Ҽ¥(117)

                                                +
                                                +
                                                + +
                                                + +
                                                + +
                                                + +
                                                + + + +
                                                +
                                                + +
                                                +
                                                + + + + +
                                                +
                                                + + +
                                                +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                + +
                                                + + +

                                                + +

                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                + + +
                                                + +
                                                +

                                                + ظ0 + 3 +  2016-12-02 17:16:11  Androidͻ +

                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                + + +
                                                + +
                                                +

                                                + ظ0 + 2 +  2016-11-30 11:02:45  Androidͻ +

                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                + + +
                                                + +
                                                +

                                                + ظ0 + 1 + zhangsizhu 2016-12-02 17:45:27  PC +

                                                +
                                                +
                                                + +
                                                +
                                                + +
                                                +
                                                +
                                                +

                                                ҼPK

                                                +
                                                +
                                                +
                                                • ͬ
                                                • ͬ۸
                                                +
                                                +
                                                + +
                                                  +
                                                +
                                                  + +
                                                +
                                                +
                                                + + + +
                                                + +
                                                +
                                                + + +
                                                +
                                                +
                                                +
                                                +
                                                + + + + + + + + + +
                                                + +
                                                +
                                                + + + + +
                                                +
                                                +
                                                  +
                                                • ܸȤ¥
                                                • + +
                                                +
                                                +
                                                +
                                                +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  + + + + + + + + + + + + +
                                                  +
                                                  +
                                                  +
                                                  + ȫ> +
                                                  +
                                                  +

                                                  ¥

                                                  +
                                                  +
                                                  +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  + ¥ + + + + ۸ + + ̳ + + Ա +
                                                  + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                  + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                  + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                  + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                  + 5 + + + + + + -- + + BBS + +
                                                  + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                  + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                  + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                  + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + ȫ> +
                                                  +
                                                  +

                                                  ¥

                                                  +
                                                  +
                                                  +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  + ¥ + + + + ۸ + + ̳ + + Ա +
                                                  + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                  + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                  + 3 + ά + + + + + -- + + -- + + +
                                                  + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                  + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                  + 6 + ŵɽ + + + + + -- + + -- + + +
                                                  + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                  + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                  + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + ȫ> +
                                                  +
                                                  +

                                                  ¿

                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  + + + +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  +
                                                  +
                                                  +
                                                  + + + +
                                                  +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                  + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                  + 3 + + + + + + -- + + BBS + +
                                                  + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                  + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                  + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                  + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                  + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                  + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + + +
                                                  +
                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  + + + + +
                                                  +
                                                  +
                                                  + +
                                                  + ɫ¥|ȫ> +
                                                  + +
                                                  +

                                                  ¥Ƽ

                                                  +
                                                  +
                                                  + +
                                                  + + +
                                                  +
                                                  + + + +
                                                  + + + + +
                                                  + + + + + + +
                                                  վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                  + + + + + +
                                                  +
                                                  + + վ + ϵ + ƸϢ + ¼
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  BزDݸز Ϸز ز ز
                                                  Cɶز ز ϷʷزQൺزT򷿵ز
                                                   췿زFݷزJϷزSϺزW人ز
                                                   ɳزGݷزNϾز ڷز ز
                                                   ز ز ϲز ݷزXز
                                                   ݷزHݷز ز ʯׯزZ֣ݷز
                                                  + +
                                                  + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                  + +
                                                  Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                  +
                                                  ϺϢƼ޹˾ Ȩ
                                                  +
                                                  ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                  + +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking7 b/soufang/page/peking7 new file mode 100644 index 0000000..b47811e --- /dev/null +++ b/soufang/page/peking7 @@ -0,0 +1,4201 @@ + + + + + 齭ļó-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  +
                                                  + + +
                                                  + + + + + + + + + + + + + + + +
                                                  + + +
                                                  + + + + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  ų
                                                  +
                                                  ABCDFGH
                                                  +
                                                  JKLMNQST
                                                  +
                                                  WXYZ
                                                  + +
                                                  + +
                                                  + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                  + + + + + + + +
                                                  + +
                                                  +
                                                  + + +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                    + + +
                                                  • Ͷ
                                                  • + +
                                                  • +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  +
                                                  + + + + + + + + + + + + + + + + + + + + + + +
                                                  + + +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  + + + + + +
                                                  +
                                                  + + + + + + + + + + + + + +
                                                  + + + + + + + + +
                                                  + + + + + +
                                                  +
                                                  + +
                                                  +
                                                    +
                                                  • +
                                                    + 齭ļóЧͼ + +
                                                    +
                                                  • +
                                                  • +
                                                    + 齭ļóǽͨͼ + +
                                                    +
                                                  • +
                                                  • +
                                                    + 齭ļóȫ + +
                                                    +
                                                  • +
                                                  • +
                                                    + 齭ļó⾰ͼ + +
                                                    +
                                                  • +
                                                  • +
                                                    + 齭ļó + +
                                                    +
                                                  • +
                                                  • +
                                                    + 齭ļóǻֳ + +
                                                    +
                                                  • +
                                                  • +
                                                    + 齭ļóܱͼ + +
                                                    +
                                                  • +
                                                  • +
                                                    + 齭ļóǻͼ + +
                                                    +
                                                  • +
                                                  +
                                                  + + +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + + +
                                                  + +
                                                  +
                                                  +

                                                  齭ļó

                                                  齭ļ4.15
                                                  +
                                                  + +
                                                  + + + +
                                                  +
                                                  +
                                                  +
                                                  + ̼ + Ƽסլ +
                                                  +
                                                  +
                                                  +
                                                  +

                                                  ͣ

                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +

                                                  Ŀַ

                                                    ͨݴׯ·ˮ
                                                  + +
                                                  + + + + +
                                                  +
                                                  +

                                                  ϸϢ>>

                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  +

                                                  ¥绰400-890-0000 ת 620540

                                                  +
                                                  + + + + +
                                                  + + + + + + +
                                                  + + + + + + + +
                                                  + +
                                                  + + + + +
                                                  + +
                                                  + + + +
                                                  +
                                                  + + + +
                                                  +
                                                  +
                                                  + +
                                                  + + + + + + + + + + + + + + + + + + + + + + + +
                                                  + +
                                                    +
                                                  + + +
                                                  +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  +
                                                  + + + + +
                                                  + + + + + + + + +
                                                  +

                                                  齭ļó¥Ϣ

                                                  +
                                                  + + + + + +
                                                  +
                                                  + +
                                                  + ַ5# + ַ16# + ַ9# + ַ17# + ַ11# + ַ3# + ַ7# + ַ14# + ַ13# + ַ1# + ַ19# + ַ15# +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 170
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 160
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ2
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 340
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 170
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 170
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 170
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 173
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 161
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 170
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥9
                                                  • 167
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                    +
                                                  • Ԫ1
                                                  • 315
                                                  • С߲
                                                  • ¥12
                                                  • 170
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  + +

                                                  齭ļóѶ

                                                  +
                                                  + Ѷ + ֪ʶ + ʴ +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  Ѷ +

                                                  ܱܱԤƿ2 ͨ齭ļóǼ

                                                  +
                                                  +
                                                  +
                                                  +
                                                  Ѷ +

                                                  齭ļóǡ廷һ3.3¥ ַ

                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  ֪ʶ +

                                                  ˣסڼȫ

                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  ʴ +

                                                  齭ļóʲôʱ¥ַ

                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  ʴ +

                                                  齭ļóǷ

                                                  +
                                                  +
                                                  + + + + + + + + +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  + + + + +
                                                  + + + +
                                                  +
                                                  + +
                                                  +
                                                  + + + + +
                                                  + +
                                                  +
                                                  + +
                                                  + ͨͼ(2)| + ʵͼ(183)| + Чͼ(19)| + (28)| + ֳ(15)| + ͼ(26)| + > +
                                                  + +
                                                  +

                                                  齭ļó¥

                                                  (277)

                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  +

                                                  齭ļóǷ

                                                  + >> +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  ¥̣סլ12¼۸
                                                  +
                                                  + + + 0%
                                                  +
                                                  ·11¾ۣסլ
                                                  40948Ԫ/O0%
                                                  +
                                                  ͨݶַ11¾ۣסլ
                                                  44109Ԫ/O2.54%
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + + + + +
                                                  +
                                                  +
                                                  齭ļóǷ
                                                  >>
                                                  +
                                                  +
                                                  + +
                                                  +

                                                  +

                                                  ѡټ㷿

                                                  +
                                                  +
                                                  +
                                                  ѡͣ
                                                  +
                                                  +
                                                  + ޻ +
                                                  +
                                                  +
                                                  +
                                                  ܼۣ
                                                  +
                                                  +
                                                  +
                                                  +
                                                  ׸
                                                  +
                                                  +
                                                  + 3 + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + ҵ + +
                                                  +
                                                  +
                                                  + + +
                                                  +
                                                  ʱ䣺
                                                  +
                                                  +
                                                  + 30꣨360ڣ + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                   
                                                  +
                                                   ȶϢ     ȶ +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +

                                                  ˵

                                                  +
                                                  +
                                                  +
                                                  +

                                                  ¾Ԫ

                                                  + +
                                                    +
                                                  • ο׸
                                                  • +
                                                  • +
                                                  • ֧Ϣ
                                                  • +
                                                  • ʹ3.25%
                                                  • +
                                                  • ҵ4.9%
                                                  • +
                                                  +

                                                  >>

                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  +
                                                    +
                                                  • ϲ
                                                  • +
                                                  +
                                                  +
                                                  +
                                                    +
                                                    + + +
                                                    +
                                                    +
                                                    + + + + + + + + +
                                                    + + + + + + +
                                                    +
                                                    +
                                                    +
                                                    + ȫ> +
                                                    +
                                                    +

                                                    ¥ +

                                                    +
                                                    +
                                                    +
                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                    ¥۸̳
                                                    + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                    + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                    + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                    + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                    + 5 + + + + + -- + + BBS + 3.88 +
                                                    + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                    + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                    + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                    + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                    + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + ȫ> +
                                                    +
                                                    +

                                                    ¥

                                                    +
                                                    +
                                                    +
                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                    ¥۸̳
                                                    + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                    + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                    + 3 + ά + + + + -- + + -- + 0.00 +
                                                    + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                    + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                    + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                    + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                    + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                    + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                    + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + ȫ> +
                                                    +
                                                    +

                                                    ¿

                                                    +
                                                    +
                                                    + +
                                                    +
                                                    +
                                                    +
                                                    + +
                                                    +
                                                    +
                                                    +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                      + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                      + 2 + + + + + -- + + BBS + 4.30 +
                                                      + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                      + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                      + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                      + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                      + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                      + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                      + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                                      + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + + + +
                                                      + + + +
                                                      +
                                                      +
                                                      + +
                                                      + ɫ¥|ȫ> +
                                                      + +
                                                      +

                                                      ¥Ƽ

                                                      +
                                                      +
                                                      + +
                                                      + + +
                                                      +
                                                      + + + +
                                                      +
                                                      +
                                                      +
                                                      +

                                                      ֻ鿴齭ļó + ؼ +

                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      ¥
                                                      +
                                                      + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                      +
                                                      +
                                                      +
                                                      з
                                                      +
                                                      + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                      +
                                                      +
                                                      +
                                                      + + + +
                                                      +
                                                      +
                                                      +
                                                      +

                                                      ¥

                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + + + +
                                                      վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                      + + + +
                                                      +
                                                      + + վ + ϵ + ƸϢ + ¼
                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                      BزDݸز Ϸز ز ز
                                                      Cɶز ز ϷʷزQൺزT򷿵ز
                                                       췿زFݷزJϷزSϺزW人ز
                                                       ɳزGݷزNϾز ڷز ز
                                                       ز ز ϲز ݷزXز
                                                       ݷزHݷز ز ʯׯزZ֣ݷز
                                                      + +
                                                      + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                      + +
                                                      Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                      +
                                                      ϺϢƼ޹˾ Ȩ
                                                      +
                                                      ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                      + +
                                                      + + + + + + + +
                                                      + + + + + + + + + + + + + +
                                                      + + + + + + + + +
                                                      + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking8 b/soufang/page/peking8 new file mode 100644 index 0000000..0b046cc --- /dev/null +++ b/soufang/page/peking8 @@ -0,0 +1,5219 @@ + + + + + -¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                      +
                                                      + + + +
                                                      + + + + + + + + + + + + + + + + +
                                                      + + +
                                                      + + + + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + +
                                                      +
                                                      ų
                                                      +
                                                      ABCDFGH
                                                      +
                                                      JKLMNQST
                                                      +
                                                      WXYZ
                                                      + +
                                                      + +
                                                      + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                      + + + + + + + +
                                                      + +
                                                      +
                                                      + + +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + + +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                        + + +
                                                      • Ͷ
                                                      • + +
                                                      • +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                      +
                                                      +
                                                      + + +
                                                      +
                                                      +
                                                      + + + + + + + + + + + + + + + + + + + + + + +
                                                      + + +
                                                      +
                                                      + +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      + + + + + +
                                                      +
                                                      + + + + + + + + + + + + + +
                                                      + + + + + + +
                                                      +
                                                      +
                                                      +
                                                      + ɨ赽ֻ ¥ʱ +
                                                      +
                                                      +
                                                      + +

                                                      + ʾס + + + + + + + +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + +
                                                      + + + +
                                                      + + + + + + + + + + + + + + + + + + + + + + +
                                                      +
                                                      +
                                                      + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                      +
                                                      + + + +
                                                      +
                                                      + + + + + + + + + + + + + + + + +
                                                      + + +
                                                      +
                                                      + +
                                                      +
                                                        +
                                                      • +
                                                        +
                                                        +
                                                        + Ƶ + + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + ȫ + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + Чͼ + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + ʽͨͼ + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + ⾰ͼ + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + ʻֳ + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + ܱͼ + +
                                                        +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        + ʻͼ + +
                                                        +
                                                        +
                                                      • +
                                                      +
                                                      + + +
                                                      +
                                                      + +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + +
                                                      +
                                                      +
                                                      +

                                                      + +

                                                      +
                                                      + + + +
                                                      +
                                                      + +
                                                      + + +
                                                      +
                                                      +

                                                      ûۣ

                                                      +
                                                      +
                                                      +
                                                      + +
                                                        + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + + + +
                                                      +

                                                      ¥̵ַ  ԰Ŷ

                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +

                                                      ͣ  + + + + (203O)    + + + + ľ(366O)    + + + + (460O)    +

                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +

                                                      ϸϢ>>

                                                      +
                                                      +
                                                      +
                                                      + + +
                                                      +
                                                        + +
                                                      • + ղ + + + + + +
                                                      • + +
                                                      • + ¥̶Ա +
                                                      • +
                                                      • + + ɨ赽ֻ + + + + +
                                                      • +
                                                      +
                                                      + + + + +
                                                      + +
                                                      +
                                                      +

                                                      ¥绰400-890-0000 ת 807852

                                                      +
                                                      + + + + +
                                                      + + + + + +
                                                      + + + + +
                                                      +
                                                      + + +
                                                      + + + + + + + +
                                                      +
                                                      + + + + + + + +
                                                      + +
                                                      +
                                                      +
                                                      >
                                                      +
                                                      +

                                                      ¥̶̬

                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +

                                                      ҵ̳

                                                      + 43804 +
                                                      + + ͼ + Ȧ
                                                      + + +
                                                      + +
                                                      +
                                                      + + +
                                                      +
                                                      +
                                                      +
                                                      + > +
                                                      +
                                                      +

                                                      Ѷ/֪ʶ

                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + > +
                                                      +
                                                      +

                                                      ¥ʴ

                                                      +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      + + + + + + + +
                                                      + + + + + + + +
                                                      +
                                                      +
                                                      +
                                                      +

                                                      ¥Ϣ

                                                      +
                                                      +
                                                      + + + +
                                                      +
                                                      + + + + +
                                                      + +
                                                      +
                                                      ¥б
                                                      +
                                                      + +
                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                      +
                                                      +
                                                      + + + + + +
                                                      +
                                                      + +
                                                      + (1)| + ľ(3)| + (2)| + + > +
                                                      + +
                                                      +

                                                      ʻͼ(6)

                                                      +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      +
                                                      +
                                                      ѡ/¥㼼
                                                      +
                                                      >
                                                      +
                                                      + +
                                                      + +
                                                      + + +
                                                      +
                                                      + +
                                                      + ͼ(6)| + ͨͼ(4)| + ʵͼ(82)| + Чͼ(8)| + (23)| + ֳ(8)| + ͼ(10)| + > +
                                                      + +
                                                      +

                                                      ¥(141)

                                                      +
                                                      +
                                                      + +
                                                      +
                                                        +
                                                      • +
                                                        +
                                                        +

                                                        Ƶ

                                                        +
                                                        + +
                                                        +
                                                        + + Ƶ + +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        +

                                                        ȫ

                                                        +
                                                        + +
                                                        +
                                                        + + ȫ + +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        +

                                                        + ¥⾰ͼ +

                                                        +
                                                        +
                                                        +
                                                        + + ¥⾰ͼ + +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        +

                                                        + СЧͼ +

                                                        +
                                                        +
                                                        +
                                                        + + СЧͼ + +
                                                        +
                                                      • +
                                                      • +
                                                        +
                                                        +

                                                        + λͼ +

                                                        +
                                                        +
                                                        +
                                                        + + λͼ + +
                                                        +
                                                      • + +
                                                      +
                                                      + +
                                                      + +
                                                      + + + +
                                                      +
                                                      + +
                                                      +
                                                      + + + + +
                                                      +
                                                      + + +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + +
                                                      + + +

                                                      + +

                                                      +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + +
                                                      +

                                                      + ظ2 + 0 + F***2 2016-12-06 15:34:28  PC +

                                                      +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      +
                                                      +

                                                      + λúܲоͶDZܴ +

                                                      +
                                                      +
                                                      +

                                                      + ظ0 + 0 +  2016-12-07 08:21:52  Androidͻ +

                                                      +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      +
                                                      +

                                                      + λ÷dzãҷdzϲ +

                                                      +
                                                      +
                                                      +

                                                      + ظ0 + 0 + ж 2016-12-05 05:52:41  Androidͻ +

                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +

                                                      PK

                                                      +
                                                      +
                                                      +
                                                      • ͬ
                                                      • ͬ۸
                                                      +
                                                      +
                                                      + +
                                                        +
                                                      +
                                                        + +
                                                      +
                                                      +
                                                      + + + +
                                                      + +
                                                      +
                                                      + + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + + + + + + + + +
                                                      + +
                                                      +
                                                      + + + + +
                                                      +
                                                      +
                                                        +
                                                      • ܸȤ¥
                                                      • + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        + + + + + + + + + + + + +
                                                        +
                                                        +
                                                        +
                                                        + ȫ> +
                                                        +
                                                        +

                                                        ¥

                                                        +
                                                        +
                                                        +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        + ¥ + + + + ۸ + + ̳ + + Ա +
                                                        + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                        + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                        + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                        + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                        + 5 + + + + + + -- + + BBS + +
                                                        + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                        + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                        + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                        + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + ȫ> +
                                                        +
                                                        +

                                                        ¥

                                                        +
                                                        +
                                                        +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        + ¥ + + + + ۸ + + ̳ + + Ա +
                                                        + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                        + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                        + 3 + ά + + + + + -- + + -- + + +
                                                        + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                        + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                        + 6 + ŵɽ + + + + + -- + + -- + + +
                                                        + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                        + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                        + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + ȫ> +
                                                        +
                                                        +

                                                        ¿

                                                        +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        + + + +
                                                        +
                                                        +
                                                        +
                                                          +
                                                        +
                                                        +
                                                        +
                                                        + + + +
                                                        +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                        + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                        + 3 + + + + + + -- + + BBS + +
                                                        + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                        + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                        + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                        + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                        + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                        + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + + +
                                                        +
                                                        +
                                                        +
                                                        + + +
                                                        + + +
                                                        + + + + +
                                                        +
                                                        +
                                                        + +
                                                        + ɫ¥|ȫ> +
                                                        + +
                                                        +

                                                        ¥Ƽ

                                                        +
                                                        +
                                                        + +
                                                        + + +
                                                        +
                                                        + + + +
                                                        + + + + +
                                                        + + + + + + +
                                                        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                        + + + + + +
                                                        +
                                                        + + վ + ϵ + ƸϢ + ¼
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        BزDݸز Ϸز ز ز
                                                        Cɶز ز ϷʷزQൺزT򷿵ز
                                                         췿زFݷزJϷزSϺزW人ز
                                                         ɳزGݷزNϾز ڷز ز
                                                         ز ز ϲز ݷزXز
                                                         ݷزHݷز ز ʯׯزZ֣ݷز
                                                        + +
                                                        + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                        + +
                                                        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                        +
                                                        ϺϢƼ޹˾ Ȩ
                                                        +
                                                        ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                        + +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking9 b/soufang/page/peking9 new file mode 100644 index 0000000..f4deacb --- /dev/null +++ b/soufang/page/peking9 @@ -0,0 +1,4258 @@ + + + + + ͨ±-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        +
                                                        + + + +
                                                        + + + + + + + + + + + + + + + + +
                                                        + + +
                                                        + + + + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + +
                                                        +
                                                        ų
                                                        +
                                                        ABCDFGH
                                                        +
                                                        JKLMNQST
                                                        +
                                                        WXYZ
                                                        + +
                                                        + +
                                                        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                        + + + + + + + +
                                                        + +
                                                        +
                                                        + + +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + + +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                          + + +
                                                        • Ͷ
                                                        • + +
                                                        • +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        +
                                                        +
                                                        + + +
                                                        +
                                                        +
                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                        + + +
                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        + + + + + +
                                                        +
                                                        + + + + + + + + + + + + + +
                                                        + + + + + + +
                                                        +
                                                        +
                                                        +
                                                        + ɨ赽ֻ ¥ʱ +
                                                        +
                                                        +
                                                        + +

                                                        ͨ±

                                                        + ͨ¼԰Ϫ + +
                                                        +
                                                        ¥
                                                        + +
                                                        + + + + + + +
                                                        +
                                                        +
                                                        + + ̼ + ַ + + ɫ +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + +
                                                        + + + +
                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                        +
                                                        +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        +
                                                        + + + +
                                                        +
                                                        + + + + + + + + + + + + + + + + +
                                                        + + +
                                                        +
                                                        + +
                                                        +
                                                          +
                                                        • +
                                                          +
                                                          +
                                                          + ͨ±Ƶ + + +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          +
                                                          + ͨ±ȫ + +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          +
                                                          + ͨ±Чͼ + +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          +
                                                          + ͨ±ͨͼ + +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          +
                                                          + ͨ±⾰ͼ + +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          +
                                                          + ͨ± + +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          +
                                                          + ͨ±ܱͼ + +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          +
                                                          + ͨ±ͼ + +
                                                          +
                                                          +
                                                        • +
                                                        +
                                                        + + +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                          +
                                                        • +

                                                          Ƶ

                                                          + + Ƶ +
                                                        • +
                                                        • +

                                                          ȫ

                                                          + + ȫ +
                                                        • +
                                                        • +

                                                          Чͼ

                                                          + + Чͼ +
                                                        • +
                                                        • +

                                                          ͨͼ

                                                          + + ͨͼ +
                                                        • +
                                                        • +

                                                          ʵͼ

                                                          + + ʵͼ +
                                                        • +
                                                        • +

                                                          + + +
                                                        • +
                                                        • +

                                                          ܱͼ

                                                          + + ܱͼ +
                                                        • +
                                                        • +

                                                          ͼ

                                                          + + ͼ +
                                                        • +
                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + +
                                                        +
                                                        +
                                                        +

                                                        + ƽ۸ 2000 Ԫ/ +

                                                        +
                                                        + + +
                                                        + + 鿴۸ + +
                                                        +
                                                        + + + +
                                                        + +
                                                        + + + + + ֪ͨ + + + + + + +
                                                        +
                                                        +
                                                        + +
                                                        + + +
                                                        +
                                                        +

                                                        ûۣ

                                                        +
                                                        +
                                                        +
                                                        + +
                                                          + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + + + +
                                                        +

                                                        ¥̵ַ  ˳·33Ժ

                                                        +
                                                        + +
                                                        +
                                                        +
                                                        +

                                                        ͣ  + + + + (480O)    + + + + (480O)    + + + + (480O)    +

                                                        +
                                                        + +
                                                        +
                                                        +
                                                        +

                                                        ϸϢ>>

                                                        +
                                                        +
                                                        +
                                                        + + +
                                                        +
                                                          + +
                                                        • + ղ + + + + + +
                                                        • + +
                                                        • + ¥̶Ա +
                                                        • +
                                                        • + + ɨ赽ֻ + + + + +
                                                        • +
                                                        +
                                                        + + + + +
                                                        + +
                                                        +
                                                        +

                                                        ¥绰400-890-0000 ת 650730

                                                        +
                                                        + + + + +
                                                        + + + + + +
                                                        + + + + +
                                                        +
                                                        + + +
                                                        + + + + + + + +
                                                        +
                                                        + + + + + + + +
                                                        + +
                                                        +
                                                        +
                                                        >
                                                        + +
                                                        +
                                                        + +
                                                        +

                                                        ͨ±ҵ̳

                                                        + 34353 +
                                                        + + ͼ + Ȧ
                                                        + + +
                                                        + +
                                                        +
                                                        + + +
                                                        +
                                                        +
                                                        +
                                                        + > +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        + > +
                                                        +
                                                        +

                                                        ͨ±¥ʴ

                                                        +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        + + + + + + + +
                                                        + + + + + + + +
                                                        +
                                                        +
                                                        +
                                                        +

                                                        ͨ±¥Ϣ

                                                        +
                                                        +
                                                        + + + +
                                                        +
                                                        + + + + +
                                                        + +
                                                        +
                                                        ͨ±¥б
                                                        +
                                                        + +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        +
                                                        +
                                                        + + + + + +
                                                        +
                                                        + +
                                                        + (19)| + (21)| + + > +
                                                        + +
                                                        +

                                                        ͨ±ͼ(40)

                                                        +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        +
                                                        +
                                                        ѡ/¥㼼
                                                        +
                                                        >
                                                        +
                                                        + +
                                                        + +
                                                        + + +
                                                        +
                                                        + +
                                                        + ͼ(40)| + ͨͼ(3)| + ʵͼ(97)| + Чͼ(10)| + (69)| + ͼ(44)| + > +
                                                        + +
                                                        +

                                                        ͨ±¥(264)

                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        + +
                                                        + +
                                                        + + + +
                                                        +
                                                        + +
                                                        +
                                                        + + + + +
                                                        +
                                                        + + +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        + + +

                                                        + +

                                                        +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + +
                                                        +

                                                        + ظ0 + 3 + 1ڶ 2016-11-30 15:01:02  Androidͻ +

                                                        +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        +
                                                        +

                                                        + ܲȫ +

                                                        +
                                                        +
                                                        +

                                                        + ظ0 + 1 +  2016-12-06 13:19:38  Androidͻ +

                                                        +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + +
                                                        +

                                                        + ظ0 + 0 + ͷôô 2016-11-08 16:35:26  iPhoneͻ +

                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        +

                                                        ͨ±PK

                                                        +
                                                        +
                                                        +
                                                        • ͬ
                                                        • ͬ۸
                                                        +
                                                        +
                                                        + +
                                                          +
                                                        +
                                                          + +
                                                        +
                                                        +
                                                        + + + +
                                                        + +
                                                        +
                                                        + + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + + + + + + + + +
                                                        + +
                                                        +
                                                        + + + + +
                                                        +
                                                        +
                                                          +
                                                        • ܸȤ¥
                                                        • + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + +
                                                          +
                                                          +
                                                          +
                                                          + ȫ> +
                                                          +
                                                          +

                                                          ¥

                                                          +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + ¥ + + + + ۸ + + ̳ + + Ա +
                                                          + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                          + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                          + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                          + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                          + 5 + + + + + + -- + + BBS + +
                                                          + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                          + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                          + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                          + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + ȫ> +
                                                          +
                                                          +

                                                          ¥

                                                          +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + ¥ + + + + ۸ + + ̳ + + Ա +
                                                          + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                          + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                          + 3 + ά + + + + + -- + + -- + + +
                                                          + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                          + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                          + 6 + ŵɽ + + + + + -- + + -- + + +
                                                          + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                          + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                          + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + ȫ> +
                                                          +
                                                          +

                                                          ¿

                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          + + + +
                                                          +
                                                          +
                                                          +
                                                            +
                                                          +
                                                          +
                                                          +
                                                          + + + +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                          + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                          + 3 + + + + + + -- + + BBS + +
                                                          + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                          + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                          + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                          + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                          + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                          + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + + +
                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          + + +
                                                          + + + + +
                                                          +
                                                          +
                                                          + +
                                                          + ɫ¥|ȫ> +
                                                          + +
                                                          +

                                                          ¥Ƽ

                                                          +
                                                          +
                                                          + +
                                                          + + +
                                                          +
                                                          + + + +
                                                          + + + + +
                                                          + + + + + + +
                                                          վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                          + + + + + +
                                                          +
                                                          + + վ + ϵ + ƸϢ + ¼
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          BزDݸز Ϸز ز ز
                                                          Cɶز ز ϷʷزQൺزT򷿵ز
                                                           췿زFݷزJϷزSϺزW人ز
                                                           ɳزGݷزNϾز ڷز ز
                                                           ز ز ϲز ݷزXز
                                                           ݷزHݷز ز ʯׯزZ֣ݷز
                                                          + +
                                                          + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                          + +
                                                          Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                          +
                                                          ϺϢƼ޹˾ Ȩ
                                                          +
                                                          ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                          + +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/s b/soufang/s new file mode 100644 index 0000000..e1c2f8c --- /dev/null +++ b/soufang/s @@ -0,0 +1,5728 @@ + + + + + + + + + + +¥̡_¥_-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                          ų
                                                          +
                                                          ABCDFGH
                                                          +
                                                          JKLMNQST
                                                          +
                                                          WXYZ
                                                          + +
                                                          + +
                                                          + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                          + + + + + + + +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                            + + +
                                                          • Ͷ
                                                          • + +
                                                          • +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          + ͼ + б +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + + + +
                                                          +
                                                          +
                                                          + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + ¥ + + Դ + ֪ѧУ +
                                                          +
                                                          + ҷ +
                                                          + +
                                                          +
                                                            +
                                                          • +
                                                          • + + + + + ƽ + + ɽ + + ͨ + + + + ̨ + + ˳ + + + + ͷ + + + + + + + + + + ʯɽ + + ƽ + + + + + + ȷ + + + + + + ػʵ + + ̰ + + + + + + + + + + ׯ + + ܱ + + + + +
                                                          • +
                                                          +
                                                          + + +
                                                          + +
                                                          + +
                                                          +
                                                          + +
                                                          +
                                                          +  - + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                            +
                                                          • +
                                                          • + + + һ + + + + + + ľ + + + + + +
                                                          • +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          ɫ
                                                          + +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + +
                                                          + + +
                                                          + + +
                                                          վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                          + +
                                                          +

                                                          ṩ2016¥̼Ϣο±רҵıṩʵʱı¥, ¥ϢԼ۲ѯԲ鵽¥̵ĴŻԼŹΪҵʺϵı·Ϣ

                                                          +
                                                          +
                                                          + + + + + + + + + +
                                                          +
                                                          + + վ + ϵ + ƸϢ + ¼
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          BزDݸز Ϸز ز ز
                                                          Cɶز ز ϷʷزQൺزT򷿵ز
                                                           췿زFݷزJϷزSϺزW人ز
                                                           ɳزGݷزNϾز ڷز ز
                                                           ز ز ϲز ݷزXز
                                                           ݷزHݷز ز ʯׯزZ֣ݷز
                                                          + +
                                                          + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                          + +
                                                          Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                          +
                                                          ϺϢƼ޹˾ Ȩ
                                                          +
                                                          ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                          + +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/scrapy.cfg b/soufang/scrapy.cfg new file mode 100644 index 0000000..af8af6f --- /dev/null +++ b/soufang/scrapy.cfg @@ -0,0 +1,11 @@ +# Automatically created by: scrapy startproject +# +# For more information about the [deploy] section see: +# https://scrapyd.readthedocs.org/en/latest/deploy.html + +[settings] +default = soufang.settings + +[deploy] +#url = http://localhost:6800/ +project = soufang diff --git a/soufang/soufang/__init__.py b/soufang/soufang/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/soufang/soufang/__init__.pyc b/soufang/soufang/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c703b9076ac27feb075ca593f06b831f1c771978 GIT binary patch literal 153 zcmZSn%*&P2@J!~*@|{L(a_5;z?npP83g5+AQuP+7tOG{z=3 QKczG$)edA?F%UBV0O|N6vj6}9 literal 0 HcmV?d00001 diff --git a/soufang/soufang/items.py b/soufang/soufang/items.py new file mode 100644 index 0000000..3935f93 --- /dev/null +++ b/soufang/soufang/items.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +# Define here the models for your scraped items +# +# See documentation in: +# http://doc.scrapy.org/en/latest/topics/items.html + +import scrapy + + +class SoufangItem(scrapy.Item): + # define the fields for your item here like: + # name = scrapy.Field() + url = scrapy.Field() + position = scrapy.Field() + avg_money = scrapy.Field() + residence = scrapy.Field() \ No newline at end of file diff --git a/soufang/soufang/items.pyc b/soufang/soufang/items.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1feb98f902e0241de327c8a184778ed9bffef0c2 GIT binary patch literal 520 zcmcIg%}#_c5FTI`bzR>BFLKqysPSO*Vm1&Hm&uzN-)51L#aK8(zTv zeEnuRoz8sG_u1;|>+!XMzY)=SM;p%xYFYub00of{BtR3uHh?;UPk;}Aw<6?-JXuh* z`l0dcPKoAb*b2RSa7#!=!s`e literal 0 HcmV?d00001 diff --git a/soufang/soufang/middlewares.py b/soufang/soufang/middlewares.py new file mode 100644 index 0000000..63f2968 --- /dev/null +++ b/soufang/soufang/middlewares.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- + +# Define here the models for your spider middleware +# +# See documentation in: +# http://doc.scrapy.org/en/latest/topics/spider-middleware.html + +from scrapy import signals + + +class SoufangSpiderMiddleware(object): + # Not all methods need to be defined. If a method is not defined, + # scrapy acts as if the spider middleware does not modify the + # passed objects. + + @classmethod + def from_crawler(cls, crawler): + # This method is used by Scrapy to create your spiders. + s = cls() + crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) + return s + + def process_spider_input(response, spider): + # Called for each response that goes through the spider + # middleware and into the spider. + + # Should return None or raise an exception. + return None + + def process_spider_output(response, result, spider): + # Called with the results returned from the Spider, after + # it has processed the response. + + # Must return an iterable of Request, dict or Item objects. + for i in result: + yield i + + def process_spider_exception(response, exception, spider): + # Called when a spider or process_spider_input() method + # (from other spider middleware) raises an exception. + + # Should return either None or an iterable of Response, dict + # or Item objects. + pass + + def process_start_requests(start_requests, spider): + # Called with the start requests of the spider, and works + # similarly to the process_spider_output() method, except + # that it doesn’t have a response associated. + + # Must return only requests (not items). + for r in start_requests: + yield r + + def spider_opened(self, spider): + spider.logger.info('Spider opened: %s' % spider.name) diff --git a/soufang/soufang/pipelines.py b/soufang/soufang/pipelines.py new file mode 100644 index 0000000..af3f6f7 --- /dev/null +++ b/soufang/soufang/pipelines.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +# Define your item pipelines here +# +# Don't forget to add your pipeline to the ITEM_PIPELINES setting +# See: http://doc.scrapy.org/en/latest/topics/item-pipeline.html + + +class SoufangPipeline(object): + def process_item(self, item, spider): + return item diff --git a/soufang/soufang/settings.py b/soufang/soufang/settings.py new file mode 100644 index 0000000..53153f5 --- /dev/null +++ b/soufang/soufang/settings.py @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- + +# Scrapy settings for soufang project +# +# For simplicity, this file contains only settings considered important or +# commonly used. You can find more settings consulting the documentation: +# +# http://doc.scrapy.org/en/latest/topics/settings.html +# http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html +# http://scrapy.readthedocs.org/en/latest/topics/spider-middleware.html + +BOT_NAME = 'soufang' + +SPIDER_MODULES = ['soufang.spiders'] +NEWSPIDER_MODULE = 'soufang.spiders' + + +# Crawl responsibly by identifying yourself (and your website) on the user-agent +#USER_AGENT = 'soufang (+http://www.yourdomain.com)' + +# Obey robots.txt rules +ROBOTSTXT_OBEY = True + +# Configure maximum concurrent requests performed by Scrapy (default: 16) +#CONCURRENT_REQUESTS = 32 + +# Configure a delay for requests for the same website (default: 0) +# See http://scrapy.readthedocs.org/en/latest/topics/settings.html#download-delay +# See also autothrottle settings and docs +#DOWNLOAD_DELAY = 3 +# The download delay setting will honor only one of: +#CONCURRENT_REQUESTS_PER_DOMAIN = 16 +#CONCURRENT_REQUESTS_PER_IP = 16 + +# Disable cookies (enabled by default) +#COOKIES_ENABLED = False + +# Disable Telnet Console (enabled by default) +#TELNETCONSOLE_ENABLED = False + +# Override the default request headers: +#DEFAULT_REQUEST_HEADERS = { +# 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', +# 'Accept-Language': 'en', +#} + +# Enable or disable spider middlewares +# See http://scrapy.readthedocs.org/en/latest/topics/spider-middleware.html +#SPIDER_MIDDLEWARES = { +# 'soufang.middlewares.SoufangSpiderMiddleware': 543, +#} + +# Enable or disable downloader middlewares +# See http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html +#DOWNLOADER_MIDDLEWARES = { +# 'soufang.middlewares.MyCustomDownloaderMiddleware': 543, +#} + +# Enable or disable extensions +# See http://scrapy.readthedocs.org/en/latest/topics/extensions.html +#EXTENSIONS = { +# 'scrapy.extensions.telnet.TelnetConsole': None, +#} + +# Configure item pipelines +# See http://scrapy.readthedocs.org/en/latest/topics/item-pipeline.html +#ITEM_PIPELINES = { +# 'soufang.pipelines.SomePipeline': 300, +#} + +# Enable and configure the AutoThrottle extension (disabled by default) +# See http://doc.scrapy.org/en/latest/topics/autothrottle.html +#AUTOTHROTTLE_ENABLED = True +# The initial download delay +#AUTOTHROTTLE_START_DELAY = 5 +# The maximum download delay to be set in case of high latencies +#AUTOTHROTTLE_MAX_DELAY = 60 +# The average number of requests Scrapy should be sending in parallel to +# each remote server +#AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0 +# Enable showing throttling stats for every response received: +#AUTOTHROTTLE_DEBUG = False + +# Enable and configure HTTP caching (disabled by default) +# See http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings +#HTTPCACHE_ENABLED = True +#HTTPCACHE_EXPIRATION_SECS = 0 +#HTTPCACHE_DIR = 'httpcache' +#HTTPCACHE_IGNORE_HTTP_CODES = [] +#HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage' diff --git a/soufang/soufang/settings.pyc b/soufang/soufang/settings.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf39aa809e977ec34ece4a9e4bfc3cd99476200e GIT binary patch literal 299 zcmZSn%*)ky%OfJ00SXv_v;zjlag8YH{gF_-h;{BamBQ=0h3<#pw3CPtCEe2Ys zUjlSVMq*xNrhY(Waz@J!~*@|{L(a_5(Hh4nF7)mAD@|*SrQ+wS5R5P V0W{7gH$SB`C)EyQX)zEp002O6CgcDB literal 0 HcmV?d00001 diff --git a/soufang/soufang/spiders/soufang_spider.py b/soufang/soufang/spiders/soufang_spider.py new file mode 100644 index 0000000..fe5531c --- /dev/null +++ b/soufang/soufang/spiders/soufang_spider.py @@ -0,0 +1,94 @@ +# -*- coding:utf-8 -*- +import scrapy +from scrapy.contrib.spiders import CrawlSpider, Rule +from scrapy.contrib.linkextractors import LinkExtractor +from scrapy.selector import Selector +from soufang.items import SoufangItem +from scrapy.http import Request +import threading + + +class SoufangSpider(CrawlSpider): + + name = 'soufang' + allowed_domains = ['fang.com'] + start_urls = ["http://newhouse.fang.com/house/s/"] + q = threading.Lock() + #rules = [Rule(LinkExtractor(allow='http://[a-z]+\.fang\.com/?ctm=1'), 'parse_bj', follow=True)] + + + def parse(self, response): + sel = Selector(response) + filename = "body" + with open(filename, "wb") as f: + f.write(response.body) + + urls = sel.xpath('//li/div/div/a/@href').extract() + print "urls", urls, len(urls) + page_num = 0 + + for url in urls: + print url + try: + request = Request(url, callback=self.parse_detail) + self.q.acquire() + page_num += 1 + request.meta['num'] = page_num + self.q.release() + yield request + except Exception as e: + log_text = "ERROR:" + url + + + def parse_detail(self, response): + + sel = Selector(response) + soufang = SoufangItem() + page_num = response.meta['num'] + filename = "./page/peking" + str(page_num) + + soufang["url"] = response.url + print "#" * 30 + print response.url + print page_num + print "#" * 30 + + # print response.body + # print "$" * 30 + + title = sel.xpath('//div[@id="daohang"]/div/dl/dd/div/h1/a/text()').extract() + if len(title) == 0: + title = sel.xpath('//title/text()').extract()[0] + title = title.strip().split("-") + if len(title) != 0: + print title[0].strip() + else: + title = title[0].strip() + print title + """ + with open(filename, "wb") as f: + f.write(response.body) + """ + + def parse_bj(self, response): + + soufang = SoufangItem() + soufang["url"] = response.url + """ + soufang["url"] = response.url.split("/").split(".")[0] + + filename = response.url + with open(filename, 'wb') as f: + f.write(response.body) + """ + """ + for item in response.xpath("//div[@class='nlc_details']"): + + soufang['position'] = + soufang['avg_money'] = + soufang['residence'] = + + soufang['residence'] = item.xpath("a/text()") + """ + + return soufang \ No newline at end of file diff --git a/soufang/soufang/spiders/soufang_spider.pyc b/soufang/soufang/spiders/soufang_spider.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbb5e83089a9f11af20755519b025b7a4172989b GIT binary patch literal 2647 zcmcgu-ESL35TCvCcWfHcrXe6IQFw5L@CosNR0UKKsw7g?mb0M6sIo4;O?=LM<#tUH zWWNv|c;o-$FW{|0{R7}PvnDCL7biP6J3F^KAHSJB|5dLu|LoxTgjPQv&j%RhSCAP0 zic+GH<2_0hWgd+@%6uC6q*%kJv_@H-Ms+u@QQDxaNu#El*C}mL)}~S0%^Q?ao4YienRd!qiCDY1UwO5D)|lu8mq0*Mwk(m!LnOa-k4}x5uO^dnFgMStSnFc19aD3P=-iEC;e}Y(|g`!JEOEGZi zlU1}38!tWjZHtyQTGVLfvD(aMP4x`^eDi$a(X7U1Lo}1TRez9LGNRhN`_{5USbL7ab`SdP##aahC`mZNfZXl~&V z1Zfh)$&WIk;K8)gN1`~dQjY6PMif>jxe{PqEoy0TJht$n4+#k|Pr(J>8eN&d0;ba_zes|o7n5mJWlyVOhFUX$ znN(33tRQ{;l*+}bgZkLWd{ACU*d!*LE%Ondrn;)3Hq>ozQ{7YzuczwDSDUJ*Iv73G zRyULYpFz(a?_!u&Ag==-ZeIevzF=JHU>mSUnZj>?A28kmwz&XM45$sCb^vq$`_|sR zli~^F?_Wz%9H<5qH(rtw2ZRwlpcoQB`oyE^cj6j?8bg1jhNW$Xb}k5kIdF{S|Gw{2 z^^&*a7o6(e{^?7~H~%ekd%?0R=!c9f!<}#taDIbQpCtKlc!z_+IsGtU)(k)bE`=W+ zB=Hw_G}AP$7K zlEcFrEM8~wHm`9R7+WQ!!uBFb|58%ATefzv+5a6t6B z09#M31A=YU0u0;rO#pKnVBAof-ny#S1c(em9=rS|+YcZj&uG7lB=lav-wqx_xzQd= zY=m`j$l^t`Vl@4and!rbzls6w0lauf!-VE0c?O_$FE10!3v)zLP9RYNduYE#D^YQsL5F^~M2il*|Y&#2MJkM-B# Date: Thu, 8 Dec 2016 23:33:04 +0800 Subject: [PATCH 168/210] =?UTF-8?q?=E5=8A=A8=E6=80=81=E8=A7=84=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- House_Robber_II.py | 31 +++++++++++++++++++++++++++++++ Super_Ugly_Number.py | 12 ++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 House_Robber_II.py create mode 100644 Super_Ugly_Number.py diff --git a/House_Robber_II.py b/House_Robber_II.py new file mode 100644 index 0000000..53f088b --- /dev/null +++ b/House_Robber_II.py @@ -0,0 +1,31 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-07 10:58:56 PM +# Last modified : 2016-12-08 11:32:35 PM +# File Name : House_Robber_II.py +# Desc : +class Solution(object): + def rob(self, nums): + n = len(nums) + dp = [[0,0] for i in range(n)] + #dp[0][1] = nums[0] + for i in range(1, n): + dp[i][0] = max(dp[i - 1][0], dp[i - 1][1]) + dp[i][1] = max(dp[i - 1][0], dp[i][1]) + nums[i] + + ret1 = max(dp[n - 1][0], dp[n - 1][1]) + dp = [[0,0] for i in range(n)] + dp[0][1] = nums[0] + dp[1][0] = nums[0] + for i in range(2, n): + dp[i][0] = max(dp[i - 1][0], dp[i - 1][1]) + dp[i][1] = max(dp[i - 1][0], dp[i][1]) + nums[i] + return max(ret1, dp[n - 1][0]) + + +if __name__ == "__main__": + s = Solution() + nums = [1,2,3,4,5,6] + print s.rob(nums) diff --git a/Super_Ugly_Number.py b/Super_Ugly_Number.py new file mode 100644 index 0000000..641ca60 --- /dev/null +++ b/Super_Ugly_Number.py @@ -0,0 +1,12 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-05 02:44:14 PM +# Last modified : 2016-12-05 02:44:18 PM +# File Name : Super_Ugly_Number.py +# Desc : + + +if __name__ == "__main__": + s = Solution() From b996e5cd98ed83eb14057f94d492f9a3a9d5f8eb Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 8 Dec 2016 23:35:50 +0800 Subject: [PATCH 169/210] =?UTF-8?q?=E5=8A=A8=E6=80=81=E8=A7=84=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- soufang/body | 5731 ++++++++++++++++++ soufang/page/peking10 | 4658 +++++++++++++++ soufang/page/peking11 | 4593 ++++++++++++++ soufang/page/peking12 | 4456 ++++++++++++++ soufang/page/peking13 | 4178 +++++++++++++ soufang/page/peking14 | 4855 +++++++++++++++ soufang/page/peking15 | 3773 ++++++++++++ soufang/page/peking16 | 4240 +++++++++++++ soufang/page/peking17 | 4144 +++++++++++++ soufang/page/peking18 | 5186 ++++++++++++++++ soufang/page/peking19 | 4708 +++++++++++++++ soufang/page/peking2 | 5030 ++++++++++++++++ soufang/page/peking20 | 6304 ++++++++++++++++++++ soufang/page/peking21 | 4153 +++++++++++++ soufang/page/peking3 | 4281 +++++++++++++ soufang/page/peking4 | 4133 +++++++++++++ soufang/page/peking5 | 5732 ++++++++++++++++++ soufang/page/peking6 | 5831 ++++++++++++++++++ soufang/page/peking7 | 4201 +++++++++++++ soufang/page/peking8 | 5219 ++++++++++++++++ soufang/page/peking9 | 4258 +++++++++++++ soufang/s | 5728 ++++++++++++++++++ soufang/scrapy.cfg | 11 + soufang/soufang/__init__.py | 0 soufang/soufang/__init__.pyc | Bin 0 -> 153 bytes soufang/soufang/items.py | 17 + soufang/soufang/items.pyc | Bin 0 -> 520 bytes soufang/soufang/middlewares.py | 56 + soufang/soufang/pipelines.py | 11 + soufang/soufang/settings.py | 90 + soufang/soufang/settings.pyc | Bin 0 -> 299 bytes soufang/soufang/spiders/__init__.py | 4 + soufang/soufang/spiders/__init__.pyc | Bin 0 -> 161 bytes soufang/soufang/spiders/soufang_spider.py | 94 + soufang/soufang/spiders/soufang_spider.pyc | Bin 0 -> 2647 bytes soufang/test.json | 0 36 files changed, 105675 insertions(+) create mode 100644 soufang/body create mode 100644 soufang/page/peking10 create mode 100644 soufang/page/peking11 create mode 100644 soufang/page/peking12 create mode 100644 soufang/page/peking13 create mode 100644 soufang/page/peking14 create mode 100644 soufang/page/peking15 create mode 100644 soufang/page/peking16 create mode 100644 soufang/page/peking17 create mode 100644 soufang/page/peking18 create mode 100644 soufang/page/peking19 create mode 100644 soufang/page/peking2 create mode 100644 soufang/page/peking20 create mode 100644 soufang/page/peking21 create mode 100644 soufang/page/peking3 create mode 100644 soufang/page/peking4 create mode 100644 soufang/page/peking5 create mode 100644 soufang/page/peking6 create mode 100644 soufang/page/peking7 create mode 100644 soufang/page/peking8 create mode 100644 soufang/page/peking9 create mode 100644 soufang/s create mode 100644 soufang/scrapy.cfg create mode 100644 soufang/soufang/__init__.py create mode 100644 soufang/soufang/__init__.pyc create mode 100644 soufang/soufang/items.py create mode 100644 soufang/soufang/items.pyc create mode 100644 soufang/soufang/middlewares.py create mode 100644 soufang/soufang/pipelines.py create mode 100644 soufang/soufang/settings.py create mode 100644 soufang/soufang/settings.pyc create mode 100644 soufang/soufang/spiders/__init__.py create mode 100644 soufang/soufang/spiders/__init__.pyc create mode 100644 soufang/soufang/spiders/soufang_spider.py create mode 100644 soufang/soufang/spiders/soufang_spider.pyc create mode 100644 soufang/test.json diff --git a/soufang/body b/soufang/body new file mode 100644 index 0000000..2d6e0d7 --- /dev/null +++ b/soufang/body @@ -0,0 +1,5731 @@ + + + + + + + + + + +¥̡_¥_-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                          ų
                                                          +
                                                          ABCDFGH
                                                          +
                                                          JKLMNQST
                                                          +
                                                          WXYZ
                                                          + +
                                                          + +
                                                          + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                          + + + + + + + +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                            + + +
                                                          • Ͷ
                                                          • + +
                                                          • +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          + ͼ + б +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + + + +
                                                          +
                                                          +
                                                          + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + ¥ + + Դ + ֪ѧУ +
                                                          +
                                                          + ҷ +
                                                          + +
                                                          +
                                                            +
                                                          • +
                                                          • + + + + + ƽ + + ɽ + + ͨ + + + + ̨ + + ˳ + + + + ͷ + + + + + + + + + + ʯɽ + + ƽ + + + + + + ȷ + + + + + + ػʵ + + ̰ + + + + + + + + + + ׯ + + ܱ + + + + +
                                                          • +
                                                          +
                                                          + + +
                                                          + +
                                                          + +
                                                          +
                                                          + +
                                                          +
                                                          +  - + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                            +
                                                          • +
                                                          • + + + һ + + + + + + ľ + + + + + +
                                                          • +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          ɫ
                                                          + +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + +
                                                          + + +
                                                          + + +
                                                          վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                          + +
                                                          +

                                                          ṩ2016¥̼Ϣο±רҵıṩʵʱı¥, ¥ϢԼ۲ѯԲ鵽¥̵ĴŻԼŹΪҵʺϵı·Ϣ

                                                          +
                                                          +
                                                          + + + + + + + + + +
                                                          +
                                                          + + վ + ϵ + ƸϢ + ¼
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          BزDݸز Ϸز ز ز
                                                          Cɶز ز ϷʷزQൺزT򷿵ز
                                                           췿زFݷزJϷزSϺزW人ز
                                                           ɳزGݷزNϾز ڷز ز
                                                           ز ز ϲز ݷزXز
                                                           ݷزHݷز ز ʯׯزZ֣ݷز
                                                          + +
                                                          + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                          + +
                                                          Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                          +
                                                          ϺϢƼ޹˾ Ȩ
                                                          +
                                                          ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                          + +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking10 b/soufang/page/peking10 new file mode 100644 index 0000000..b5146fd --- /dev/null +++ b/soufang/page/peking10 @@ -0,0 +1,4658 @@ + + + + + ʢ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          + + + +
                                                          + + + + + + + + + + + + + + + + +
                                                          + + +
                                                          + + + + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                          ų
                                                          +
                                                          ABCDFGH
                                                          +
                                                          JKLMNQST
                                                          +
                                                          WXYZ
                                                          + +
                                                          + +
                                                          + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                          + + + + + + + +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                            + + +
                                                          • Ͷ
                                                          • + +
                                                          • +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + + + + + +
                                                          +
                                                          + + + + + + + + + + + + + +
                                                          + + + + + + +
                                                          +
                                                          +
                                                          +
                                                          + ɨ赽ֻ ¥ʱ +
                                                          +
                                                          +
                                                          + +

                                                          ʢ

                                                          + + + + + + + + +
                                                          +
                                                          +
                                                          + ̼ + ַ + ʽز +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          + + + +
                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          + + + +
                                                          +
                                                          + + + + + + + + + + + + + + + + +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                            +
                                                          • +
                                                            +
                                                            + ʢЧͼ + +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            +
                                                            + ʢŽͨͼ + +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            +
                                                            + ʢʵͼ + +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            +
                                                            + ʢ + +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            +
                                                            + ʢŻֳ + +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            +
                                                            + ʢܱͼ + +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            +
                                                            + ʢŻͼ + +
                                                            +
                                                            +
                                                          • +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + + +
                                                          +
                                                          +
                                                          +

                                                          + ƽ۸ 14000 Ԫ/ƽ +

                                                          +
                                                          + + +
                                                          + + 鿴۸ + +
                                                          +
                                                          + + + +
                                                          + +
                                                          + + + + + ֪ͨ + + + + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + +
                                                          + + +
                                                          +
                                                          +

                                                          ûۣ

                                                          +
                                                          +
                                                          +
                                                          + +
                                                            + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + + + +
                                                          +

                                                          ¥̵ַ  ݱ·9

                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +

                                                          ͣ  + + + + һ(62O)    + + + + (94O)    + + + + (112O)    +

                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +

                                                          ϸϢ>>

                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          +
                                                            + +
                                                          • + ղ + + + + + +
                                                          • + +
                                                          • + ¥̶Ա +
                                                          • +
                                                          • + + ɨ赽ֻ + + + + +
                                                          • +
                                                          +
                                                          + + + + +
                                                          + +
                                                          +
                                                          +

                                                          ¥绰400-890-0000 ת 659390

                                                          +
                                                          + + + + +
                                                          + + + + + +
                                                          + + + + +
                                                          +
                                                          + + +
                                                          + + + + + + + +
                                                          +
                                                          + + + + + + + +
                                                          + +
                                                          +
                                                          +
                                                          >
                                                          +
                                                          +

                                                          ʢ¥̶̬

                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +

                                                          ʢҵ̳

                                                          + 10268 +
                                                          + + ͼ + Ȧ
                                                          + + +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          +
                                                          +
                                                          + > +
                                                          +
                                                          +

                                                          ʢѶ/֪ʶ

                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + > +
                                                          +
                                                          +

                                                          ʢ¥ʴ

                                                          +
                                                          +
                                                          +
                                                          +
                                                            +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          + + + + + + + +
                                                          + + + + + + + +
                                                          +
                                                          +
                                                          +
                                                          +

                                                          ʢ¥Ϣ

                                                          +
                                                          +
                                                          + + + +
                                                          +
                                                          + + + + +
                                                          + +
                                                          +
                                                          ʢ¥б
                                                          +
                                                          + +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          +
                                                          + + + + + +
                                                          +
                                                          + +
                                                          + һ(8)| + (10)| + (3)| + + > +
                                                          + +
                                                          +

                                                          ʢŻͼ(21)

                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          +
                                                          ѡ/¥㼼
                                                          +
                                                          >
                                                          +
                                                          + +
                                                          + +
                                                          + + +
                                                          +
                                                          + +
                                                          + ͼ(21)| + ͨͼ(2)| + ʵͼ(32)| + Чͼ(11)| + (9)| + ֳ(1)| + ͼ(31)| + > +
                                                          + +
                                                          +

                                                          ʢ¥(107)

                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          + +
                                                          + +
                                                          + + + +
                                                          +
                                                          + +
                                                          +
                                                          + + + + +
                                                          +
                                                          + + +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + +
                                                          + + +

                                                          + +

                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + +
                                                          +

                                                          + ظ0 + 1 + s***9 2016-11-30 13:33:00  iPhoneͻ +

                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + +
                                                          +

                                                          + ظ0 + 3 + s***7 2016-10-22 11:16:32  Androidͻ +

                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + +
                                                          +

                                                          + ظ0 + 3 + s***3 2016-09-18 09:22:01  PC +

                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +

                                                          ʢPK

                                                          +
                                                          +
                                                          +
                                                          • ͬ
                                                          • ͬ۸
                                                          +
                                                          +
                                                          + + +
                                                            + +
                                                          +
                                                          +
                                                          + + + +
                                                          + +
                                                          +
                                                          + + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + + + + + + + + +
                                                          + +
                                                          +
                                                          + + + + +
                                                          +
                                                          +
                                                            +
                                                          • ܸȤ¥
                                                          • +
                                                          • ͬλ¥
                                                          • +
                                                          +
                                                          +
                                                          +
                                                          +
                                                            +
                                                            +
                                                            + + +
                                                            +
                                                            +
                                                            + + + + + + + + + + + + +
                                                            +
                                                            +
                                                            +
                                                            + ȫ> +
                                                            +
                                                            +

                                                            ¥

                                                            +
                                                            +
                                                            +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            + ¥ + + + + ۸ + + ̳ + + Ա +
                                                            + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                            + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                            + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                            + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                            + 5 + + + + + + -- + + BBS + +
                                                            + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                            + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                            + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                            + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + ȫ> +
                                                            +
                                                            +

                                                            ¥

                                                            +
                                                            +
                                                            +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            + ¥ + + + + ۸ + + ̳ + + Ա +
                                                            + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                            + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                            + 3 + ά + + + + + -- + + -- + + +
                                                            + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                            + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                            + 6 + ŵɽ + + + + + -- + + -- + + +
                                                            + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                            + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                            + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + ȫ> +
                                                            +
                                                            +

                                                            ¿

                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            + + + +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            +
                                                            +
                                                            +
                                                            + + + +
                                                            +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                            + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                            + 3 + + + + + + -- + + BBS + +
                                                            + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                            + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                            + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                            + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                            + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                            + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + + +
                                                            +
                                                            +
                                                            +
                                                            + + +
                                                            + + +
                                                            + + + + +
                                                            +
                                                            +
                                                            + +
                                                            + ɫ¥|ȫ> +
                                                            + +
                                                            +

                                                            ¥Ƽ

                                                            +
                                                            +
                                                            + +
                                                            + + +
                                                            +
                                                            + + + +
                                                            + + + + +
                                                            + + + + + + +
                                                            վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                            + + + + + +
                                                            +
                                                            + + վ + ϵ + ƸϢ + ¼
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            BزDݸز Ϸز ز ز
                                                            Cɶز ز ϷʷزQൺزT򷿵ز
                                                             췿زFݷزJϷزSϺزW人ز
                                                             ɳزGݷزNϾز ڷز ز
                                                             ز ز ϲز ݷزXز
                                                             ݷزHݷز ز ʯׯزZ֣ݷز
                                                            + +
                                                            + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                            + +
                                                            Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                            +
                                                            ϺϢƼ޹˾ Ȩ
                                                            +
                                                            ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                            + +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking11 b/soufang/page/peking11 new file mode 100644 index 0000000..ebdb3c9 --- /dev/null +++ b/soufang/page/peking11 @@ -0,0 +1,4593 @@ + + + + + TOWN-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            +
                                                            + + +
                                                            + + + + + + + + + + + + + + + +
                                                            + + +
                                                            + + + + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + +
                                                            +
                                                            ų
                                                            +
                                                            ABCDFGH
                                                            +
                                                            JKLMNQST
                                                            +
                                                            WXYZ
                                                            + +
                                                            + +
                                                            + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                            + + + + + + + +
                                                            + +
                                                            +
                                                            + + +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            + + +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                              + + +
                                                            • Ͷ
                                                            • + +
                                                            • +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            +
                                                            +
                                                            + + +
                                                            +
                                                            +
                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                            + + +
                                                            +
                                                            + +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            + + + + + +
                                                            +
                                                            + + + + + + + + + + + + + +
                                                            + + + + + + + + +
                                                            + + + + + +
                                                            +
                                                            + +
                                                            +
                                                              +
                                                            • +
                                                              + TOWNЧͼ + +
                                                              +
                                                            • +
                                                            • +
                                                              + TOWNͨͼ + +
                                                              +
                                                            • +
                                                            • +
                                                              + TOWN⾰ͼ + +
                                                              +
                                                            • +
                                                            • +
                                                              + TOWN + +
                                                              +
                                                            • +
                                                            • +
                                                              + TOWNܱͼ + +
                                                              +
                                                            • +
                                                            • +
                                                              + TOWNͼ + +
                                                              +
                                                            • +
                                                            +
                                                            + + +
                                                            +
                                                            + +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + + + +
                                                            + + + + +
                                                            +
                                                            +

                                                            ¥绰400-890-0000 ת 660836

                                                            +
                                                            + + + + +
                                                            + + + + + + +
                                                            + + + + + + + +
                                                            + +
                                                            + + + + +
                                                            + +
                                                            + + + +
                                                            +
                                                            + + + +
                                                            +
                                                            +
                                                            + +
                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                            + +
                                                              +
                                                            + + +
                                                            +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            +
                                                            + +
                                                            +
                                                            +

                                                            TOWN

                                                            +
                                                            + һ(4)| + (11)| + (7)| + > +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +

                                                            TOWNH8  2211   83O() +   

                                                            +

                                                            ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                                            +

                                                            ͽռ䷽ս٣ѶȵͣռʡռɹܺãԺͿܹ֤... +

                                                            +

                                                            + ϱͨ͸ͷ

                                                            +
                                                            + 149.4 +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +

                                                            TOWND3  3211   89O() +   

                                                            +

                                                            ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                                            +

                                                            ͽռ䷽ս٣ѶȵͣռʡռɹܺãԺͿܹ֤... +

                                                            +

                                                            + ϱͨ͸Ϳͷ

                                                            +
                                                            + 160.2 +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +

                                                            TOWNA6  3221   130O() +   

                                                            +

                                                            ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                                            +

                                                            ͽռ䶼ܷڼҾߵİڷšȫͨ͸ĻͣסʶȽϸߡռгIJɹ⣬һ... +

                                                            +

                                                            + ϱͨ͸Ϳͷ

                                                            +
                                                            + 235.3 +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + + +
                                                            + + + + + + + + +
                                                            +

                                                            TOWN¥Ϣ

                                                            +
                                                            + + + + + +
                                                            +
                                                            + +
                                                            + 15# + 17# + 13# + 16# + 10# + 7# + 12# + D5# + 6# + 9# + 4# + 8# + 3# + D18# + 1# + 14# + 11# + 2# +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                              +
                                                            • Ԫ2
                                                            • 12
                                                            • ߲
                                                            • ¥19
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • Ԫ1
                                                            • 24
                                                            • ߲
                                                            • ¥19
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • Ԫ2
                                                            • 12
                                                            • ߲
                                                            • ¥19
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                              +
                                                            • Ԫ2
                                                            • 24
                                                            • ߲
                                                            • ¥28
                                                            • 224
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                              +
                                                            • 24
                                                            • ߲
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            + + +
                                                            +
                                                            + +
                                                            +
                                                            +

                                                            TOWN

                                                            99
                                                            + >> +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                            +
                                                            + + + + + + +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            + +

                                                            TOWNѶ

                                                            +
                                                            + Ѷ + ֪ʶ + ʴ +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            Ѷ +

                                                            TOWNɽ

                                                            +
                                                            +
                                                            +
                                                            +
                                                            Ѷ +

                                                            TOWNɽ,һ˵µĵط

                                                            +
                                                            +
                                                            + + +
                                                            +
                                                            ֪ʶ +

                                                            ˣסڼȫ

                                                            +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            + + + + +
                                                            + + + +
                                                            +
                                                            + +
                                                            +
                                                            + + + + +
                                                            + +
                                                            +
                                                            + +
                                                            + ͼ(22)| + ͨͼ(5)| + ʵͼ(44)| + Чͼ(44)| + (19)| + ͼ(10)| + > +
                                                            + +
                                                            +

                                                            TOWN¥

                                                            (144)

                                                            +
                                                            +
                                                            + +
                                                            + +
                                                            + +
                                                            +
                                                            +
                                                            +

                                                            TOWN

                                                            + >> +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            ¥̣סլ12ͼ۸
                                                            +
                                                            + + 18000Ԫ/O + + + + 0%
                                                            +
                                                            ·11¾ۣסլ
                                                            40948Ԫ/O0%
                                                            +
                                                            ַ̰11¾ۣסլ
                                                            16271Ԫ/O8.83%
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + + + + +
                                                            +
                                                            +
                                                            TOWN
                                                            >>
                                                            +
                                                            +
                                                            + +
                                                            +

                                                            +

                                                            ѡټ㷿

                                                            +
                                                            +
                                                            +
                                                            ѡͣ
                                                            +
                                                            +
                                                            + ѡ +
                                                            +
                                                              + +
                                                            • 2211 83.00ƽ
                                                            • + +
                                                            • 3211 89.00ƽ
                                                            • + +
                                                            • 3212 130.70ƽ
                                                            • +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            ܼۣ
                                                            +
                                                            +
                                                            +
                                                            +
                                                            ׸
                                                            +
                                                            +
                                                            + 3 + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + ҵ + +
                                                            +
                                                            +
                                                            + + +
                                                            +
                                                            ʱ䣺
                                                            +
                                                            +
                                                            + 30꣨360ڣ + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                             
                                                            +
                                                             ȶϢ     ȶ +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +

                                                            ˵

                                                            +
                                                            +
                                                            +
                                                            +

                                                            ¾Ԫ

                                                            + +
                                                              +
                                                            • ο׸
                                                            • +
                                                            • +
                                                            • ֧Ϣ
                                                            • +
                                                            • ʹ3.25%
                                                            • +
                                                            • ҵ4.9%
                                                            • +
                                                            +

                                                            >>

                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            +
                                                              +
                                                            • ϲ
                                                            • +
                                                            +
                                                            +
                                                            +
                                                              +
                                                              + + +
                                                              +
                                                              +
                                                              + + + + + + + + +
                                                              + + + + + + +
                                                              +
                                                              +
                                                              +
                                                              + ȫ> +
                                                              +
                                                              +

                                                              ¥ +

                                                              +
                                                              +
                                                              +
                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                              ¥۸̳
                                                              + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                              + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                              + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                              + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                              + 5 + + + + + -- + + BBS + 3.88 +
                                                              + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                              + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                              + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                              + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                              + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + ȫ> +
                                                              +
                                                              +

                                                              ¥

                                                              +
                                                              +
                                                              +
                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                              ¥۸̳
                                                              + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                              + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                              + 3 + ά + + + + -- + + -- + 0.00 +
                                                              + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                              + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                              + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                              + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                              + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                              + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                              + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + ȫ> +
                                                              +
                                                              +

                                                              ¿

                                                              +
                                                              +
                                                              + +
                                                              +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              +
                                                              +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                                                                + 3 + + + + + -- + + BBS + 4.30 +
                                                                + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + + + +
                                                                + + + + +
                                                                +
                                                                +
                                                                + +
                                                                + ɫ¥|ȫ> +
                                                                + +
                                                                +

                                                                ¥Ƽ

                                                                +
                                                                +
                                                                + +
                                                                + + +
                                                                +
                                                                + + + +
                                                                +
                                                                +
                                                                +
                                                                +

                                                                ֻ鿴TOWN + ؼ +

                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                ¥
                                                                +
                                                                + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                +
                                                                +
                                                                +
                                                                з
                                                                +
                                                                + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                +
                                                                +
                                                                +
                                                                + + + +
                                                                +
                                                                +
                                                                +
                                                                +

                                                                ¥

                                                                +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + + + +
                                                                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                + + + +
                                                                +
                                                                + + վ + ϵ + ƸϢ + ¼
                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                BزDݸز Ϸز ز ز
                                                                Cɶز ز ϷʷزQൺزT򷿵ز
                                                                 췿زFݷزJϷزSϺزW人ز
                                                                 ɳزGݷزNϾز ڷز ز
                                                                 ز ز ϲز ݷزXز
                                                                 ݷزHݷز ز ʯׯزZ֣ݷز
                                                                + +
                                                                + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                + +
                                                                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                +
                                                                ϺϢƼ޹˾ Ȩ
                                                                +
                                                                ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                + +
                                                                + + + + + + + +
                                                                + + + + + + + + + + + + + +
                                                                + + + + + + + + +
                                                                + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking12 b/soufang/page/peking12 new file mode 100644 index 0000000..0e7e4f2 --- /dev/null +++ b/soufang/page/peking12 @@ -0,0 +1,4456 @@ + + + + + Ͷ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                +
                                                                + + +
                                                                + + + + + + + + + + + + + + + +
                                                                + + +
                                                                + + + + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + +
                                                                +
                                                                ų
                                                                +
                                                                ABCDFGH
                                                                +
                                                                JKLMNQST
                                                                +
                                                                WXYZ
                                                                + +
                                                                + +
                                                                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                + + + + + + + +
                                                                + +
                                                                +
                                                                + + +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + + +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                  + + +
                                                                • Ͷ
                                                                • + +
                                                                • +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                +
                                                                +
                                                                + + +
                                                                +
                                                                +
                                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                                + + +
                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                + + + + + +
                                                                +
                                                                + + + + + + + + + + + + + +
                                                                + + + + + + + + +
                                                                + + + + + +
                                                                +
                                                                + +
                                                                +
                                                                  +
                                                                • +
                                                                  + ͶЧͼ + +
                                                                  +
                                                                • +
                                                                • +
                                                                  + Ͷ̽ͨͼ + +
                                                                  +
                                                                • +
                                                                • +
                                                                  + Ͷʵͼ + +
                                                                  +
                                                                • +
                                                                • +
                                                                  +
                                                                  + ͶƵ + + +
                                                                  +
                                                                • +
                                                                • +
                                                                  + Ͷȫ + +
                                                                  +
                                                                • +
                                                                • +
                                                                  + Ͷ + +
                                                                  +
                                                                • +
                                                                • +
                                                                  + Ͷ̻ֳ + +
                                                                  +
                                                                • +
                                                                • +
                                                                  + Ͷܱͼ + +
                                                                  +
                                                                • +
                                                                • +
                                                                  + Ͷ̻ͼ + +
                                                                  +
                                                                • +
                                                                +
                                                                + + +
                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + + +
                                                                + + + + +
                                                                +
                                                                +

                                                                ¥绰400-890-0000 ת 662453

                                                                +
                                                                + + + + +
                                                                + + + + + + +
                                                                + + + + + + + +
                                                                + +
                                                                + + + + +
                                                                + +
                                                                + + + +
                                                                +
                                                                + + + +
                                                                +
                                                                +
                                                                + +
                                                                + + + + + + + + + + + + + + + + + + + + + + + +
                                                                + +
                                                                  +
                                                                + + +
                                                                +
                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                + + +
                                                                +
                                                                +
                                                                +
                                                                + ̬ +

                                                                + ද̬>> + Ͷ̲ƷϢ2016-12-08 +

                                                                +
                                                                +
                                                                +

                                                                + Ͷ̶ڷԴ̲ƷԤУ忪Ϣע + Ķȫ>

                                                                +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                +

                                                                Ͷ̻

                                                                +
                                                                + (4)| + (3)| + > +
                                                                +
                                                                + +
                                                                + + + +
                                                                + + + + + + + + +
                                                                +

                                                                Ͷ¥Ϣ

                                                                +
                                                                + + + +
                                                                + + + + + +
                                                                + +
                                                                +
                                                                + +
                                                                + 14# + 13# + 23# + 28# + 25# + 22# + 26# + 17# + 16# + 15# + 27# + 24# + 18# + 21# +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • ¥8
                                                                • 32
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • ¥8
                                                                • 180
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ2
                                                                • 24
                                                                • ¥
                                                                • ¥15
                                                                • 115
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • С߲
                                                                • ¥15
                                                                • 115
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • Ͳ
                                                                • ¥12
                                                                • 91
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • ¥
                                                                • ¥12
                                                                • 91
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ2
                                                                • 24
                                                                • ¥
                                                                • ¥15
                                                                • 115
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ1
                                                                • 12
                                                                • С߲
                                                                • ¥9
                                                                • 36
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ1
                                                                • 12
                                                                • С߲
                                                                • ¥9
                                                                • 36
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ1
                                                                • 12
                                                                • С߲
                                                                • ¥8
                                                                • 32
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • ¥
                                                                • ¥15
                                                                • 116
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • ¥
                                                                • ¥12
                                                                • 92
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ1
                                                                • 12
                                                                • ¥9
                                                                • 36
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                • Ԫ4
                                                                • 12
                                                                • ¥
                                                                • ¥13
                                                                • 84
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                +
                                                                + +
                                                                +
                                                                +

                                                                Ͷ̵

                                                                83
                                                                + >> +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                + +

                                                                ͶѶ

                                                                +
                                                                + Ѷ + ֪ʶ + ʴ +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                Ѷ +

                                                                Ͷô λúͼ۸Ʒ

                                                                +
                                                                +
                                                                +
                                                                +
                                                                Ѷ +

                                                                סͶ,úӮϡͶ̾˾ѧ

                                                                +
                                                                +
                                                                + + +
                                                                +
                                                                ֪ʶ +

                                                                ˣסڼȫ

                                                                +
                                                                +
                                                                + + +
                                                                +
                                                                ʴ +

                                                                ˭ԸҾͶô

                                                                +
                                                                +
                                                                + + +
                                                                +
                                                                ʴ +

                                                                Ͷװֺһ

                                                                +
                                                                +
                                                                + + + + + + + + +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                + + + + +
                                                                + + + +
                                                                +
                                                                + +
                                                                +
                                                                + + + + +
                                                                + +
                                                                +
                                                                + +
                                                                + ͼ(7)| + ͨͼ(2)| + ʵͼ(64)| + Чͼ(5)| + (48)| + ֳ(8)| + ͼ(72)| + > +
                                                                + +
                                                                +

                                                                Ͷ¥

                                                                (206)

                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                +

                                                                Ͷ̷

                                                                + >> +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                ¥̣סլ12¼۸
                                                                +
                                                                + + + 0%
                                                                +
                                                                ·11¾ۣסլ
                                                                40948Ԫ/O0%
                                                                +
                                                                ɽַ11¾ۣסլ
                                                                28997Ԫ/O1.62%
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + + + + +
                                                                +
                                                                +
                                                                Ͷ̷
                                                                >>
                                                                +
                                                                +
                                                                + +
                                                                +

                                                                +

                                                                ѡټ㷿

                                                                +
                                                                +
                                                                +
                                                                ѡͣ
                                                                +
                                                                +
                                                                + ѡ +
                                                                +
                                                                  + +
                                                                • 3211 102.00ƽ
                                                                • + +
                                                                • 3211 108.00ƽ
                                                                • + +
                                                                • 2211 88.00ƽ
                                                                • +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                ܼۣ
                                                                +
                                                                +
                                                                +
                                                                +
                                                                ׸
                                                                +
                                                                +
                                                                + 3 + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + ҵ + +
                                                                +
                                                                +
                                                                + + +
                                                                +
                                                                ʱ䣺
                                                                +
                                                                +
                                                                + 30꣨360ڣ + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                 
                                                                +
                                                                 ȶϢ     ȶ +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +

                                                                ˵

                                                                +
                                                                +
                                                                +
                                                                +

                                                                ¾Ԫ

                                                                + +
                                                                  +
                                                                • ο׸
                                                                • +
                                                                • +
                                                                • ֧Ϣ
                                                                • +
                                                                • ʹ3.25%
                                                                • +
                                                                • ҵ4.9%
                                                                • +
                                                                +

                                                                >>

                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                +
                                                                  +
                                                                • ϲ
                                                                • +
                                                                +
                                                                +
                                                                +
                                                                  +
                                                                  + + +
                                                                  +
                                                                  +
                                                                  + + + + + + + + +
                                                                  + + + + + + +
                                                                  +
                                                                  +
                                                                  +
                                                                  + ȫ> +
                                                                  +
                                                                  +

                                                                  ¥ +

                                                                  +
                                                                  +
                                                                  +
                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                  ¥۸̳
                                                                  + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                  + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                  + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                  + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                  + 5 + + + + + -- + + BBS + 3.88 +
                                                                  + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                  + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                  + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                  + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                  + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  + ȫ> +
                                                                  +
                                                                  +

                                                                  ¥

                                                                  +
                                                                  +
                                                                  +
                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                  ¥۸̳
                                                                  + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                  + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                  + 3 + ά + + + + -- + + -- + 0.00 +
                                                                  + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                  + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                  + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                  + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                  + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                  + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                  + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  + ȫ> +
                                                                  +
                                                                  +

                                                                  ¿

                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  +
                                                                  +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                    + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                                                                    + 3 + + + + + -- + + BBS + 4.30 +
                                                                    + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                    + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                    + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                    + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                    + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                    + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                    + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + + + +
                                                                    + + + + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + ɫ¥|ȫ> +
                                                                    + +
                                                                    +

                                                                    ¥Ƽ

                                                                    +
                                                                    +
                                                                    + +
                                                                    + + +
                                                                    +
                                                                    + + + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    ֻ鿴Ͷ + ؼ +

                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    ¥
                                                                    +
                                                                    + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                    +
                                                                    +
                                                                    +
                                                                    з
                                                                    +
                                                                    + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    ¥

                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + +
                                                                    + + + +
                                                                    վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                    + + + +
                                                                    +
                                                                    + + վ + ϵ + ƸϢ + ¼
                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    BزDݸز Ϸز ز ز
                                                                    Cɶز ز ϷʷزQൺزT򷿵ز
                                                                     췿زFݷزJϷزSϺزW人ز
                                                                     ɳزGݷزNϾز ڷز ز
                                                                     ز ز ϲز ݷزXز
                                                                     ݷزHݷز ز ʯׯزZ֣ݷز
                                                                    + +
                                                                    + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                    + +
                                                                    Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                    +
                                                                    ϺϢƼ޹˾ Ȩ
                                                                    +
                                                                    ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                    + +
                                                                    + + + + + + + +
                                                                    + + + + + + + + + + + + + +
                                                                    + + + + + + + + +
                                                                    + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking13 b/soufang/page/peking13 new file mode 100644 index 0000000..ff9b00f --- /dev/null +++ b/soufang/page/peking13 @@ -0,0 +1,4178 @@ + + + + + -¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    +
                                                                    + + +
                                                                    + + + + + + + + + + + + + + + +
                                                                    + + +
                                                                    + + + + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    ų
                                                                    +
                                                                    ABCDFGH
                                                                    +
                                                                    JKLMNQST
                                                                    +
                                                                    WXYZ
                                                                    + +
                                                                    + +
                                                                    + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                    + + + + + + + +
                                                                    + +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                      + + +
                                                                    • Ͷ
                                                                    • + +
                                                                    • +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    +
                                                                    + + + + + + + + + + + + + + + + + + + + + + +
                                                                    + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + + + + + +
                                                                    +
                                                                    + + + + + + + + + + + + + +
                                                                    + + + + + + + + +
                                                                    + + + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                      +
                                                                    • +
                                                                      + Чͼ + +
                                                                      +
                                                                    • +
                                                                    • +
                                                                      + ͨͼ + +
                                                                      +
                                                                    • +
                                                                    • +
                                                                      + ʵͼ + +
                                                                      +
                                                                    • +
                                                                    • +
                                                                      + + +
                                                                      +
                                                                    • +
                                                                    • +
                                                                      + ֳ + +
                                                                      +
                                                                    • +
                                                                    • +
                                                                      + ܱͼ + +
                                                                      +
                                                                    • +
                                                                    • +
                                                                      + ͼ + +
                                                                      +
                                                                    • +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + + + + + +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    + + + +
                                                                    +
                                                                    +
                                                                    +
                                                                    + ̼ + ַ + ס + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    ͣ

                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +

                                                                    Ŀַ

                                                                      ·ҵѧű100
                                                                    + +
                                                                    + + + + +
                                                                    +
                                                                    +

                                                                    ϸϢ>>

                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    +

                                                                    ¥绰400-890-0000 ת 664622

                                                                    +
                                                                    + + + + +
                                                                    + + + + + + +
                                                                    + + + + + + + +
                                                                    + +
                                                                    + + + + +
                                                                    + +
                                                                    + + + +
                                                                    +
                                                                    + + + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    + +
                                                                      +
                                                                    + + +
                                                                    +
                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +

                                                                    +
                                                                    + (3)| + (7)| + ľ(3)| + (2)| + > +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    A3-3  2221   144O() +   

                                                                    +

                                                                    + ϱͨ͸ͷ

                                                                    +
                                                                    + 1195.2 +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    A3-2  2221   147O() +   

                                                                    +

                                                                    + ϱͨ͸ͷ

                                                                    +
                                                                    + 1220.1 +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    Cƽ-05  2221   150O() +   

                                                                    +

                                                                    + ϱͨ͸ͷ

                                                                    +
                                                                    + 1245 +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + + +
                                                                    + + + + + + + + +
                                                                    +

                                                                    ¥Ϣ

                                                                    +
                                                                    + + + +
                                                                    + + + + + +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + 1# + 8# + 7# + 2# + 6# + 5# + 3# + 4# + 9# +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                      +
                                                                    • ŬϢڴ
                                                                    • +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                      +
                                                                    • Ԫ3
                                                                    • 12
                                                                    • Ͳ
                                                                    • ¥4
                                                                    • 17
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +

                                                                    46
                                                                    + >> +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    +
                                                                    +
                                                                    + + + + + + +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +

                                                                    Ѷ

                                                                    +
                                                                    + Ѷ + ֪ʶ + ʴ +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    Ѷ +

                                                                    ʽû:Դͳ

                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    Ѷ +

                                                                    ӵ·ضΡθ߶¥

                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    ֪ʶ +

                                                                    ˣסڼȫ

                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    ʴ +

                                                                    ܲ˵һºô

                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    ʴ +

                                                                    ֣ԥַô?

                                                                    +
                                                                    +
                                                                    + + + + + + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + + + + +
                                                                    + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + + +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + ͼ(15)| + ͨͼ(4)| + ʵͼ(54)| + Чͼ(11)| + (29)| + ֳ(1)| + ͼ(6)| + > +
                                                                    + +
                                                                    +

                                                                    ¥

                                                                    (120)

                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +

                                                                    + >> +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    ¥̣סլ12ƽ۸
                                                                    +
                                                                    + 83000Ԫ/O + + + 0%
                                                                    +
                                                                    ·11¾ۣסլ
                                                                    40948Ԫ/O0%
                                                                    +
                                                                    ַ11¾ۣסլ
                                                                    66314Ԫ/O6.26%
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    +

                                                                    +

                                                                    ѡټ㷿

                                                                    +
                                                                    +
                                                                    +
                                                                    ѡͣ
                                                                    +
                                                                    +
                                                                    + ѡ +
                                                                    +
                                                                      + +
                                                                    • 2212 144.00ƽ
                                                                    • + +
                                                                    • 2212 147.00ƽ
                                                                    • + +
                                                                    • 2212 150.00ƽ
                                                                    • +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    ܼۣ
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    ׸
                                                                    +
                                                                    +
                                                                    + 3 + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + ҵ + +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    +
                                                                    ʱ䣺
                                                                    +
                                                                    +
                                                                    + 30꣨360ڣ + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                     
                                                                    +
                                                                     ȶϢ     ȶ +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    ˵

                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    ¾Ԫ

                                                                    + +
                                                                      +
                                                                    • ο׸
                                                                    • +
                                                                    • +
                                                                    • ֧Ϣ
                                                                    • +
                                                                    • ʹ3.25%
                                                                    • +
                                                                    • ҵ4.9%
                                                                    • +
                                                                    +

                                                                    >>

                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + + + + + + +
                                                                    +
                                                                    +
                                                                      +
                                                                    • ϲ
                                                                    • +
                                                                    +
                                                                    +
                                                                    +
                                                                      +
                                                                      + + +
                                                                      +
                                                                      +
                                                                      + + + + + + + + +
                                                                      + + + + + + +
                                                                      +
                                                                      +
                                                                      +
                                                                      + ȫ> +
                                                                      +
                                                                      +

                                                                      ¥ +

                                                                      +
                                                                      +
                                                                      +
                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                      ¥۸̳
                                                                      + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                      + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                      + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                      + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                      + 5 + + + + + -- + + BBS + 3.88 +
                                                                      + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                      + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                      + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                      + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                      + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      + ȫ> +
                                                                      +
                                                                      +

                                                                      ¥

                                                                      +
                                                                      +
                                                                      +
                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                      ¥۸̳
                                                                      + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                      + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                      + 3 + ά + + + + -- + + -- + 0.00 +
                                                                      + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                      + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                      + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                      + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                      + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                      + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                      + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      + ȫ> +
                                                                      +
                                                                      +

                                                                      ¿

                                                                      +
                                                                      +
                                                                      + +
                                                                      +
                                                                      +
                                                                      +
                                                                      + +
                                                                      +
                                                                      +
                                                                      +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                        + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                                                                        + 3 + + + + + -- + + BBS + 4.30 +
                                                                        + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                        + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                        + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                        + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                        + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                        + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                        + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + + + +
                                                                        + + + + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + ɫ¥|ȫ> +
                                                                        + +
                                                                        +

                                                                        ¥Ƽ

                                                                        +
                                                                        +
                                                                        + +
                                                                        + + +
                                                                        +
                                                                        + + + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +

                                                                        ֻ鿴 + ؼ +

                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        ¥
                                                                        +
                                                                        + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                        +
                                                                        +
                                                                        +
                                                                        з
                                                                        +
                                                                        + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +

                                                                        ¥

                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + + + +
                                                                        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                        + + + +
                                                                        +
                                                                        + + վ + ϵ + ƸϢ + ¼
                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        BزDݸز Ϸز ز ز
                                                                        Cɶز ز ϷʷزQൺزT򷿵ز
                                                                         췿زFݷزJϷزSϺزW人ز
                                                                         ɳزGݷزNϾز ڷز ز
                                                                         ز ز ϲز ݷزXز
                                                                         ݷزHݷز ز ʯׯزZ֣ݷز
                                                                        + +
                                                                        + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                        + +
                                                                        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                        +
                                                                        ϺϢƼ޹˾ Ȩ
                                                                        +
                                                                        ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                        + +
                                                                        + + + + + + + +
                                                                        + + + + + + + + + + + + + +
                                                                        + + + + + + + + +
                                                                        + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking14 b/soufang/page/peking14 new file mode 100644 index 0000000..9e4fb81 --- /dev/null +++ b/soufang/page/peking14 @@ -0,0 +1,4855 @@ + + + + + K2ʨӳ-¥-ȷѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        +
                                                                        + + + +
                                                                        + + + + + + + + + + + + + + + + +
                                                                        + + +
                                                                        + + + + + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + + +
                                                                        + + +
                                                                        +
                                                                        ų
                                                                        +
                                                                        ABCDFGH
                                                                        +
                                                                        JKLMNQST
                                                                        +
                                                                        WXYZ
                                                                        + +
                                                                        + +
                                                                        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                        + + + + + +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        +
                                                                          + + +
                                                                        • Ͷ
                                                                        • + +
                                                                        • +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        + + + + +
                                                                        +
                                                                        + +
                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        +
                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                        + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + + + + + +
                                                                        +
                                                                        + + + + + + + + + + + + + +
                                                                        + + + + + + +
                                                                        +
                                                                        +
                                                                        +
                                                                        + ɨ赽ֻ ¥ʱ +
                                                                        +
                                                                        +
                                                                        + +

                                                                        K2ʨӳ

                                                                        + + + + + + + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        + + + +
                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                        +
                                                                        +
                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        +
                                                                        + + + +
                                                                        +
                                                                        + + + + + + + + + + + + + + + + +
                                                                        + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                          +
                                                                        • +
                                                                          +
                                                                          + K2ʨӳЧͼ + +
                                                                          +
                                                                          +
                                                                        • +
                                                                        • +
                                                                          +
                                                                          + K2ʨӳǽͨͼ + +
                                                                          +
                                                                          +
                                                                        • +
                                                                        • +
                                                                          +
                                                                          + K2ʨӳʵͼ + +
                                                                          +
                                                                          +
                                                                        • +
                                                                        • +
                                                                          +
                                                                          + K2ʨӳ + +
                                                                          +
                                                                          +
                                                                        • +
                                                                        • +
                                                                          +
                                                                          + K2ʨӳǻֳ + +
                                                                          +
                                                                          +
                                                                        • +
                                                                        • +
                                                                          +
                                                                          + K2ʨӳܱͼ + +
                                                                          +
                                                                          +
                                                                        • +
                                                                        • +
                                                                          +
                                                                          + K2ʨӳǻͼ + +
                                                                          +
                                                                          +
                                                                        • +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        + + +
                                                                        +
                                                                        +
                                                                        +

                                                                        + ƽ۸ 20000 Ԫ/ƽ +

                                                                        +
                                                                        + +
                                                                        + + 鿴۸ + +
                                                                        +
                                                                        + + + +
                                                                        + +
                                                                        + + + + + ֪ͨ + + + + + + + + + + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + + +
                                                                        +
                                                                        +

                                                                        ûۣ

                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                          + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + + + +
                                                                        +

                                                                        ¥̵ַ  CBD·㴦

                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +

                                                                        ͣ  + + + + һ(65O)    + + + + (98O)    + + + + (118O)    +

                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +

                                                                        ϸϢ>>

                                                                        +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        +
                                                                          + +
                                                                        • + ղ + + + + + +
                                                                        • + +
                                                                        • + ¥̶Ա +
                                                                        • +
                                                                        • + + ɨ赽ֻ + + + + +
                                                                        • +
                                                                        +
                                                                        + + + + +
                                                                        + +
                                                                        +
                                                                        +

                                                                        ¥绰400-890-0000 ת 614730

                                                                        +
                                                                        + + + + +
                                                                        + + + + + +
                                                                        + + + + +
                                                                        +
                                                                        + + +
                                                                        + + + + + + + +
                                                                        +
                                                                        + + + + + + + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        >
                                                                        + +
                                                                        +
                                                                        + +
                                                                        +

                                                                        K2ʨӳҵ̳

                                                                        + 6127 +
                                                                        + + ͼ +
                                                                        + + +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        +
                                                                        +
                                                                        + > +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +
                                                                        + > +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + + + + + + + +
                                                                        + + + + + + + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + + + +
                                                                        +
                                                                        + + + + +
                                                                        + +
                                                                        +
                                                                        K2ʨӳ¥б
                                                                        +
                                                                        + +
                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        +
                                                                        +
                                                                        + + + + +
                                                                        +
                                                                        + +
                                                                        + һ(3)| + (4)| + (2)| + ľ(2)| + + > +
                                                                        + +
                                                                        +

                                                                        K2ʨӳǻͼ(11)

                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + + + +
                                                                        + + +
                                                                        +
                                                                        + +
                                                                        + ͼ(11)| + ͨͼ(2)| + ʵͼ(84)| + Чͼ(11)| + (36)| + ֳ(154)| + ͼ(31)| + > +
                                                                        + +
                                                                        +

                                                                        K2ʨӳ¥(329)

                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        + +
                                                                        + +
                                                                        + + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + + + +
                                                                        +
                                                                        + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        + + +

                                                                        + +

                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        + +
                                                                        +

                                                                        + ظ0 + 1 +  2016-11-26 16:29:32  iPhoneͻ +

                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        + +
                                                                        +

                                                                        + ظ0 + 0 + 6666666 2016-12-05 11:43:08  PC +

                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + +
                                                                        + +
                                                                        +

                                                                        + ظ3 + 21 + jcgzwangpeng 2016-09-21 09:56:33  PC +

                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +

                                                                        K2ʨӳPK

                                                                        +
                                                                        +
                                                                        +
                                                                        • ͬ
                                                                        • ͬ۸
                                                                        +
                                                                        +
                                                                        + + +
                                                                          + +
                                                                        +
                                                                        +
                                                                        + + + +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + + + + + + + +
                                                                        + +
                                                                        +
                                                                        + + + + +
                                                                        +
                                                                        +
                                                                          +
                                                                        • ܸȤ¥
                                                                        • +
                                                                        • ͬλ¥
                                                                        • +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +
                                                                          + + + + + + + + + + + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          + ȫ> +
                                                                          +
                                                                          +

                                                                          ȷ¥

                                                                          +
                                                                          +
                                                                          +
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                          + 1 + + + + + + -- + + BBS + +
                                                                          + 2 + ʢ + + + + + 15000Ԫ/O + + BBS + +
                                                                          + 3 + ļ԰ + + + + + 115Ԫ/ + + BBS + +
                                                                          + 4 + ȷȸø + + + + + -- + + BBS + +
                                                                          + 5 + ļ + + + + + 9500Ԫ/O + + BBS + +
                                                                          + 6 + 仪ͥ + + + + + -- + + BBS + +
                                                                          + 7 + ʢ + + + + + 15000Ԫ/O + + BBS + +
                                                                          + 8 + K2ʨӳ + + + + + 20000Ԫ/O + + BBS + +
                                                                          + 9 + ˳ + + + + + 16000Ԫ/O + + BBS + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + ȫ> +
                                                                          +
                                                                          +

                                                                          ȷ¥

                                                                          +
                                                                          +
                                                                          +
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                          + 1 + ͤž + + + + + 27000Ԫ/O + + -- + + +
                                                                          + 2 + ɭݳ + + + + + -- + + -- + + +
                                                                          + 3 + ʢ + + + + + 17500Ԫ/O + + BBS + + +
                                                                          + 4 + ԰ + + + + + -- + + -- + + +
                                                                          + 5 + нù + + + + + 12500Ԫ/O + + BBS + + +
                                                                          + 6 + ̫ǡʯ + + + + + 9500Ԫ/O + + BBS + + +
                                                                          + 7 + гǻ + + + + + -- + + -- + + +
                                                                          + 8 + ɽ + + + + + 12000Ԫ/O + + -- + + +
                                                                          + 9 + ͥ + + İ + + + 6500Ԫ/O + + BBS + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + ȫ> +
                                                                          +
                                                                          +

                                                                          ¿

                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          +
                                                                          +
                                                                            +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          + 1 + K2ʨӳ + + + + + 20000Ԫ/O + + BBS + +
                                                                          + 2 + ̴ + + + + + -- + + -- + +
                                                                          + 3 + ̬ + + + + + 20000Ԫ/O + + BBS + +
                                                                          + 4 + гǹ + + ̰ + + + 16800Ԫ/O + + BBS + +
                                                                          + 5 + Ȫ԰ + + ̰ + + + 9500Ԫ/O + + BBS + +
                                                                          + 6 + ʢˮ + + + + + -- + + BBS + +
                                                                          + 7 + + + + + + -- + + BBS + +
                                                                          + 8 + ԰ + + + + + -- + + BBS + +
                                                                          + 9 + + + + + + -- + + BBS + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + |ȫ> +
                                                                          + +
                                                                          +

                                                                          ȷ¥Ƽ

                                                                          +
                                                                          +
                                                                          + +
                                                                          + + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +

                                                                          ֻ鿴K2ʨӳȷؼ

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          ȷ¥
                                                                          +
                                                                          ¥ ¥ ¥ ¥ ¥ ¥ ̰¥ ¥ İ¥ ¥ ¥ ¥ ¥
                                                                          +
                                                                          +
                                                                          +
                                                                          ȷ
                                                                          +
                                                                          η 巿 ӷ ӷ ̰ ݷ İ Ƿ 󳧷
                                                                          +
                                                                          +
                                                                          +
                                                                          з
                                                                          +
                                                                          ӷ ̰ ݷ ɽ Ϻ ݷ ڷ ɶ 췿 򷿲 ݷ Ͼ Ϸ Ƿ ۷
                                                                          +
                                                                          +
                                                                          +
                                                                          + + + +
                                                                          + + + + + + +
                                                                          վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                          + + + + + +
                                                                          +
                                                                          + + վ + ϵ + ƸϢ + ¼
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          BزDݸز Ϸز ز ز
                                                                          Cɶز ز ϷʷزQൺزT򷿵ز
                                                                           췿زFݷزJϷزSϺزW人ز
                                                                           ɳزGݷزNϾز ڷز ز
                                                                           ز ز ϲز ݷزXز
                                                                           ݷزHݷز ز ʯׯزZ֣ݷز
                                                                          + +
                                                                          + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                          + +
                                                                          Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                          +
                                                                          ϺϢƼ޹˾ Ȩ
                                                                          +
                                                                          ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                          + +
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking15 b/soufang/page/peking15 new file mode 100644 index 0000000..4d6d196 --- /dev/null +++ b/soufang/page/peking15 @@ -0,0 +1,3773 @@ + + + + + 8-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          +
                                                                          + + + +
                                                                          + + + + + + + + + + + + + + + + +
                                                                          + + +
                                                                          + + + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          ų
                                                                          +
                                                                          ABCDFGH
                                                                          +
                                                                          JKLMNQST
                                                                          +
                                                                          WXYZ
                                                                          + +
                                                                          + +
                                                                          + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                          + + + + + + + +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                            + + +
                                                                          • Ͷ
                                                                          • + +
                                                                          • +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +
                                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                                          + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          + + + + + + + + + + + + + +
                                                                          + + + + + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          + ɨ赽ֻ ¥ʱ +
                                                                          +
                                                                          +
                                                                          + +

                                                                          8

                                                                          + + + + + + + + +
                                                                          +
                                                                          +
                                                                          + ̼ + ַ + ɫ + ˾̬ز +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          + + + +
                                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                                          +
                                                                          +
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          + + + + + + + + + + + + + + + + +
                                                                          + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                            +
                                                                          • +
                                                                            +
                                                                            + 8Чͼ + +
                                                                            +
                                                                            +
                                                                          • +
                                                                          • +
                                                                            +
                                                                            + 8Žͨͼ + +
                                                                            +
                                                                            +
                                                                          • +
                                                                          • +
                                                                            +
                                                                            + 8ʵͼ + +
                                                                            +
                                                                            +
                                                                          • +
                                                                          • +
                                                                            +
                                                                            + 8 + +
                                                                            +
                                                                            +
                                                                          • +
                                                                          • +
                                                                            +
                                                                            + 8Żֳ + +
                                                                            +
                                                                            +
                                                                          • +
                                                                          • +
                                                                            +
                                                                            + 8ܱͼ + +
                                                                            +
                                                                            +
                                                                          • +
                                                                          • +
                                                                            +
                                                                            + 8Żͼ + +
                                                                            +
                                                                            +
                                                                          • +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +

                                                                          + +

                                                                          +
                                                                          + + + +
                                                                          +
                                                                          + +
                                                                          + + +
                                                                          +
                                                                          +

                                                                          ûۣ

                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                            + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + + + +
                                                                          +

                                                                          ¥̵ַ  復תֱ1800

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +
                                                                          +

                                                                          ϸϢ>>

                                                                          +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          +
                                                                            + +
                                                                          • + ղ + + + + + +
                                                                          • + +
                                                                          • + ¥̶Ա +
                                                                          • +
                                                                          • + + ɨ赽ֻ + + + + +
                                                                          • +
                                                                          +
                                                                          + + + + +
                                                                          + +
                                                                          +
                                                                          +

                                                                          ¥绰400-890-0000 ת 611789

                                                                          +
                                                                          + + + + +
                                                                          + + + + + +
                                                                          + + + + +
                                                                          +
                                                                          + + +
                                                                          + + + + + + + +
                                                                          +
                                                                          + + + + + + + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          >
                                                                          +
                                                                          +

                                                                          8¥̶̬

                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +

                                                                          8ҵ̳

                                                                          + 59944 +
                                                                          + + ͼ + Ȧ
                                                                          + + +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          + > +
                                                                          +
                                                                          +

                                                                          /֪ʶ

                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + > +
                                                                          +
                                                                          +

                                                                          8¥ʴ

                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + + + + + + + +
                                                                          + + + + + +
                                                                          +
                                                                          + +
                                                                          + (30)| + ľ(14)| + (5)| + + > +
                                                                          + +
                                                                          +

                                                                          8Żͼ(49)

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +
                                                                          ѡ/¥㼼
                                                                          +
                                                                          >
                                                                          +
                                                                          + +
                                                                          + +
                                                                          + + +
                                                                          +
                                                                          + +
                                                                          + ͼ(49)| + ͨͼ(3)| + ʵͼ(35)| + Чͼ(5)| + (16)| + ֳ(4)| + ͼ(21)| + > +
                                                                          + +
                                                                          +

                                                                          (133)

                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          + +
                                                                          + +
                                                                          + + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          + + +

                                                                          + +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + +
                                                                          +

                                                                          + ظ0 + 2 + n***9 2016-10-06 18:27:45  Wap +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +

                                                                          + ǺӱضˡܱҲô +

                                                                          +
                                                                          +
                                                                          +

                                                                          + ظ0 + 0 + װ007 2016-09-17 07:57:15  iPhoneͻ +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +

                                                                          + ƺɹ +

                                                                          +
                                                                          +
                                                                          +

                                                                          + ظ1 + 1 + αʮ 2015-03-17 17:04:46  Androidͻ +

                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +

                                                                          8PK

                                                                          +
                                                                          +
                                                                          +
                                                                          • ͬ
                                                                          • ͬ۸
                                                                          +
                                                                          +
                                                                          + +
                                                                            +
                                                                          +
                                                                            + +
                                                                          +
                                                                          +
                                                                          + + + +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + + + + + + + + +
                                                                          + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          +
                                                                            +
                                                                          • ܸȤ¥
                                                                          • + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + + + + + + + + + + + + +
                                                                            +
                                                                            +
                                                                            +
                                                                            + ȫ> +
                                                                            +
                                                                            +

                                                                            ¥

                                                                            +
                                                                            +
                                                                            +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                            + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                            + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                            + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                            + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                            + 5 + + + + + + -- + + BBS + +
                                                                            + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                            + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                            + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                            + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + ȫ> +
                                                                            +
                                                                            +

                                                                            ¥

                                                                            +
                                                                            +
                                                                            +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                            + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                            + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                            + 3 + ά + + + + + -- + + -- + + +
                                                                            + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                            + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                            + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                            + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                            + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                            + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + ȫ> +
                                                                            +
                                                                            +

                                                                            ¿

                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            +
                                                                            +
                                                                              +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                            + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                            + 3 + + + + + + -- + + BBS + +
                                                                            + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                            + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                            + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                            + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                            + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                            + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            + + + + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + ɫ¥|ȫ> +
                                                                            + +
                                                                            +

                                                                            ¥Ƽ

                                                                            +
                                                                            +
                                                                            + +
                                                                            + + +
                                                                            +
                                                                            + + + +
                                                                            + + + + +
                                                                            + + + + +
                                                                            + + + +
                                                                            վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                            + + + + + +
                                                                            +
                                                                            + + վ + ϵ + ƸϢ + ¼
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            BزDݸز Ϸز ز ز
                                                                            Cɶز ز ϷʷزQൺزT򷿵ز
                                                                             췿زFݷزJϷزSϺزW人ز
                                                                             ɳزGݷزNϾز ڷز ز
                                                                             ز ز ϲز ݷزXز
                                                                             ݷزHݷز ز ʯׯزZ֣ݷز
                                                                            + +
                                                                            + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                            + +
                                                                            Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                            +
                                                                            ϺϢƼ޹˾ Ȩ
                                                                            +
                                                                            ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                            + +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking16 b/soufang/page/peking16 new file mode 100644 index 0000000..c176c8a --- /dev/null +++ b/soufang/page/peking16 @@ -0,0 +1,4240 @@ + + + + + ȷȸ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            +
                                                                            + + +
                                                                            + + + + + + + + + + + + + + + +
                                                                            + + +
                                                                            + + + + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            ų
                                                                            +
                                                                            ABCDFGH
                                                                            +
                                                                            JKLMNQST
                                                                            +
                                                                            WXYZ
                                                                            + +
                                                                            + +
                                                                            + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                            + + + + + + + +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                              + + +
                                                                            • Ͷ
                                                                            • + +
                                                                            • +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            +
                                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                                            + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            + + + + + + + + + + + + + +
                                                                            + + + + + + + + +
                                                                            + + + + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                              +
                                                                            • +
                                                                              + ȷȸЧͼ + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              + ȷȸǽͨͼ + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              +
                                                                              + ȷȸƵ + + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              + ȷȸȫ + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              + ȷȸ⾰ͼ + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              + ȷȸ + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              + ȷȸǻֳ + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              + ȷȸܱͼ + +
                                                                              +
                                                                            • +
                                                                            • +
                                                                              + ȷȸǻͼ + +
                                                                              +
                                                                            • +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + + + +
                                                                            + + + + +
                                                                            +
                                                                            +

                                                                            ¥绰400-890-0000 ת 627834

                                                                            +
                                                                            + + + + +
                                                                            + + + + + + +
                                                                            + + + + + + + +
                                                                            + +
                                                                            + + + + +
                                                                            + +
                                                                            + + + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            + +
                                                                              +
                                                                            + + +
                                                                            +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +

                                                                            ȷȸǻ

                                                                            +
                                                                            + (10)| + (16)| + ľ(6)| + (1)| + > +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            ȷȸ1-502  2211   85O() +   

                                                                            +

                                                                            + ϱͨ͸ͷʪ

                                                                            +
                                                                            + 174.3 +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            ȷȸ2.1D  2211   85O() +   

                                                                            +

                                                                            + ϱͨ͸ͷʪ

                                                                            +
                                                                            + 62.1 +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            ȷȸ2.1A2  2211   85O() +   

                                                                            +

                                                                            + ϱͨ͸ͷʪ

                                                                            +
                                                                            + 174.3 +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + + +
                                                                            + + + + + + + + +
                                                                            +

                                                                            ȷȸ¥Ϣ

                                                                            +
                                                                            + + + +
                                                                            + + + + + +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            + 4# + 1.41# + 1.43# + 2# + 10# +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                              +
                                                                            • Ԫ2
                                                                            • 12
                                                                            • ߲
                                                                            • ¥24
                                                                            • 96
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                              +
                                                                            • Ԫ3
                                                                            • 12
                                                                            • ߲
                                                                            • ¥26
                                                                            • 156
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                              +
                                                                            • Ԫ2
                                                                            • 12
                                                                            • ߲
                                                                            • ¥25
                                                                            • 100
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            +
                                                                            + + + + + + +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +

                                                                            ȷȸѶ

                                                                            +
                                                                            + Ѷ + ֪ʶ + ʴ +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            Ѷ +

                                                                            ˫ǡ,ơȷȸȡȷȸ2015Ʒ

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            Ѷ +

                                                                            ȷȸǴѧ8¿̻ſ!߻궯!

                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            ֪ʶ +

                                                                            ˣסڼȫ

                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            ʴ +

                                                                            ȷȸDZ۸Ƕ

                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            ʴ +

                                                                            ӱȷȸ԰?ƭ

                                                                            +
                                                                            +
                                                                            + + + + + + + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + + + + +
                                                                            + + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            + ͼ(33)| + ͨͼ(2)| + ʵͼ(43)| + Чͼ(14)| + (1)| + ֳ(20)| + ͼ(25)| + > +
                                                                            + +
                                                                            +

                                                                            ȷȸ¥

                                                                            (138)

                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +

                                                                            ȷȸǷ

                                                                            + >> +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            ¥̣סլ12ƽ۸
                                                                            +
                                                                            + 20500Ԫ/O + + + 7.32%
                                                                            +
                                                                            ·11¾ۣסլ
                                                                            40948Ԫ/O0%
                                                                            +
                                                                            ȷַ11¾ۣסլ
                                                                            16271Ԫ/O8.83%
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            +
                                                                            ȷȸǷ
                                                                            >>
                                                                            +
                                                                            +
                                                                            + +
                                                                            +

                                                                            +

                                                                            ѡټ㷿

                                                                            +
                                                                            +
                                                                            +
                                                                            ѡͣ
                                                                            +
                                                                            +
                                                                            + ѡ +
                                                                            +
                                                                              + +
                                                                            • 2211 85.00ƽ
                                                                            • + +
                                                                            • 2211 85.00ƽ
                                                                            • + +
                                                                            • 2211 85.00ƽ
                                                                            • +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            ܼۣ
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            ׸
                                                                            +
                                                                            +
                                                                            + 3 + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + ҵ + +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            +
                                                                            ʱ䣺
                                                                            +
                                                                            +
                                                                            + 30꣨360ڣ + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                             
                                                                            +
                                                                             ȶϢ     ȶ +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            ˵

                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            ¾Ԫ

                                                                            + +
                                                                              +
                                                                            • ο׸
                                                                            • +
                                                                            • +
                                                                            • ֧Ϣ
                                                                            • +
                                                                            • ʹ3.25%
                                                                            • +
                                                                            • ҵ4.9%
                                                                            • +
                                                                            +

                                                                            >>

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            +
                                                                              +
                                                                            • ϲ
                                                                            • +
                                                                            • ͬλ¥
                                                                            +
                                                                            +
                                                                            +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              +
                                                                              + + + + + + + + +
                                                                              + + + + + + +
                                                                              +
                                                                              +
                                                                              +
                                                                              + ȫ> +
                                                                              +
                                                                              +

                                                                              ¥ +

                                                                              +
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ¥۸̳
                                                                              + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                              + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                              + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                              + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                              + 5 + + + + + -- + + BBS + 3.88 +
                                                                              + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                              + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                              + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                              + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                              + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              + ȫ> +
                                                                              +
                                                                              +

                                                                              ¥

                                                                              +
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ¥۸̳
                                                                              + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                              + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                              + 3 + ά + + + + -- + + -- + 0.00 +
                                                                              + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                              + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                              + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                              + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                              + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                              + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                              + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              + ȫ> +
                                                                              +
                                                                              +

                                                                              ¿

                                                                              +
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                                + 2 + + + + + -- + + BBS + 4.30 +
                                                                                + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                                + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                                + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                                + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                                + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                                + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                                + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                                                                + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + + + +
                                                                                + + + + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + ɫ¥|ȫ> +
                                                                                + +
                                                                                +

                                                                                ¥Ƽ

                                                                                +
                                                                                +
                                                                                + +
                                                                                + + +
                                                                                +
                                                                                + + + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ֻ鿴ȷȸ + ؼ +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                ¥
                                                                                +
                                                                                + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                                +
                                                                                +
                                                                                +
                                                                                з
                                                                                +
                                                                                + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ¥

                                                                                +
                                                                                +
                                                                                + +
                                                                                + + +
                                                                                + + + +
                                                                                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                                + + + +
                                                                                +
                                                                                + + վ + ϵ + ƸϢ + ¼
                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                BزDݸز Ϸز ز ز
                                                                                Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                 췿زFݷزJϷزSϺزW人ز
                                                                                 ɳزGݷزNϾز ڷز ز
                                                                                 ز ز ϲز ݷزXز
                                                                                 ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                + +
                                                                                + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                + +
                                                                                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                +
                                                                                ϺϢƼ޹˾ Ȩ
                                                                                +
                                                                                ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                + +
                                                                                + + + + + + + +
                                                                                + + + + + + + + + + + + + +
                                                                                + + + + + + + + +
                                                                                + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking17 b/soufang/page/peking17 new file mode 100644 index 0000000..0972d2d --- /dev/null +++ b/soufang/page/peking17 @@ -0,0 +1,4144 @@ + + + + + ̵ع21-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                +
                                                                                + + +
                                                                                + + + + + + + + + + + + + + + +
                                                                                + + +
                                                                                + + + + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                ų
                                                                                +
                                                                                ABCDFGH
                                                                                +
                                                                                JKLMNQST
                                                                                +
                                                                                WXYZ
                                                                                + +
                                                                                + +
                                                                                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                + + + + + + + +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                  + + +
                                                                                • Ͷ
                                                                                • + +
                                                                                • +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                +
                                                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + + + + + +
                                                                                +
                                                                                + + + + + + + + + + + + + +
                                                                                + + + + + + + + +
                                                                                + + + + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                  +
                                                                                • +
                                                                                  + ̵ع21Чͼ + +
                                                                                  +
                                                                                • +
                                                                                • +
                                                                                  + ̵ع21ǽͨͼ + +
                                                                                  +
                                                                                • +
                                                                                • +
                                                                                  + ̵ع21⾰ͼ + +
                                                                                  +
                                                                                • +
                                                                                • +
                                                                                  + ̵ع21 + +
                                                                                  +
                                                                                • +
                                                                                • +
                                                                                  + ̵ع21ǻֳ + +
                                                                                  +
                                                                                • +
                                                                                • +
                                                                                  + ̵ع21ܱͼ + +
                                                                                  +
                                                                                • +
                                                                                • +
                                                                                  + ̵ع21ǻͼ + +
                                                                                  +
                                                                                • +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + + + + + +
                                                                                + +
                                                                                +
                                                                                +

                                                                                ̵ع21

                                                                                4.05
                                                                                +
                                                                                + +
                                                                                + + + +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + ַ + ƷƵز + ۾ +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ͣ

                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +

                                                                                Ŀַ

                                                                                  Ӿӵڶ¸ת
                                                                                + +
                                                                                + + + + +
                                                                                +
                                                                                +

                                                                                ϸϢ>>

                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                +

                                                                                ¥绰400-890-0000 ת 640127

                                                                                +
                                                                                + + + + +
                                                                                + + + + + + +
                                                                                + + + + + + + +
                                                                                + +
                                                                                + + + + +
                                                                                + +
                                                                                + + + +
                                                                                +
                                                                                + + + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                + +
                                                                                  +
                                                                                + + +
                                                                                +
                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +

                                                                                ̵ع21ǻ

                                                                                +
                                                                                + һ(1)| + (5)| + ľ(14)| + (6)| + (10)| + (1)| + > +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ̵ع21G  1111   63O() +   

                                                                                +

                                                                                + ȫʪ

                                                                                +
                                                                                + 44.3 +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ̵ع21F  2111   72O() +   

                                                                                +

                                                                                + ȫʪ

                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ̵ع21E  2111   73O() +   

                                                                                +

                                                                                + ȫʪ

                                                                                +
                                                                                + 49.6 +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + + +
                                                                                + + + + + + + + +
                                                                                +

                                                                                ̵ع21¥Ϣ

                                                                                +
                                                                                + + + +
                                                                                + + + + + +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                + 3# + 4# + 5# + 8# + 9# +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                  +
                                                                                • Ԫ1
                                                                                • 24
                                                                                • ߲
                                                                                • ¥26
                                                                                • 104
                                                                                • ۷Դ1
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                  +
                                                                                • Ԫ2
                                                                                • 24
                                                                                • ߲
                                                                                • ¥26
                                                                                • 208
                                                                                • ۷Դ1
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                  +
                                                                                • Ԫ1
                                                                                • 24
                                                                                • ߲
                                                                                • ¥26
                                                                                • 104
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                  +
                                                                                • Ԫ1
                                                                                • 24
                                                                                • ߲
                                                                                • ¥18
                                                                                • 72
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                  +
                                                                                • Ԫ1
                                                                                • 24
                                                                                • ߲
                                                                                • ¥18
                                                                                • 72
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                +
                                                                                +
                                                                                + + + + + + +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +

                                                                                ̵ع21Ѷ

                                                                                +
                                                                                + Ѷ + ֪ʶ + ʴ +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                Ѷ +

                                                                                ҵ ̵ع21Ϊǡ̵ع21פ̼ǩԼɹٰ

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                Ѷ +

                                                                                ̵ع21Ǹ߲35¥7500Ԫ/ƽ

                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                ֪ʶ +

                                                                                ˣסڼȫ

                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                ʴ +

                                                                                ˭̵֪ع21DZ۸

                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                ʴ +

                                                                                ̵ع21ܱô̵ع21¥̼۸

                                                                                +
                                                                                +
                                                                                + + + + + + + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + + + + +
                                                                                + + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + + +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                + ͼ(37)| + ͨͼ(3)| + ʵͼ(73)| + Чͼ(12)| + (32)| + ֳ(29)| + ͼ(6)| + > +
                                                                                + +
                                                                                +

                                                                                ̵ع21¥

                                                                                (192)

                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +

                                                                                ̵ع21Ƿ

                                                                                + >> +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                ¥̣סլ12ƽ۸
                                                                                +
                                                                                + 265Ԫ/ + + + 0%
                                                                                +
                                                                                ·11¾ۣסլ
                                                                                40948Ԫ/O0%
                                                                                +
                                                                                Ӷַ11¾ۣסլ
                                                                                16271Ԫ/O8.83%
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + + + + +
                                                                                +
                                                                                +
                                                                                ̵ع21Ƿ
                                                                                >>
                                                                                +
                                                                                +
                                                                                + +
                                                                                +

                                                                                +

                                                                                ѡټ㷿

                                                                                +
                                                                                +
                                                                                +
                                                                                ѡͣ
                                                                                +
                                                                                +
                                                                                + ѡ +
                                                                                +
                                                                                  + +
                                                                                • 1111 63.00ƽ
                                                                                • + +
                                                                                • 2111 72.00ƽ
                                                                                • + +
                                                                                • 2111 73.00ƽ
                                                                                • +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                ܼۣ
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                ׸
                                                                                +
                                                                                +
                                                                                + 3 + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + ҵ + +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                +
                                                                                ʱ䣺
                                                                                +
                                                                                +
                                                                                + 30꣨360ڣ + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                 
                                                                                +
                                                                                 ȶϢ     ȶ +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ˵

                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                ¾Ԫ

                                                                                + +
                                                                                  +
                                                                                • ο׸
                                                                                • +
                                                                                • +
                                                                                • ֧Ϣ
                                                                                • +
                                                                                • ʹ3.25%
                                                                                • +
                                                                                • ҵ4.9%
                                                                                • +
                                                                                +

                                                                                >>

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + + + + + + +
                                                                                +
                                                                                +
                                                                                  +
                                                                                • ϲ
                                                                                • +
                                                                                • ͬλ¥
                                                                                +
                                                                                +
                                                                                +
                                                                                  +
                                                                                  + + + +
                                                                                  +
                                                                                  +
                                                                                  + + + + + + + + +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + ȫ> +
                                                                                  +
                                                                                  +

                                                                                  ¥ +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                  ¥۸̳
                                                                                  + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                                  + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                                  + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                                  + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                                  + 5 + + + + + -- + + BBS + 3.88 +
                                                                                  + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                                  + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                                  + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                                  + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                                  + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + ȫ> +
                                                                                  +
                                                                                  +

                                                                                  ¥

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                  ¥۸̳
                                                                                  + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                                  + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                                  + 3 + ά + + + + -- + + -- + 0.00 +
                                                                                  + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                                  + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                                  + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                                  + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                                  + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                                  + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                                  + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + ȫ> +
                                                                                  +
                                                                                  +

                                                                                  ¿

                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                                    + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                                                                                    + 3 + + + + + -- + + BBS + 4.30 +
                                                                                    + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                                    + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                                    + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                                    + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                                    + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                                    + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                                    + 10 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + + + +
                                                                                    + + + + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + ɫ¥|ȫ> +
                                                                                    + +
                                                                                    +

                                                                                    ¥Ƽ

                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + + +
                                                                                    +
                                                                                    + + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    ֻ鿴̵ع21 + ؼ +

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    ¥
                                                                                    +
                                                                                    + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    з
                                                                                    +
                                                                                    + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    ¥

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    + + + +
                                                                                    վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                                    + + + +
                                                                                    +
                                                                                    + + վ + ϵ + ƸϢ + ¼
                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    BزDݸز Ϸز ز ز
                                                                                    Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                     췿زFݷزJϷزSϺزW人ز
                                                                                     ɳزGݷزNϾز ڷز ز
                                                                                     ز ز ϲز ݷزXز
                                                                                     ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                    + +
                                                                                    + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                    + +
                                                                                    Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                    +
                                                                                    ϺϢƼ޹˾ Ȩ
                                                                                    +
                                                                                    ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                    + +
                                                                                    + + + + + + + +
                                                                                    + + + + + + + + + + + + + +
                                                                                    + + + + + + + + +
                                                                                    + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking18 b/soufang/page/peking18 new file mode 100644 index 0000000..2d81777 --- /dev/null +++ b/soufang/page/peking18 @@ -0,0 +1,5186 @@ + + + + + -¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    +
                                                                                    + + + +
                                                                                    + + + + + + + + + + + + + + + + +
                                                                                    + + +
                                                                                    + + + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    ų
                                                                                    +
                                                                                    ABCDFGH
                                                                                    +
                                                                                    JKLMNQST
                                                                                    +
                                                                                    WXYZ
                                                                                    + +
                                                                                    + +
                                                                                    + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                    + + + + + + + +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                      + + +
                                                                                    • Ͷ
                                                                                    • + +
                                                                                    • +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    +
                                                                                    + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    + + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + + + + + +
                                                                                    +
                                                                                    + + + + + + + + + + + + + +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + ɨ赽ֻ ¥ʱ +
                                                                                    +
                                                                                    +
                                                                                    + +

                                                                                    + + +
                                                                                    +
                                                                                    ¥
                                                                                    + +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +
                                                                                    + + ̼ + ַ + ˮز + ˾̬ز +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + +
                                                                                    + + + +
                                                                                    + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    +
                                                                                    +
                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    +
                                                                                    + + + +
                                                                                    +
                                                                                    + + + + + + + + + + + + + + + + +
                                                                                    + + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                      +
                                                                                    • +
                                                                                      +
                                                                                      +
                                                                                      + Ƶ + + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      + ȫ + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      + Чͼ + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      + ͨͼ + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      + ʵͼ + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      + ܱͼ + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      + ͼ + +
                                                                                      +
                                                                                      +
                                                                                    • +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                      +
                                                                                    • +

                                                                                      Ƶ

                                                                                      + + Ƶ +
                                                                                    • +
                                                                                    • +

                                                                                      ȫ

                                                                                      + + ȫ +
                                                                                    • +
                                                                                    • +

                                                                                      Чͼ

                                                                                      + + Чͼ +
                                                                                    • +
                                                                                    • +

                                                                                      ͨͼ

                                                                                      + + ͨͼ +
                                                                                    • +
                                                                                    • +

                                                                                      ʵͼ

                                                                                      + + ʵͼ +
                                                                                    • +
                                                                                    • +

                                                                                      + + +
                                                                                    • +
                                                                                    • +

                                                                                      ܱͼ

                                                                                      + + ܱͼ +
                                                                                    • +
                                                                                    • +

                                                                                      ͼ

                                                                                      + + ͼ +
                                                                                    • +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    + + +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    + ƽ۸ 15000 Ԫ/ƽ +

                                                                                    +
                                                                                    + + +
                                                                                    + + 鿴۸ + +
                                                                                    +
                                                                                    + + + +
                                                                                    + +
                                                                                    + + + + + ֪ͨ + + + + + + + + + + + + + + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + + +
                                                                                    +
                                                                                    +

                                                                                    ûۣ

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                      + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + + + +
                                                                                    +

                                                                                    ¥̵ַ  Ʊ궫ڣ

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    ͣ  + + + + (310O)    + + + + (250O)    + + + + (250O)    +

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    ϸϢ>>

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                      + +
                                                                                    • + ղ + + + + + +
                                                                                    • + +
                                                                                    • + ¥̶Ա +
                                                                                    • +
                                                                                    • + + ɨ赽ֻ + + + + +
                                                                                    • +
                                                                                    +
                                                                                    + + + + +
                                                                                    + +
                                                                                    +
                                                                                    +

                                                                                    ¥绰400-890-0000 ת 643438

                                                                                    +
                                                                                    + + + + +
                                                                                    + + + + + +
                                                                                    + + + + +
                                                                                    +
                                                                                    + + +
                                                                                    + + + + + + + +
                                                                                    +
                                                                                    + + + + + + + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    >
                                                                                    +
                                                                                    +

                                                                                    ¥̶̬

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +

                                                                                    ҵ̳

                                                                                    + 8179 +
                                                                                    + + ͼ + Ȧ
                                                                                    + + +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + > +
                                                                                    +
                                                                                    +

                                                                                    Ѷ/֪ʶ

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + > +
                                                                                    +
                                                                                    +

                                                                                    ¥ʴ

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + + + + + + + +
                                                                                    + + + + + + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    ¥Ϣ

                                                                                    +
                                                                                    +
                                                                                    + + + +
                                                                                    +
                                                                                    + + + + +
                                                                                    + +
                                                                                    +
                                                                                    ¥б
                                                                                    +
                                                                                    + +
                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    +
                                                                                    +
                                                                                    + + + + + +
                                                                                    +
                                                                                    + +
                                                                                    + һ(3)| + (1)| + (1)| + ľ(1)| + (22)| + (3)| + + > +
                                                                                    + +
                                                                                    +

                                                                                    ͼ(31)

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    +
                                                                                    ѡ/¥㼼
                                                                                    +
                                                                                    >
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    + + +
                                                                                    +
                                                                                    + +
                                                                                    + ͼ(31)| + ͨͼ(4)| + ʵͼ(112)| + Чͼ(102)| + (26)| + ͼ(14)| + > +
                                                                                    + +
                                                                                    +

                                                                                    ¥(289)

                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                      +
                                                                                    • +
                                                                                      +
                                                                                      +

                                                                                      Ƶ

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + Ƶ + +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      +

                                                                                      ȫ

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + ȫ + +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      +

                                                                                      + һڶ +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + һڶ + +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      +

                                                                                      + 滮Чͼ +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + 滮Чͼ + +
                                                                                      +
                                                                                    • +
                                                                                    • +
                                                                                      +
                                                                                      +

                                                                                      + һڶ +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + һڶ + +
                                                                                      +
                                                                                    • + +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    + + + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    + + +

                                                                                    + +

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    +

                                                                                    + ۸ʣȫֵù +

                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    + ظ0 + 0 +  2016-12-02 08:47:16  Androidͻ +

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +

                                                                                    + ظ3 + 1 + ивн 2015-02-08 07:13:39  iPhoneͻ +

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    +

                                                                                    + ͨԣһ +

                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    + ظ2 + 0 + zdm1126 2015-02-15 16:39:23  Androidͻ +

                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    PK

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    • ͬ
                                                                                    • ͬ۸
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                      +
                                                                                    • + [] +
                                                                                      +
                                                                                    • + +
                                                                                    + +
                                                                                      + +
                                                                                    +
                                                                                    +
                                                                                    + + + +
                                                                                    + +
                                                                                    +
                                                                                    + + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + + + + + + + + +
                                                                                    + +
                                                                                    +
                                                                                    + + + + +
                                                                                    +
                                                                                    +
                                                                                      +
                                                                                    • ܸȤ¥
                                                                                    • +
                                                                                    • ͬλ¥
                                                                                    • +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +
                                                                                      + + + + + + + + + + + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + ȫ> +
                                                                                      +
                                                                                      +

                                                                                      ¥

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                      + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                                      + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                                      + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                                      + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                                      + 5 + + + + + + -- + + BBS + +
                                                                                      + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                                      + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                                      + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                                      + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + ȫ> +
                                                                                      +
                                                                                      +

                                                                                      ¥

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                      + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                                      + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                                      + 3 + ά + + + + + -- + + -- + + +
                                                                                      + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                                      + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                                      + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                                      + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                                      + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                                      + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + ȫ> +
                                                                                      +
                                                                                      +

                                                                                      ¿

                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                        +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                                      + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                                      + 3 + + + + + + -- + + BBS + +
                                                                                      + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                                      + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                                      + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                                      + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                                      + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                                      + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      + + +
                                                                                      + + + + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + ɫ¥|ȫ> +
                                                                                      + +
                                                                                      +

                                                                                      ¥Ƽ

                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + + +
                                                                                      +
                                                                                      + + + +
                                                                                      + + + + +
                                                                                      + + + + +
                                                                                      + + + +
                                                                                      վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                      + + + + + +
                                                                                      +
                                                                                      + + վ + ϵ + ƸϢ + ¼
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      BزDݸز Ϸز ز ز
                                                                                      Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                       췿زFݷزJϷزSϺزW人ز
                                                                                       ɳزGݷزNϾز ڷز ز
                                                                                       ز ز ϲز ݷزXز
                                                                                       ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                      + +
                                                                                      + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                      + +
                                                                                      Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                      +
                                                                                      ϺϢƼ޹˾ Ȩ
                                                                                      +
                                                                                      ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                      + +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking19 b/soufang/page/peking19 new file mode 100644 index 0000000..fe869e6 --- /dev/null +++ b/soufang/page/peking19 @@ -0,0 +1,4708 @@ + + + + + ȸǴ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      +
                                                                                      + + + +
                                                                                      + + + + + + + + + + + + + + + + +
                                                                                      + + +
                                                                                      + + + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      ų
                                                                                      +
                                                                                      ABCDFGH
                                                                                      +
                                                                                      JKLMNQST
                                                                                      +
                                                                                      WXYZ
                                                                                      + +
                                                                                      + +
                                                                                      + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                      + + + + + + + +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                        + + +
                                                                                      • Ͷ
                                                                                      • + +
                                                                                      • +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + + + + + +
                                                                                      +
                                                                                      + + + + + + + + + + + + + +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + ɨ赽ֻ ¥ʱ +
                                                                                      +
                                                                                      +
                                                                                      + +

                                                                                      ȸǴ

                                                                                      + ӿȸǴ + + + + + + + + +
                                                                                      +
                                                                                      +
                                                                                      + + ̼ + ʻ + ܾ + ۾ +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      + + + +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      +
                                                                                      +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                      + + + + + + + + + + + + + + + + +
                                                                                      + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                        +
                                                                                      • +
                                                                                        +
                                                                                        +
                                                                                        + ȸǴƵ + + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      • +
                                                                                        +
                                                                                        + ȸǴȫ + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      • +
                                                                                        +
                                                                                        + ȸǴЧͼ + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      • +
                                                                                        +
                                                                                        + ȸǴͨͼ + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      • +
                                                                                        +
                                                                                        + ȸǴ⾰ͼ + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      • +
                                                                                        +
                                                                                        + ȸǴ + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      • +
                                                                                        +
                                                                                        + ȸǴֳ + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      • +
                                                                                        +
                                                                                        + ȸǴͼ + +
                                                                                        +
                                                                                        +
                                                                                      • +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      + +

                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                      + +
                                                                                      + + +
                                                                                      +
                                                                                      +

                                                                                      ûۣ

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                        + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + + +
                                                                                      +

                                                                                      ¥̵ַ  ̰Ұ԰(ֱ)

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      ͣ  + + + + (235O)    + + + + ľ(202O)    + + + + (260O)    +

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      ϸϢ>>

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                        + +
                                                                                      • + ղ + + + + + +
                                                                                      • + +
                                                                                      • + ¥̶Ա +
                                                                                      • +
                                                                                      • + + ɨ赽ֻ + + + + +
                                                                                      • +
                                                                                      +
                                                                                      + + + + +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      ¥绰400-890-0000 ת 645491

                                                                                      +
                                                                                      + + + + +
                                                                                      + + + + + +
                                                                                      + + + + +
                                                                                      +
                                                                                      + + +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      >
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      +

                                                                                      ȸǴҵ̳

                                                                                      + 26089 +
                                                                                      + + ͼ + Ȧ
                                                                                      + + +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + > +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + > +
                                                                                      +
                                                                                      +

                                                                                      ȸǴ¥ʴ

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + + + + + + + +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      ȸǴ¥Ϣ

                                                                                      +
                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                      + + + + +
                                                                                      + +
                                                                                      +
                                                                                      ȸǴ¥б
                                                                                      +
                                                                                      + +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      +
                                                                                      +
                                                                                      + + + + + +
                                                                                      +
                                                                                      + +
                                                                                      + (17)| + ľ(60)| + (10)| + (10)| + (2)| + + > +
                                                                                      + +
                                                                                      +

                                                                                      ȸǴͼ(99)

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +
                                                                                      ѡ/¥㼼
                                                                                      +
                                                                                      >
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      + + +
                                                                                      +
                                                                                      + +
                                                                                      + ͼ(99)| + ͨͼ(2)| + ʵͼ(173)| + Чͼ(46)| + (114)| + ֳ(5)| + > +
                                                                                      + +
                                                                                      +

                                                                                      ȸǴ¥(446)

                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      + +
                                                                                      + +
                                                                                      + + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      + + +

                                                                                      + +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +

                                                                                      + ƯķӰҲ +

                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      + ظ0 + 0 + Ұ345 2016-10-21 07:49:14  Androidͻ +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +

                                                                                      + ĺܲû뵽չô +

                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      + ظ0 + 0 + Ұ345 2016-10-20 08:37:30  Androidͻ +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +

                                                                                      + һȸǣôᡣ +

                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      + ظ0 + 0 + xiaran369 2016-10-18 00:43:10  Androidͻ +

                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      ȸǴPK

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      • ͬ
                                                                                      • ͬ۸
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                        +
                                                                                      +
                                                                                        + +
                                                                                      +
                                                                                      +
                                                                                      + + + +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + + + + + + + + +
                                                                                      + +
                                                                                      +
                                                                                      + + + + +
                                                                                      +
                                                                                      +
                                                                                        +
                                                                                      • ܸȤ¥
                                                                                      • + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + + + + + + + + + + + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + ȫ> +
                                                                                        +
                                                                                        +

                                                                                        ¥

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                        + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                                        + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                                        + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                                        + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                                        + 5 + + + + + + -- + + BBS + +
                                                                                        + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                                        + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                                        + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                                        + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + ȫ> +
                                                                                        +
                                                                                        +

                                                                                        ¥

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                        + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                                        + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                                        + 3 + ά + + + + + -- + + -- + + +
                                                                                        + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                                        + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                                        + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                                        + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                                        + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                                        + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + ȫ> +
                                                                                        +
                                                                                        +

                                                                                        ¿

                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + +
                                                                                        +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                                        + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                                        + 3 + + + + + + -- + + BBS + +
                                                                                        + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                                        + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                                        + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                                        + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                                        + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                                        + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        + + +
                                                                                        + + + + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + ɫ¥|ȫ> +
                                                                                        + +
                                                                                        +

                                                                                        ¥Ƽ

                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + + +
                                                                                        +
                                                                                        + + + +
                                                                                        + + + + +
                                                                                        + + + + +
                                                                                        + + + +
                                                                                        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                        + + + + + +
                                                                                        +
                                                                                        + + վ + ϵ + ƸϢ + ¼
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        BزDݸز Ϸز ز ز
                                                                                        Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                         췿زFݷزJϷزSϺزW人ز
                                                                                         ɳزGݷزNϾز ڷز ز
                                                                                         ز ز ϲز ݷزXز
                                                                                         ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                        + +
                                                                                        + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                        + +
                                                                                        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                        +
                                                                                        ϺϢƼ޹˾ Ȩ
                                                                                        +
                                                                                        ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                        + +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking2 b/soufang/page/peking2 new file mode 100644 index 0000000..aaefb6e --- /dev/null +++ b/soufang/page/peking2 @@ -0,0 +1,5030 @@ + + + + + 㡤ɽ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        +
                                                                                        + + +
                                                                                        + + + + + + + + + + + + + + + +
                                                                                        + + +
                                                                                        + + + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        ų
                                                                                        +
                                                                                        ABCDFGH
                                                                                        +
                                                                                        JKLMNQST
                                                                                        +
                                                                                        WXYZ
                                                                                        + +
                                                                                        + +
                                                                                        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                        + + + + + + + +
                                                                                        + +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                          + + +
                                                                                        • Ͷ
                                                                                        • + +
                                                                                        • +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + + + + + +
                                                                                        +
                                                                                        + + + + + + + + + + + + + +
                                                                                        + + + + + + + + +
                                                                                        + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                          +
                                                                                        • +
                                                                                          + 㡤ɽЧͼ + +
                                                                                          +
                                                                                        • +
                                                                                        • +
                                                                                          + 㡤ɽͨͼ + +
                                                                                          +
                                                                                        • +
                                                                                        • +
                                                                                          + 㡤ɽʵͼ + +
                                                                                          +
                                                                                        • +
                                                                                        • +
                                                                                          + 㡤ɽ + +
                                                                                          +
                                                                                        • +
                                                                                        • +
                                                                                          + 㡤ɽܱͼ + +
                                                                                          +
                                                                                        • +
                                                                                        • +
                                                                                          + 㡤ɽͼ + +
                                                                                          +
                                                                                        • +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + + + + + +
                                                                                        + +
                                                                                        +
                                                                                        +

                                                                                        㡤ɽ

                                                                                        ɽ԰ ԰4.05
                                                                                        +
                                                                                        + +
                                                                                        + + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + ̼ + ַ + ԰ +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        ͣ

                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        Ŀַ

                                                                                          ̨·88
                                                                                        + +
                                                                                        + + + + +
                                                                                        +
                                                                                        +

                                                                                        ϸϢ>>

                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        +

                                                                                        ¥绰400-890-0000 ת 635835

                                                                                        +
                                                                                        + + + + +
                                                                                        + + + + + + +
                                                                                        + + + + + + + +
                                                                                        + +
                                                                                        + + + + +
                                                                                        + +
                                                                                        + + + +
                                                                                        +
                                                                                        + + + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        + +
                                                                                          +
                                                                                        + + +
                                                                                        +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +

                                                                                        㡤ɽ

                                                                                        +
                                                                                        + ľ(1)| + > +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        㡤ɽD3-B  4231   225O() +   

                                                                                        +

                                                                                        ֣4.8  5  ɹ5  5  ߴ5  ÷4 +

                                                                                        +

                                                                                        ͽռ䶼ܷڼҾߵİڷšռɹܺãԺͿܹ֤ܺõIJɹ⣻... +

                                                                                        +

                                                                                        + ϱͨ͸ͷ

                                                                                        +
                                                                                        + 1125 +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + +
                                                                                        + + + + + + + + +
                                                                                        +

                                                                                        㡤ɽ¥Ϣ

                                                                                        +
                                                                                        + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        + A1# + A2# + A3# + A4# + A5# + A6# + A7# + A8# + A10# + A9# + A11# + A12# + A13# + A14# + A15# + A16# + A17# + A18# + A19# +
                                                                                        + + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • ŬϢڴ
                                                                                        • +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + + + + +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ2
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 24
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + + +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ2
                                                                                        • һ
                                                                                        • ¥4
                                                                                        • 15
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ2
                                                                                        • 12
                                                                                        • ¥4
                                                                                        • 8
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ1
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 12
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ1
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 12
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ4
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 12
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ3
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 12
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ2
                                                                                        • 12
                                                                                        • ¥5
                                                                                        • 10
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ2
                                                                                        • 12
                                                                                        • ¥5
                                                                                        • 10
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ4
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 48
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ3
                                                                                        • 12
                                                                                        • ¥5
                                                                                        • 30
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ1
                                                                                        • 12
                                                                                        • ¥4
                                                                                        • 8
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ1
                                                                                        • 12
                                                                                        • ¥4
                                                                                        • 8
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ3
                                                                                        • 12
                                                                                        • ¥5
                                                                                        • 30
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ1
                                                                                        • 12
                                                                                        • ¥4
                                                                                        • 8
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ1
                                                                                        • 12
                                                                                        • ¥4
                                                                                        • 8
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ2
                                                                                        • 12
                                                                                        • ¥5
                                                                                        • 20
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ3
                                                                                        • 12
                                                                                        • ¥5
                                                                                        • 30
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ4
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 48
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ3
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 36
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • Ԫ3
                                                                                        • 12
                                                                                        • ¥6
                                                                                        • 36
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + +
                                                                                        +
                                                                                        +
                                                                                        + + + + + + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +

                                                                                        㡤ɽѶ

                                                                                        +
                                                                                        + Ѷ + ֪ʶ + ʴ +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        Ѷ +

                                                                                        㲻ٹµ,ɽѰ־ͬϵ

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        Ѷ +

                                                                                        H.OŶӼ ɽҵרȦ

                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        ֪ʶ +

                                                                                        ˣסڼȫ

                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        ʴ +

                                                                                        ҵѽ׸ûõԿףڸԿ֮ǰʱҪҵѺȡů

                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        ʴ +

                                                                                        ﻧķӿҪעʲô⣿

                                                                                        +
                                                                                        +
                                                                                        + + + + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + + + + +
                                                                                        + + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + + +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        + ͼ(1)| + ͨͼ(1)| + ʵͼ(61)| + Чͼ(21)| + (39)| + ͼ(4)| + > +
                                                                                        + +
                                                                                        +

                                                                                        㡤ɽ¥

                                                                                        (127)

                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        㡤ɽ

                                                                                        + >> +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        ¥̣סլ12ƽ۸
                                                                                        +
                                                                                        + 50000Ԫ/O + + + 0%
                                                                                        +
                                                                                        ·11¾ۣסլ
                                                                                        40948Ԫ/O0%
                                                                                        +
                                                                                        ַ̨11¾ۣסլ
                                                                                        54248Ԫ/O1.91%
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + + + +
                                                                                        +
                                                                                        +
                                                                                        㡤ɽ
                                                                                        >>
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +

                                                                                        +

                                                                                        ѡټ㷿

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        ѡͣ
                                                                                        +
                                                                                        +
                                                                                        + ѡ +
                                                                                        +
                                                                                          + +
                                                                                        • 4213 225.00ƽ
                                                                                        • +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        ܼۣ
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        ׸
                                                                                        +
                                                                                        +
                                                                                        + 3 + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + ҵ + +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        +
                                                                                        ʱ䣺
                                                                                        +
                                                                                        +
                                                                                        + 30꣨360ڣ + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                         
                                                                                        +
                                                                                         ȶϢ     ȶ +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        ˵

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        ¾Ԫ

                                                                                        + +
                                                                                          +
                                                                                        • ο׸
                                                                                        • +
                                                                                        • +
                                                                                        • ֧Ϣ
                                                                                        • +
                                                                                        • ʹ3.25%
                                                                                        • +
                                                                                        • ҵ4.9%
                                                                                        • +
                                                                                        +

                                                                                        >>

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + + + + + + +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                        • ϲ
                                                                                        • +
                                                                                        • ͬλ¥
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                          + + + +
                                                                                          +
                                                                                          +
                                                                                          + + + + + + + + +
                                                                                          + + + + + + +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + ȫ> +
                                                                                          +
                                                                                          +

                                                                                          ¥ +

                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                          ¥۸̳
                                                                                          + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                                          + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                                          + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                                          + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                                          + 5 + + + + + -- + + BBS + 3.88 +
                                                                                          + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                                          + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                                          + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                                          + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                                          + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + ȫ> +
                                                                                          +
                                                                                          +

                                                                                          ¥

                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                          ¥۸̳
                                                                                          + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                                          + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                                          + 3 + ά + + + + -- + + -- + 0.00 +
                                                                                          + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                                          + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                                          + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                                          + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                                          + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                                          + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                                          + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + ȫ> +
                                                                                          +
                                                                                          +

                                                                                          ¿

                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                                            + 2 + 齭ļó + + ͨ + + -- + + BBS + 4.10 +
                                                                                            + 3 + + + + + -- + + BBS + 4.30 +
                                                                                            + 4 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                                            + 5 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                                            + 6 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                                            + 7 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                                            + 8 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                                            + 9 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                                            + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + + + +
                                                                                            + + + + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + ɫ¥|ȫ> +
                                                                                            + +
                                                                                            +

                                                                                            ¥Ƽ

                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + + +
                                                                                            +
                                                                                            + + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            ֻ鿴㡤ɽ + ؼ +

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            ¥
                                                                                            +
                                                                                            + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            з
                                                                                            +
                                                                                            + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            ¥

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            + + + +
                                                                                            վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                                            + + + +
                                                                                            +
                                                                                            + + վ + ϵ + ƸϢ + ¼
                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            BزDݸز Ϸز ز ز
                                                                                            Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                             췿زFݷزJϷزSϺزW人ز
                                                                                             ɳزGݷزNϾز ڷز ز
                                                                                             ز ز ϲز ݷزXز
                                                                                             ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                            + +
                                                                                            + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                            + +
                                                                                            Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                            +
                                                                                            ϺϢƼ޹˾ Ȩ
                                                                                            +
                                                                                            ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                            + +
                                                                                            + + + + + + + +
                                                                                            + + + + + + + + + + + + + +
                                                                                            + + + + + + + + +
                                                                                            + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking20 b/soufang/page/peking20 new file mode 100644 index 0000000..6fea2d0 --- /dev/null +++ b/soufang/page/peking20 @@ -0,0 +1,6304 @@ + + + + + ʢص-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            +
                                                                                            + + + +
                                                                                            + + + + + + + + + + + + + + + + +
                                                                                            + + +
                                                                                            + + + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            ų
                                                                                            +
                                                                                            ABCDFGH
                                                                                            +
                                                                                            JKLMNQST
                                                                                            +
                                                                                            WXYZ
                                                                                            + +
                                                                                            + +
                                                                                            + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                            + + + + + + + +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                              + + +
                                                                                            • Ͷ
                                                                                            • + +
                                                                                            • +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +
                                                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            + + + + + + + + + + + + + +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + ɨ赽ֻ ¥ʱ +
                                                                                            +
                                                                                            +
                                                                                            + +

                                                                                            ʢص

                                                                                            + + + + + + + + +
                                                                                            +
                                                                                            +
                                                                                            + + ַ + εز +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                            + + + +
                                                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            +
                                                                                            +
                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            +
                                                                                            + + + +
                                                                                            +
                                                                                            + + + + + + + + + + + + + + + + +
                                                                                            + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                              +
                                                                                            • +
                                                                                              +
                                                                                              +
                                                                                              + ʢصƵ + + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢصȫ + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢصЧͼ + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢصͨͼ + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢص⾰ͼ + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢص + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢصֳ + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢصܱͼ + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            • +
                                                                                              +
                                                                                              + ʢصͼ + +
                                                                                              +
                                                                                              +
                                                                                            • +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            + + +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            + ƽ۸ 7800 Ԫ/ƽ +

                                                                                            +
                                                                                            + + +
                                                                                            + + 鿴۸ + +
                                                                                            +
                                                                                            + + + +
                                                                                            + +
                                                                                            + + + + + ֪ͨ + + + + + + + + + + + + + + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + + +
                                                                                            +
                                                                                            +

                                                                                            ûۣ

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                              + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + + + +
                                                                                            +

                                                                                            ¥̵ַ  ӱܱ߾ӳ2001

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            ͣ  + + + + (89O)    + + + + (98O)    + + + + (78O)    +

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            ϸϢ>>

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                              + +
                                                                                            • + ղ + + + + + +
                                                                                            • + +
                                                                                            • + ¥̶Ա +
                                                                                            • +
                                                                                            • + + ɨ赽ֻ + + + + +
                                                                                            • +
                                                                                            +
                                                                                            + + + + +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            ¥绰400-890-0000 ת 660416

                                                                                            +
                                                                                            + + + + +
                                                                                            + + + + + +
                                                                                            + + + + +
                                                                                            +
                                                                                            + + +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            >
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            +

                                                                                            ʢصҵ̳

                                                                                            + 50236 +
                                                                                            + + ͼ + Ȧ
                                                                                            + + +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + > +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + > +
                                                                                            +
                                                                                            +

                                                                                            ʢص¥ʴ

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + + + + + + + +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            ʢص¥Ϣ

                                                                                            +
                                                                                            +
                                                                                            + + + +
                                                                                            +
                                                                                            + + + + +
                                                                                            + +
                                                                                            +
                                                                                            ʢص¥б
                                                                                            +
                                                                                            + +
                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            + +
                                                                                            + (4)| + (8)| + + > +
                                                                                            + +
                                                                                            +

                                                                                            ʢصͼ(12)

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +
                                                                                            ѡ/¥㼼
                                                                                            +
                                                                                            >
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            + + +
                                                                                            +
                                                                                            + +
                                                                                            + ͼ(12)| + ͨͼ(2)| + ʵͼ(38)| + Чͼ(11)| + (44)| + ֳ(26)| + ͼ(50)| + > +
                                                                                            + +
                                                                                            +

                                                                                            ʢص¥(188)

                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            + +
                                                                                            + +
                                                                                            + + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            + + +

                                                                                            + +

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            + +
                                                                                            +

                                                                                            + ظ0 + 0 + n***4 2016-12-05 17:51:29  PC +

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +

                                                                                            + ô ڶǮ +

                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            + ظ0 + 0 + fang1****5 2016-12-03 16:10:44  iPhoneͻ +

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +

                                                                                            + ûзԴˡ +

                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            + ظ0 + 0 + soufunwa85213 2016-12-03 12:45:30  Androidͻ +

                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            ʢصPK

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            • ͬ
                                                                                            • ͬ۸
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                              + +
                                                                                            +
                                                                                            +
                                                                                            + + + +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + + + + + + + + +
                                                                                            + +
                                                                                            +
                                                                                            + + + + +
                                                                                            +
                                                                                            +
                                                                                              +
                                                                                            • ܸȤ¥
                                                                                            • +
                                                                                            • ͬλ¥
                                                                                            • +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              +
                                                                                              + + + + + + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + ȫ> +
                                                                                              +
                                                                                              +

                                                                                              ¥

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                              + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                                              + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                                              + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                                              + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                                              + 5 + + + + + + -- + + BBS + +
                                                                                              + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                                              + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                                              + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                                              + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + ȫ> +
                                                                                              +
                                                                                              +

                                                                                              ¥

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                              + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                                              + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                                              + 3 + ά + + + + + -- + + -- + + +
                                                                                              + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                                              + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                                              + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                                              + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                                              + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                                              + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + ȫ> +
                                                                                              +
                                                                                              +

                                                                                              ¿

                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                                +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + +
                                                                                              +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                                              + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                                              + 3 + + + + + + -- + + BBS + +
                                                                                              + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                                              + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                                              + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                                              + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                                              + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                                              + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              + + +
                                                                                              + + + + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + ɫ¥|ȫ> +
                                                                                              + +
                                                                                              +

                                                                                              ¥Ƽ

                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + + +
                                                                                              +
                                                                                              + + + +
                                                                                              + + + + +
                                                                                              + + + + +
                                                                                              + + + +
                                                                                              վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                              + + + + + +
                                                                                              +
                                                                                              + + վ + ϵ + ƸϢ + ¼
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              BزDݸز Ϸز ز ز
                                                                                              Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                               췿زFݷزJϷزSϺزW人ز
                                                                                               ɳزGݷزNϾز ڷز ز
                                                                                               ز ز ϲز ݷزXز
                                                                                               ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                              + +
                                                                                              + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                              + +
                                                                                              Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                              +
                                                                                              ϺϢƼ޹˾ Ȩ
                                                                                              +
                                                                                              ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                              + +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking21 b/soufang/page/peking21 new file mode 100644 index 0000000..5f00c2e --- /dev/null +++ b/soufang/page/peking21 @@ -0,0 +1,4153 @@ + + + + + ±-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              +
                                                                                              + + + +
                                                                                              + + + + + + + + + + + + + + + + +
                                                                                              + + +
                                                                                              + + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              ų
                                                                                              +
                                                                                              ABCDFGH
                                                                                              +
                                                                                              JKLMNQST
                                                                                              +
                                                                                              WXYZ
                                                                                              + +
                                                                                              + +
                                                                                              + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                              + + + + + + + +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                                + + +
                                                                                              • Ͷ
                                                                                              • + +
                                                                                              • +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              + + + + + + + + + + + + + +
                                                                                              + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + ɨ赽ֻ ¥ʱ +
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              ±

                                                                                              + + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              + ̼ + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              + + + +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              +
                                                                                              + + + +
                                                                                              +
                                                                                              + + + + + + + + + + + + + + + + +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                                +
                                                                                              • +
                                                                                                +
                                                                                                + ±ȫ + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              • +
                                                                                                +
                                                                                                + ±Чͼ + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              • +
                                                                                                +
                                                                                                + ±Ľͨͼ + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              • +
                                                                                                +
                                                                                                + ±⾰ͼ + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              • +
                                                                                                +
                                                                                                + ± + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              • +
                                                                                                +
                                                                                                + ±Ļֳ + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              • +
                                                                                                +
                                                                                                + ±ܱͼ + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              • +
                                                                                                +
                                                                                                + ±Ļͼ + +
                                                                                                +
                                                                                                +
                                                                                              • +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + +

                                                                                              +
                                                                                              + + +
                                                                                              + + 鿴۸ + +
                                                                                              +
                                                                                              + + + +
                                                                                              + +
                                                                                              + + + + + ֪ͨ + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + + +
                                                                                              +
                                                                                              +

                                                                                              ûۣ

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                                + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + + +
                                                                                              +

                                                                                              ¥̵ַ  ͨͨݱһ֣6߱վ

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              ͣ  + + + + (115O)    + + + + (151O)    + + + + (117O)    +

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              ϸϢ>>

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                                + +
                                                                                              • + ղ + + + + + +
                                                                                              • + +
                                                                                              • + ¥̶Ա +
                                                                                              • +
                                                                                              • + + ɨ赽ֻ + + + + +
                                                                                              • +
                                                                                              +
                                                                                              + + + + +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              ¥绰400-890-0000 ת 651301

                                                                                              +
                                                                                              + + + + +
                                                                                              + + + + + +
                                                                                              + + + + +
                                                                                              +
                                                                                              + + +
                                                                                              + + + + + + + +
                                                                                              +
                                                                                              + + + + + + + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              >
                                                                                              +
                                                                                              +

                                                                                              ±¥̶̬

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +

                                                                                              ±ҵ̳

                                                                                              + 2102 +
                                                                                              + + ͼ + Ȧ
                                                                                              + + +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + > +
                                                                                              +
                                                                                              +

                                                                                              ±Ѷ/֪ʶ

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + > +
                                                                                              +
                                                                                              +

                                                                                              ±¥ʴ

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + + + + + + + +
                                                                                              + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              ±¥Ϣ

                                                                                              +
                                                                                              +
                                                                                              + + + +
                                                                                              +
                                                                                              + + + + +
                                                                                              + +
                                                                                              +
                                                                                              ±¥б
                                                                                              +
                                                                                              + +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              + +
                                                                                              + һ(7)| + (3)| + + > +
                                                                                              + +
                                                                                              +

                                                                                              ±Ļͼ(10)

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              +
                                                                                              ѡ/¥㼼
                                                                                              +
                                                                                              >
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              + ͼ(10)| + ͨͼ(2)| + ʵͼ(36)| + Чͼ(23)| + (2)| + ֳ(11)| + ͼ(17)| + > +
                                                                                              + +
                                                                                              +

                                                                                              ±¥(101)

                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              + +
                                                                                              + +
                                                                                              + + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              + + +

                                                                                              + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              +

                                                                                              + ܺõĵλã˫Կ +

                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + ظ0 + 0 +  2016-12-01 11:41:41  Androidͻ +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              + +
                                                                                              +

                                                                                              + ظ5 + 11 + ĵIJ 2015-09-30 16:12:12  PC +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              + +
                                                                                              +

                                                                                              + ظ4 + 12 + soufun-w62571819 2015-09-01 16:29:48  PC +

                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              ±PK

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              • ͬ
                                                                                              • ͬ۸
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                                +
                                                                                              +
                                                                                                + +
                                                                                              +
                                                                                              +
                                                                                              + + + +
                                                                                              + +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + + + + + + + +
                                                                                              + + + + +
                                                                                              +
                                                                                              +
                                                                                                +
                                                                                              • ܸȤ¥
                                                                                              • + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + + + + + + + + + + + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + ȫ> +
                                                                                                +
                                                                                                +

                                                                                                ¥

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                                                + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                                                + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                                                + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                                                + 5 + + + + + + -- + + BBS + +
                                                                                                + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                                                + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                                                + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                                                + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + ȫ> +
                                                                                                +
                                                                                                +

                                                                                                ¥

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                                                + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                                                + 3 + ά + + + + + -- + + -- + + +
                                                                                                + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                                                + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                                                + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                                                + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                                                + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                                                + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + ȫ> +
                                                                                                +
                                                                                                +

                                                                                                ¿

                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + +
                                                                                                +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                                                + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                                                + 3 + + + + + + -- + + BBS + +
                                                                                                + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                                                + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                                                + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                                                + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                                                + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                                                + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                + + +
                                                                                                + + + + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + ɫ¥|ȫ> +
                                                                                                + +
                                                                                                +

                                                                                                ¥Ƽ

                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + + +
                                                                                                +
                                                                                                + + + +
                                                                                                + + + + +
                                                                                                + + + + + + +
                                                                                                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                                + + + + + +
                                                                                                +
                                                                                                + + վ + ϵ + ƸϢ + ¼
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                BزDݸز Ϸز ز ز
                                                                                                Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                 췿زFݷزJϷزSϺزW人ز
                                                                                                 ɳزGݷزNϾز ڷز ز
                                                                                                 ز ز ϲز ݷزXز
                                                                                                 ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                + +
                                                                                                + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                + +
                                                                                                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                +
                                                                                                ϺϢƼ޹˾ Ȩ
                                                                                                +
                                                                                                ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                + +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking3 b/soufang/page/peking3 new file mode 100644 index 0000000..beda1e6 --- /dev/null +++ b/soufang/page/peking3 @@ -0,0 +1,4281 @@ + + + + + ƽ̡̩Ժ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                +
                                                                                                + + +
                                                                                                + + + + + + + + + + + + + + + +
                                                                                                + + +
                                                                                                + + + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                ų
                                                                                                +
                                                                                                ABCDFGH
                                                                                                +
                                                                                                JKLMNQST
                                                                                                +
                                                                                                WXYZ
                                                                                                + +
                                                                                                + +
                                                                                                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                + + + + + + + +
                                                                                                + +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                  + + +
                                                                                                • Ͷ
                                                                                                • + +
                                                                                                • +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                + + + + + + + + + + + + + +
                                                                                                + + + + + + + + +
                                                                                                + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                  +
                                                                                                • +
                                                                                                  + ƽ̡̩Ժȫ + +
                                                                                                  +
                                                                                                • +
                                                                                                • +
                                                                                                  + ƽ̡̩ԺЧͼ + +
                                                                                                  +
                                                                                                • +
                                                                                                • +
                                                                                                  + ƽ̡̩Ժӽͨͼ + +
                                                                                                  +
                                                                                                • +
                                                                                                • +
                                                                                                  + ƽ̡̩Ժʵͼ + +
                                                                                                  +
                                                                                                • +
                                                                                                • +
                                                                                                  + ƽ̡̩Ժ + +
                                                                                                  +
                                                                                                • +
                                                                                                • +
                                                                                                  + ƽ̡̩Ժӻֳ + +
                                                                                                  +
                                                                                                • +
                                                                                                • +
                                                                                                  + ƽ̡̩Ժܱͼ + +
                                                                                                  +
                                                                                                • +
                                                                                                • +
                                                                                                  + ƽ̡̩Ժӻͼ + +
                                                                                                  +
                                                                                                • +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                ƽ̡̩Ժ

                                                                                                ԰4.35
                                                                                                +
                                                                                                + +
                                                                                                + + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + ܾ + ɫ + ס +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                ͣ

                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                Ŀַ

                                                                                                  ƽ廷,йش山º,ɳվ800״
                                                                                                + +
                                                                                                + + + + +
                                                                                                +
                                                                                                +

                                                                                                ϸϢ>>

                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                +

                                                                                                ¥绰400-890-0000 ת 833470

                                                                                                +
                                                                                                + + + + +
                                                                                                + + + + + + +
                                                                                                + + + + + + + +
                                                                                                + +
                                                                                                + + + + +
                                                                                                + +
                                                                                                + + + +
                                                                                                +
                                                                                                + + + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                + +
                                                                                                  +
                                                                                                + + +
                                                                                                +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                ƽ̡̩Ժӻ

                                                                                                +
                                                                                                + ľ(5)| + (16)| + (5)| + (10)| + > +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                ƽ̡̩ԺӶԺA-  7591   542O() +   

                                                                                                +

                                                                                                ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                                                                                +

                                                                                                ͽռ䷽ڿռʸߡȫͨ͸ĻͣסʶȽϸߡռгIJɹ⣬һں... +

                                                                                                +

                                                                                                + ϱͨ͸ȫͷ߸ռɹ

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                ƽ̡̩ԺӶԺB-  8671   552O() +   

                                                                                                +

                                                                                                ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                                                                                +

                                                                                                ͽռ䶼ܷڼҾߵİڷšȫͨ͸ĻͣסʶȽϸߡռгIJɹ⣬һ... +

                                                                                                +

                                                                                                + ϱͨ͸ȫͷ߸ռɹ

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                ƽ̡̩ԺӶԺC-  6681   441O() +   

                                                                                                +

                                                                                                ֣5  5  ɹ5  5  ߴ5  ÷5 +

                                                                                                +

                                                                                                ͽռ䷽ս٣Ѷȵͣռʡȫͣÿһռ䶼д֤... +

                                                                                                +

                                                                                                + ϱͨ͸ȫͷ߸ռɹ

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + +
                                                                                                + + + + + + + + +
                                                                                                +

                                                                                                ƽ̡̩Ժ¥Ϣ

                                                                                                +
                                                                                                + + + +
                                                                                                + + + + + +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                + 11# + 10# + 9# + 7# + 13# + 14# + 12# + 3# + 6# + 2# + 5# + 1# + 4# +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ1
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥3
                                                                                                • 14
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ1
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥3
                                                                                                • 12
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ1
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥3
                                                                                                • 12
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ1
                                                                                                • Ͳ
                                                                                                • ¥3
                                                                                                • 7
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ1
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥3
                                                                                                • 12
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ1
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥3
                                                                                                • 14
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ1
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥3
                                                                                                • 12
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ5
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥6
                                                                                                • 30
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ͳ
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ6
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥6
                                                                                                • 36
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ͳ
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ԫ3
                                                                                                • 11
                                                                                                • Ͳ
                                                                                                • ¥6
                                                                                                • 18
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • Ͳ
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                +
                                                                                                +
                                                                                                + + + + + + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +

                                                                                                ƽ̡̩ԺѶ

                                                                                                +
                                                                                                + Ѷ + ֪ʶ + ʴ +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                Ѷ +

                                                                                                Դ,Яֱƽ̩Ժ콭Ϲ

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                Ѷ +

                                                                                                :ؼЩ ֹۿ2016¥

                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                ֪ʶ +

                                                                                                ׸סլס 㻹İȫô

                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                ʴ +

                                                                                                ƽĹԢҳ

                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                ʴ +

                                                                                                42ڲƽǩԼͬ,ڼ۸,Ϊ˸,ҵгȵķӡԼ,

                                                                                                +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + + + + +
                                                                                                + + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                + ͼ(36)| + ͨͼ(2)| + ʵͼ(52)| + Чͼ(21)| + (19)| + ֳ(5)| + ͼ(5)| + > +
                                                                                                + +
                                                                                                +

                                                                                                ƽ̡̩Ժ¥

                                                                                                (140)

                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                ƽ̡̩Ժӷ

                                                                                                + >> +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                ¥̣סլ12ͼ۸
                                                                                                +
                                                                                                + + 950Ԫ/ + + + + 0%
                                                                                                +
                                                                                                ·11¾ۣסլ
                                                                                                40948Ԫ/O0%
                                                                                                +
                                                                                                ƽַ11¾ۣסլ
                                                                                                37598Ԫ/O5.04%
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                +
                                                                                                ƽ̡̩Ժӷ
                                                                                                >>
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +

                                                                                                +

                                                                                                ѡټ㷿

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                ѡͣ
                                                                                                +
                                                                                                +
                                                                                                + ѡ +
                                                                                                +
                                                                                                  + +
                                                                                                • 7519 542.00ƽ
                                                                                                • + +
                                                                                                • 8617 552.00ƽ
                                                                                                • + +
                                                                                                • 6618 441.00ƽ
                                                                                                • +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                ܼۣ
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                ׸
                                                                                                +
                                                                                                +
                                                                                                + 3 + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + ҵ + +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                +
                                                                                                ʱ䣺
                                                                                                +
                                                                                                +
                                                                                                + 30꣨360ڣ + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                 
                                                                                                +
                                                                                                 ȶϢ     ȶ +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                ˵

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                ¾Ԫ

                                                                                                + +
                                                                                                  +
                                                                                                • ο׸
                                                                                                • +
                                                                                                • +
                                                                                                • ֧Ϣ
                                                                                                • +
                                                                                                • ʹ3.25%
                                                                                                • +
                                                                                                • ҵ4.9%
                                                                                                • +
                                                                                                +

                                                                                                >>

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + + + + + +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                • ϲ
                                                                                                • +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + + +
                                                                                                  + + + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + ȫ> +
                                                                                                  +
                                                                                                  +

                                                                                                  ¥ +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  ¥۸̳
                                                                                                  + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                                                  + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                                                  + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                                                  + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                                                  + 5 + + + + + -- + + BBS + 3.88 +
                                                                                                  + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                                                  + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                                                  + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                                                  + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                                                  + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + ȫ> +
                                                                                                  +
                                                                                                  +

                                                                                                  ¥

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  ¥۸̳
                                                                                                  + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                                                  + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                                                  + 3 + ά + + + + -- + + -- + 0.00 +
                                                                                                  + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                                                  + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                                                  + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                                                  + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                                                  + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                                                  + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                                                  + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + ȫ> +
                                                                                                  +
                                                                                                  +

                                                                                                  ¿

                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                                                    + 2 + + + + + -- + + BBS + 4.30 +
                                                                                                    + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                                                    + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                                                    + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                                                    + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                                                    + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                                                    + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                                                    + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                                                                                    + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + ɫ¥|ȫ> +
                                                                                                    + +
                                                                                                    +

                                                                                                    ¥Ƽ

                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + + +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    ֻ鿴ƽ̡̩Ժ + ؼ +

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    ¥
                                                                                                    +
                                                                                                    + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    з
                                                                                                    +
                                                                                                    + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    ¥

                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + + + + +
                                                                                                    վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                                                    + + + +
                                                                                                    +
                                                                                                    + + վ + ϵ + ƸϢ + ¼
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    BزDݸز Ϸز ز ز
                                                                                                    Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                     췿زFݷزJϷزSϺزW人ز
                                                                                                     ɳزGݷزNϾز ڷز ز
                                                                                                     ز ز ϲز ݷزXز
                                                                                                     ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                    + +
                                                                                                    + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                    + +
                                                                                                    Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                    +
                                                                                                    ϺϢƼ޹˾ Ȩ
                                                                                                    +
                                                                                                    ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                    + +
                                                                                                    + + + + + + + +
                                                                                                    + + + + + + + + + + + + + +
                                                                                                    + + + + + + + + +
                                                                                                    + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking4 b/soufang/page/peking4 new file mode 100644 index 0000000..ff89ff7 --- /dev/null +++ b/soufang/page/peking4 @@ -0,0 +1,4133 @@ + + + + + ̩㳡-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    + + + + + + + + + + + + + + + +
                                                                                                    + + +
                                                                                                    + + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    ų
                                                                                                    +
                                                                                                    ABCDFGH
                                                                                                    +
                                                                                                    JKLMNQST
                                                                                                    +
                                                                                                    WXYZ
                                                                                                    + +
                                                                                                    + +
                                                                                                    + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                    + + + + + + + +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                      + + +
                                                                                                    • Ͷ
                                                                                                    • + +
                                                                                                    • +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    + + + + + + + + + + + + + +
                                                                                                    + + + + + + + + +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                      +
                                                                                                    • +
                                                                                                      + ̩㳡Чͼ + +
                                                                                                      +
                                                                                                    • +
                                                                                                    • +
                                                                                                      + ̩㳡ͨͼ + +
                                                                                                      +
                                                                                                    • +
                                                                                                    • +
                                                                                                      + ̩㳡ʵͼ + +
                                                                                                      +
                                                                                                    • +
                                                                                                    • +
                                                                                                      + ̩㳡ܱͼ + +
                                                                                                      +
                                                                                                    • +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + + + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +

                                                                                                    ̩㳡

                                                                                                    ̩ ̩̽4.15
                                                                                                    +
                                                                                                    + +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + ̼ + ƷƵز +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    ͣ

                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    Ŀַ

                                                                                                      ˵4ׯ100״
                                                                                                    + +
                                                                                                    + + + + +
                                                                                                    +
                                                                                                    +

                                                                                                    ϸϢ>>

                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    +

                                                                                                    ¥绰400-890-0000 ת 802289

                                                                                                    +
                                                                                                    + + + + +
                                                                                                    + + + + + + +
                                                                                                    + + + + + + + +
                                                                                                    + +
                                                                                                    + + + + +
                                                                                                    + +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    + +
                                                                                                      +
                                                                                                    + + +
                                                                                                    +
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    +
                                                                                                    + + + + +
                                                                                                    + + + + + + + + +
                                                                                                    +

                                                                                                    ̩㳡¥Ϣ

                                                                                                    +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    + 21c-1# + 21c-2# + 21a-2# + 21a-1# + 016a-3# + 016a-2# + 016a-1# + 017-1#... + 017-4# + 017-5# + 017-2# + 017-3# +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 316
                                                                                                    • С߲
                                                                                                    • ¥9
                                                                                                    • 161
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 316
                                                                                                    • С߲
                                                                                                    • ¥9
                                                                                                    • 142
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 519
                                                                                                    • С߲
                                                                                                    • ¥9
                                                                                                    • 170
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 417
                                                                                                    • С߲
                                                                                                    • ¥9
                                                                                                    • 146
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 418
                                                                                                    • С߲
                                                                                                    • ¥9
                                                                                                    • 160
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 416
                                                                                                    • С߲
                                                                                                    • ¥9
                                                                                                    • 142
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 418
                                                                                                    • С߲
                                                                                                    • ¥9
                                                                                                    • 161
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 426
                                                                                                    • С߲
                                                                                                    • ¥23
                                                                                                    • 389
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 426
                                                                                                    • С߲
                                                                                                    • ¥23
                                                                                                    • 390
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • Ԫ1
                                                                                                    • 426
                                                                                                    • С߲
                                                                                                    • ¥23
                                                                                                    • 390
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +

                                                                                                    ̩㳡

                                                                                                    95
                                                                                                    + >> +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +

                                                                                                    ̩㳡Ѷ

                                                                                                    +
                                                                                                    + Ѷ + ֪ʶ + ʴ +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    Ѷ +

                                                                                                    ̩㳡廷ϵĺ÷ ס

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    Ѷ +

                                                                                                    270ȹ۾,̩㳡÷۵

                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    ֪ʶ +

                                                                                                    ˣסڼȫ

                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    ʴ +

                                                                                                    ̩㳡ʲôʱ¥ַ

                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    ʴ +

                                                                                                    ̩㳡װô,ëǾװ?

                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    + ͨͼ(3)| + ʵͼ(96)| + Чͼ(11)| + ͼ(38)| + > +
                                                                                                    + +
                                                                                                    +

                                                                                                    ̩㳡¥

                                                                                                    (148)

                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    ̩㳡

                                                                                                    + >> +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    ¥̣סլ12ƽ۸
                                                                                                    +
                                                                                                    + 53800Ԫ/O + + + 2.23%
                                                                                                    +
                                                                                                    ·11¾ۣסլ
                                                                                                    40948Ԫ/O0%
                                                                                                    +
                                                                                                    ˶ַ11¾ۣסլ
                                                                                                    42386Ԫ/O3.62%
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    ̩㳡
                                                                                                    >>
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +

                                                                                                    +

                                                                                                    ѡټ㷿

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    ѡͣ
                                                                                                    +
                                                                                                    +
                                                                                                    + ޻ +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    ܼۣ
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    ׸
                                                                                                    +
                                                                                                    +
                                                                                                    + 3 + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + ҵ + +
                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +
                                                                                                    ʱ䣺
                                                                                                    +
                                                                                                    +
                                                                                                    + 30꣨360ڣ + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                     
                                                                                                    +
                                                                                                     ȶϢ     ȶ +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    ˵

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    ¾Ԫ

                                                                                                    + +
                                                                                                      +
                                                                                                    • ο׸
                                                                                                    • +
                                                                                                    • +
                                                                                                    • ֧Ϣ
                                                                                                    • +
                                                                                                    • ʹ3.25%
                                                                                                    • +
                                                                                                    • ҵ4.9%
                                                                                                    • +
                                                                                                    +

                                                                                                    >>

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + + + +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                    • ϲ
                                                                                                    • +
                                                                                                    • ͬλ¥
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                      + + + +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + + + + +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + ȫ> +
                                                                                                      +
                                                                                                      +

                                                                                                      ¥ +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                      ¥۸̳
                                                                                                      + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                                                      + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                                                      + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                                                      + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                                                      + 5 + + + + + -- + + BBS + 3.88 +
                                                                                                      + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                                                      + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                                                      + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                                                      + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                                                      + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + ȫ> +
                                                                                                      +
                                                                                                      +

                                                                                                      ¥

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                      ¥۸̳
                                                                                                      + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                                                      + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                                                      + 3 + ά + + + + -- + + -- + 0.00 +
                                                                                                      + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                                                      + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                                                      + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                                                      + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                                                      + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                                                      + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                                                      + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + ȫ> +
                                                                                                      +
                                                                                                      +

                                                                                                      ¿

                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                                                        + 2 + + + + + -- + + BBS + 4.30 +
                                                                                                        + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                                                        + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                                                        + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                                                        + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                                                        + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                                                        + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                                                        + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                                                                                        + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + ɫ¥|ȫ> +
                                                                                                        + +
                                                                                                        +

                                                                                                        ¥Ƽ

                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ֻ鿴̩㳡 + ؼ +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ¥
                                                                                                        +
                                                                                                        + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        з
                                                                                                        +
                                                                                                        + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ¥

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                                                        + + + +
                                                                                                        +
                                                                                                        + + վ + ϵ + ƸϢ + ¼
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        BزDݸز Ϸز ز ز
                                                                                                        Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                         췿زFݷزJϷزSϺزW人ز
                                                                                                         ɳزGݷزNϾز ڷز ز
                                                                                                         ز ز ϲز ݷزXز
                                                                                                         ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                        + +
                                                                                                        + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                        + +
                                                                                                        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                        +
                                                                                                        ϺϢƼ޹˾ Ȩ
                                                                                                        +
                                                                                                        ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                        + +
                                                                                                        + + + + + + + +
                                                                                                        + + + + + + + + + + + + + +
                                                                                                        + + + + + + + + +
                                                                                                        + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking5 b/soufang/page/peking5 new file mode 100644 index 0000000..aabb468 --- /dev/null +++ b/soufang/page/peking5 @@ -0,0 +1,5732 @@ + + + +ѧ԰-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        ų
                                                                                                        +
                                                                                                        ABCDFGH
                                                                                                        +
                                                                                                        JKLMNQST
                                                                                                        +
                                                                                                        WXYZ
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                        + + + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                          + + +
                                                                                                        • Ͷ
                                                                                                        • + +
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ɨ赽ֻ ¥ʱ
                                                                                                        +
                                                                                                        + +
                                                                                                        + ̼ + סլ + ܼ + С +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        + + + + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                        • +

                                                                                                          + + +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ȫ

                                                                                                          + + ȫ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          Чͼ

                                                                                                          + + Чͼ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ͨͼ

                                                                                                          + + ͨͼ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ʵͼ

                                                                                                          + + ʵͼ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          + + +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ܱͼ

                                                                                                          + + ܱͼ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ͼ

                                                                                                          + + ͼ +
                                                                                                        • + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + ƽ۸ 18500 Ԫ/ƽ +

                                                                                                        +
                                                                                                        +
                                                                                                        + + 鿴۸ + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        + +
                                                                                                        + + + + + ֪ͨ + + + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        ͣ  + + + + (91O)    + + + + (95O)    + + + + (93O)    +

                                                                                                        +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +

                                                                                                        ¥̵ַ  ̰н1061000·

                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +

                                                                                                        ¿̣  2016-11-15

                                                                                                        +
                                                                                                        +
                                                                                                        + ֪ͨ +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ʱ䣺  2018-10-31

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        Ȩޣ  70

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ͣ  

                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +

                                                                                                        ûۣ

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                          + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        ϸϢ>>

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                          + +
                                                                                                        • + ղ + + +
                                                                                                        • + +
                                                                                                        • + ¥̶Ա +
                                                                                                        • +
                                                                                                        • + + ɨ赽ֻ + + + + +
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        Ż
                                                                                                        ʱ
                                                                                                        +
                                                                                                        ʵԴ
                                                                                                        ۸ʵ͸¥ͬ
                                                                                                        +
                                                                                                        ѡ
                                                                                                        ɱԴ24Сʱ
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        ʵʱ
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        ͷ400-890-0000ת832902 + Ż>> + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + + + + + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        ͻ

                                                                                                        400-890-0000ת832902

                                                                                                        +
                                                                                                          +
                                                                                                        • +
                                                                                                          + +
                                                                                                          + + +
                                                                                                          + +
                                                                                                          +

                                                                                                          + +

                                                                                                          +

                                                                                                          ת235430

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          + +
                                                                                                          + + +
                                                                                                          + +
                                                                                                          +

                                                                                                          + · +

                                                                                                          +

                                                                                                          ת266022

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          + +
                                                                                                          + + +
                                                                                                          + +
                                                                                                          +

                                                                                                          + +

                                                                                                          +

                                                                                                          ת250205

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        ද̬ | >>¥̶̬
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ̬
                                                                                                        +
                                                                                                        +

                                                                                                        2016-11-22ѧ԰7¥ѿ88-90ƽ2

                                                                                                        +

                                                                                                        ѧ԰ڽڿ7¥7¥Ϊ԰󷿡ѧ԰7¥14㣬Ϊ24ƣΪ88-90ƽ2ӣ18500Ԫ/ƽܼ185/ĿΪ70ȨԤƽʱΪ2018... Ķȫ>

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        2016-12-07áǮˢӡ1.8ҵ 䶬Ͼ

                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        ۻ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        5#91.89O
                                                                                                        +
                                                                                                        +

                                                                                                        2211  91.89ƽ

                                                                                                        +

                                                                                                        ͽ

                                                                                                        +

                                                                                                        ȫԳ˫̨

                                                                                                        +
                                                                                                        163.47Ԫѡ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        5#95.90Oͼ
                                                                                                        +
                                                                                                        +

                                                                                                        2211  95.90ƽ

                                                                                                        +

                                                                                                        ͽ

                                                                                                        +

                                                                                                        ˫̨Գȫ

                                                                                                        +
                                                                                                        168.89Ԫѡ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        Ϣ
                                                                                                        +
                                                                                                        + ۸䶯 ֪ͨ +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + +
                                                                                                        + + + + + + + + + +
                                                                                                        +
                                                                                                        Ȥ¥
                                                                                                        +
                                                                                                        +
                                                                                                          + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + + + + +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        ѧ԰¥Ϣ
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                        • +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        ͬ¥
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        ͬλ¥
                                                                                                        + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        ܱ
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ¥̣סլƽ۸
                                                                                                        +
                                                                                                        + 18500Ԫ/O + 11 + + -- +
                                                                                                        +
                                                                                                        ̰·סլ
                                                                                                        16271Ԫ/O11--
                                                                                                        +
                                                                                                        ۣסլ
                                                                                                        40948Ԫ/O11--
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        2016
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +

                                                                                                        ѡټ㷿

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ѡͣ
                                                                                                        +
                                                                                                        +
                                                                                                        + ѡ +
                                                                                                        +
                                                                                                          + +
                                                                                                        • 2211 91.89ƽ
                                                                                                        • + +
                                                                                                        • 2211 95.90ƽ
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ܼۣ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ׸
                                                                                                        + 3 +
                                                                                                        +
                                                                                                          +
                                                                                                        • 1
                                                                                                        • +
                                                                                                        • 2
                                                                                                        • +
                                                                                                        • 3
                                                                                                        • +
                                                                                                        • 4
                                                                                                        • +
                                                                                                        • 5
                                                                                                        • +
                                                                                                        • 6
                                                                                                        • +
                                                                                                        • 7
                                                                                                        • +
                                                                                                        • 8
                                                                                                        • +
                                                                                                        • 9
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                          +
                                                                                                        • ҵ
                                                                                                        • +
                                                                                                        • +
                                                                                                        • ϴ
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        ʱ䣺
                                                                                                        + 30꣨360ڣ +
                                                                                                        +
                                                                                                          +
                                                                                                        • 1꣨12ڣ
                                                                                                        • +
                                                                                                        • 2꣨24ڣ
                                                                                                        • +
                                                                                                        • 3꣨36ڣ
                                                                                                        • +
                                                                                                        • 4꣨48ڣ
                                                                                                        • +
                                                                                                        • 5꣨60ڣ
                                                                                                        • +
                                                                                                        • 6꣨72ڣ
                                                                                                        • +
                                                                                                        • 7꣨84ڣ
                                                                                                        • +
                                                                                                        • 8꣨96ڣ
                                                                                                        • +
                                                                                                        • 9꣨108ڣ
                                                                                                        • +
                                                                                                        • 10꣨120ڣ
                                                                                                        • +
                                                                                                        • 11꣨132ڣ
                                                                                                        • +
                                                                                                        • 12꣨144ڣ
                                                                                                        • +
                                                                                                        • 13꣨156ڣ
                                                                                                        • +
                                                                                                        • 14꣨168ڣ
                                                                                                        • +
                                                                                                        • 15꣨180ڣ
                                                                                                        • +
                                                                                                        • 16꣨192ڣ
                                                                                                        • +
                                                                                                        • 17꣨204ڣ
                                                                                                        • +
                                                                                                        • 18꣨216ڣ
                                                                                                        • +
                                                                                                        • 19꣨228ڣ
                                                                                                        • +
                                                                                                        • 20꣨240ڣ
                                                                                                        • +
                                                                                                        • 25꣨300ڣ
                                                                                                        • +
                                                                                                        • 30꣨360ڣ
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                         
                                                                                                        ȶϢ  ȶ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ˵

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ¾Ԫ

                                                                                                        + + +
                                                                                                          +
                                                                                                        • ο׸
                                                                                                        • +
                                                                                                        • +
                                                                                                        • ֧Ϣ
                                                                                                        • +
                                                                                                        • ʹ3.25%
                                                                                                        • +
                                                                                                        • ҵ4.9%
                                                                                                        • +
                                                                                                        +

                                                                                                        >>

                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + +
                                                                                                        ֪
                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +

                                                                                                        +
                                                                                                        +
                                                                                                        Q1ΪʲôҪ֧·ѣ
                                                                                                        +
                                                                                                        Ԥ·Ѻ󣬲ŻΪһʵԸǿҵĿͻǻɳרҵŶΪṩȫλ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        Q2򷿷Ƿˣ
                                                                                                        +
                                                                                                        YESûڽ׹иǰʱֹף½ʱ˻û֧ķѣڣԷԴ⡢ԸڵȡʵչûȨ档
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        Q3ѡȫʲôģ
                                                                                                        +
                                                                                                        ѡǷ״Ļģʽûͨ򷿣ϲ鿴¥̻Ϣ->ѯ->ѡԴ->ȷǩ򷿺ͬ->ȷܷŻݡ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        ¥Ƽ
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        ؼ
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        ¥
                                                                                                        +
                                                                                                        + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        з
                                                                                                        +
                                                                                                        + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        ¥
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        + + վ + ϵ + ƸϢ + ¼
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        BزDݸز Ϸز ز ز
                                                                                                        Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                         췿زFݷزJϷزSϺزW人ز
                                                                                                         ɳزGݷزNϾز ڷز ز
                                                                                                         ز ز ϲز ݷزXز
                                                                                                         ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                        + +
                                                                                                        + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                        + +
                                                                                                        Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                        +
                                                                                                        ϺϢƼ޹˾ Ȩ
                                                                                                        +
                                                                                                        ͷ绰400-850-8888 ΥϢٱ䣺jubao@fang.com
                                                                                                        + +
                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                        + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking6 b/soufang/page/peking6 new file mode 100644 index 0000000..86e6313 --- /dev/null +++ b/soufang/page/peking6 @@ -0,0 +1,5831 @@ + + + + + Ҽ-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        + + + + + + + + + + + + + + + + +
                                                                                                        + + +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        ų
                                                                                                        +
                                                                                                        ABCDFGH
                                                                                                        +
                                                                                                        JKLMNQST
                                                                                                        +
                                                                                                        WXYZ
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                        + + + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                          + + +
                                                                                                        • Ͷ
                                                                                                        • + +
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        + + + + + + + + + + + + + +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + ɨ赽ֻ ¥ʱ +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        Ҽ

                                                                                                        + + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + ̼ + LOFT +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + + + +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        S1סԢ ɽһˮȻ̬ס

                                                                                                        +
                                                                                                          +
                                                                                                        • 200
                                                                                                        • + +
                                                                                                        • רʷ
                                                                                                        • +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                        • +
                                                                                                        • +
                                                                                                        • ʱ
                                                                                                        • +
                                                                                                        • +
                                                                                                        • +
                                                                                                        • +
                                                                                                        • +
                                                                                                        +
                                                                                                        21˲
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + ԤԼ +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                          +
                                                                                                        • +
                                                                                                          +
                                                                                                          +
                                                                                                          + ҼƵ + + +
                                                                                                          +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          +
                                                                                                          + Ҽȫ + +
                                                                                                          +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          +
                                                                                                          + ҼЧͼ + +
                                                                                                          +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          +
                                                                                                          + ҼŽͨͼ + +
                                                                                                          +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          +
                                                                                                          + Ҽʵͼ + +
                                                                                                          +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          +
                                                                                                          + Ҽ + +
                                                                                                          +
                                                                                                          +
                                                                                                        • +
                                                                                                        • +
                                                                                                          +
                                                                                                          + ҼŻͼ + +
                                                                                                          +
                                                                                                          +
                                                                                                        • +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                        • +

                                                                                                          Ƶ

                                                                                                          + + Ƶ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ȫ

                                                                                                          + + ȫ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          Чͼ

                                                                                                          + + Чͼ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ͨͼ

                                                                                                          + + ͨͼ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ʵͼ

                                                                                                          + + ʵͼ +
                                                                                                        • +
                                                                                                        • +

                                                                                                          + + +
                                                                                                        • +
                                                                                                        • +

                                                                                                          ͼ

                                                                                                          + + ͼ +
                                                                                                        • +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + ƽ۸ 43000 Ԫ/ƽ +

                                                                                                        +
                                                                                                        +
                                                                                                        + + 鿴۸ + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        + +
                                                                                                        + + + + + ֪ͨ + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +

                                                                                                        ûۣ

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                          + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +

                                                                                                        ¥̵ַ  ͷʯ·62100ҼŽӴ

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ͣ  + + + + (69O)    + + + + (71O)    + + + + (80O)    +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ϸϢ>>

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                          + +
                                                                                                        • + ղ + + + + + +
                                                                                                        • + +
                                                                                                        • + ¥̶Ա +
                                                                                                        • +
                                                                                                        • + + ɨ赽ֻ + + + + +
                                                                                                        • +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        ¥绰400-890-0000 ת 805330

                                                                                                        +
                                                                                                        + + + + +
                                                                                                        + + + + + +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        >
                                                                                                        +
                                                                                                        +

                                                                                                        Ҽ¥̶̬

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +

                                                                                                        Ҽҵ̳

                                                                                                        + 2560 +
                                                                                                        + + ͼ + Ȧ
                                                                                                        + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + > +
                                                                                                        +
                                                                                                        +

                                                                                                        ҼѶ/֪ʶ

                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + > +
                                                                                                        +
                                                                                                        +

                                                                                                        Ҽ¥ʴ

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + + + +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        Ҽ¥Ϣ

                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +
                                                                                                          + +
                                                                                                        • 1
                                                                                                        • + +
                                                                                                        • 2
                                                                                                        • +
                                                                                                        + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        Ҽ¥б
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + һ(3)| + (18)| + (11)| + + > +
                                                                                                        + +
                                                                                                        +

                                                                                                        ҼŻͼ(32)

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +
                                                                                                        ѡ/¥㼼
                                                                                                        +
                                                                                                        >
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + ͼ(32)| + ͨͼ(2)| + ʵͼ(25)| + Чͼ(18)| + (40)| + > +
                                                                                                        + +
                                                                                                        +

                                                                                                        Ҽ¥(117)

                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + +

                                                                                                        + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        +

                                                                                                        + ظ0 + 3 +  2016-12-02 17:16:11  Androidͻ +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        +

                                                                                                        + ظ0 + 2 +  2016-11-30 11:02:45  Androidͻ +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        +

                                                                                                        + ظ0 + 1 + zhangsizhu 2016-12-02 17:45:27  PC +

                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        ҼPK

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        • ͬ
                                                                                                        • ͬ۸
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                          +
                                                                                                        +
                                                                                                          + +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                        • ܸȤ¥
                                                                                                        • + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + ȫ> +
                                                                                                          +
                                                                                                          +

                                                                                                          ¥

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                          + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                                                          + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                                                          + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                                                          + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                                                          + 5 + + + + + + -- + + BBS + +
                                                                                                          + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                                                          + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                                                          + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                                                          + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + ȫ> +
                                                                                                          +
                                                                                                          +

                                                                                                          ¥

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                          + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                                                          + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                                                          + 3 + ά + + + + + -- + + -- + + +
                                                                                                          + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                                                          + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                                                          + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                                                          + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                                                          + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                                                          + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + ȫ> +
                                                                                                          +
                                                                                                          +

                                                                                                          ¿

                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                                                          + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                                                          + 3 + + + + + + -- + + BBS + +
                                                                                                          + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                                                          + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                                                          + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                                                          + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                                                          + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                                                          + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + ɫ¥|ȫ> +
                                                                                                          + +
                                                                                                          +

                                                                                                          ¥Ƽ

                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          + + + + +
                                                                                                          + + + + + + +
                                                                                                          վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                                          + + + + + +
                                                                                                          +
                                                                                                          + + վ + ϵ + ƸϢ + ¼
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          BزDݸز Ϸز ز ز
                                                                                                          Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                           췿زFݷزJϷزSϺزW人ز
                                                                                                           ɳزGݷزNϾز ڷز ز
                                                                                                           ز ز ϲز ݷزXز
                                                                                                           ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                          + +
                                                                                                          + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                          + +
                                                                                                          Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                          +
                                                                                                          ϺϢƼ޹˾ Ȩ
                                                                                                          +
                                                                                                          ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                          + +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking7 b/soufang/page/peking7 new file mode 100644 index 0000000..b47811e --- /dev/null +++ b/soufang/page/peking7 @@ -0,0 +1,4201 @@ + + + + + 齭ļó-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          +
                                                                                                          + + +
                                                                                                          + + + + + + + + + + + + + + + +
                                                                                                          + + +
                                                                                                          + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          ų
                                                                                                          +
                                                                                                          ABCDFGH
                                                                                                          +
                                                                                                          JKLMNQST
                                                                                                          +
                                                                                                          WXYZ
                                                                                                          + +
                                                                                                          + +
                                                                                                          + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                          + + + + + + + +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                            + + +
                                                                                                          • Ͷ
                                                                                                          • + +
                                                                                                          • +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + + +
                                                                                                          + + + + + + + + +
                                                                                                          + + + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                            +
                                                                                                          • +
                                                                                                            + 齭ļóЧͼ + +
                                                                                                            +
                                                                                                          • +
                                                                                                          • +
                                                                                                            + 齭ļóǽͨͼ + +
                                                                                                            +
                                                                                                          • +
                                                                                                          • +
                                                                                                            + 齭ļóȫ + +
                                                                                                            +
                                                                                                          • +
                                                                                                          • +
                                                                                                            + 齭ļó⾰ͼ + +
                                                                                                            +
                                                                                                          • +
                                                                                                          • +
                                                                                                            + 齭ļó + +
                                                                                                            +
                                                                                                          • +
                                                                                                          • +
                                                                                                            + 齭ļóǻֳ + +
                                                                                                            +
                                                                                                          • +
                                                                                                          • +
                                                                                                            + 齭ļóܱͼ + +
                                                                                                            +
                                                                                                          • +
                                                                                                          • +
                                                                                                            + 齭ļóǻͼ + +
                                                                                                            +
                                                                                                          • +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + + + + + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +

                                                                                                          齭ļó

                                                                                                          齭ļ4.15
                                                                                                          +
                                                                                                          + +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + ̼ + Ƽסլ +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          ͣ

                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          Ŀַ

                                                                                                            ͨݴׯ·ˮ
                                                                                                          + +
                                                                                                          + + + + +
                                                                                                          +
                                                                                                          +

                                                                                                          ϸϢ>>

                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          +

                                                                                                          ¥绰400-890-0000 ת 620540

                                                                                                          +
                                                                                                          + + + + +
                                                                                                          + + + + + + +
                                                                                                          + + + + + + + +
                                                                                                          + +
                                                                                                          + + + + +
                                                                                                          + +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + +
                                                                                                            +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          +
                                                                                                          + + + + +
                                                                                                          + + + + + + + + +
                                                                                                          +

                                                                                                          齭ļó¥Ϣ

                                                                                                          +
                                                                                                          + + + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          + ַ5# + ַ16# + ַ9# + ַ17# + ַ11# + ַ3# + ַ7# + ַ14# + ַ13# + ַ1# + ַ19# + ַ15# +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 170
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 160
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ2
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 340
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 170
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 170
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 170
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 173
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 161
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 170
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥9
                                                                                                          • 167
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • Ԫ1
                                                                                                          • 315
                                                                                                          • С߲
                                                                                                          • ¥12
                                                                                                          • 170
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +

                                                                                                          齭ļóѶ

                                                                                                          +
                                                                                                          + Ѷ + ֪ʶ + ʴ +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          Ѷ +

                                                                                                          ܱܱԤƿ2 ͨ齭ļóǼ

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          Ѷ +

                                                                                                          齭ļóǡ廷һ3.3¥ ַ

                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          ֪ʶ +

                                                                                                          ˣסڼȫ

                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          ʴ +

                                                                                                          齭ļóʲôʱ¥ַ

                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          ʴ +

                                                                                                          齭ļóǷ

                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + + +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          + ͨͼ(2)| + ʵͼ(183)| + Чͼ(19)| + (28)| + ֳ(15)| + ͼ(26)| + > +
                                                                                                          + +
                                                                                                          +

                                                                                                          齭ļó¥

                                                                                                          (277)

                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          齭ļóǷ

                                                                                                          + >> +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          ¥̣סլ12¼۸
                                                                                                          +
                                                                                                          + + + 0%
                                                                                                          +
                                                                                                          ·11¾ۣסլ
                                                                                                          40948Ԫ/O0%
                                                                                                          +
                                                                                                          ͨݶַ11¾ۣסլ
                                                                                                          44109Ԫ/O2.54%
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          齭ļóǷ
                                                                                                          >>
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +

                                                                                                          +

                                                                                                          ѡټ㷿

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          ѡͣ
                                                                                                          +
                                                                                                          +
                                                                                                          + ޻ +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          ܼۣ
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          ׸
                                                                                                          +
                                                                                                          +
                                                                                                          + 3 + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + ҵ + +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +
                                                                                                          ʱ䣺
                                                                                                          +
                                                                                                          +
                                                                                                          + 30꣨360ڣ + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                           
                                                                                                          +
                                                                                                           ȶϢ     ȶ +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          ˵

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          ¾Ԫ

                                                                                                          + +
                                                                                                            +
                                                                                                          • ο׸
                                                                                                          • +
                                                                                                          • +
                                                                                                          • ֧Ϣ
                                                                                                          • +
                                                                                                          • ʹ3.25%
                                                                                                          • +
                                                                                                          • ҵ4.9%
                                                                                                          • +
                                                                                                          +

                                                                                                          >>

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                          • ϲ
                                                                                                          • +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                            + + +
                                                                                                            +
                                                                                                            +
                                                                                                            + + + + + + + + +
                                                                                                            + + + + + + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + ȫ> +
                                                                                                            +
                                                                                                            +

                                                                                                            ¥ +

                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                            ¥۸̳
                                                                                                            + 1 + ׿ + + ƽ + + -- + + BBS + 4.09 +
                                                                                                            + 2 + + + + + 1100Ԫ/ + + BBS + 4.10 +
                                                                                                            + 3 + ƽ̡̩ + + ƽ + + 950Ԫ/ + + BBS + 4.26 +
                                                                                                            + 4 + ´ + + ƽ + + 1600Ԫ/ + + BBS + 4.19 +
                                                                                                            + 5 + + + + + -- + + BBS + 3.88 +
                                                                                                            + 6 + ݾ + + + + 17500Ԫ/O + + -- + 3.43 +
                                                                                                            + 7 + TBD(ס + + ƽ + + 21000Ԫ/O + + BBS + 3.58 +
                                                                                                            + 8 + δ + + + + 270Ԫ/ + + BBS + 4.03 +
                                                                                                            + 9 + ɽ䳲 + + ɽ + + 120Ԫ/ + + BBS + 4.12 +
                                                                                                            + 10 + к + + ʯɽ + + 60000Ԫ/O + + -- + 4.53 +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + ȫ> +
                                                                                                            +
                                                                                                            +

                                                                                                            ¥

                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                            ¥۸̳
                                                                                                            + 1 + Ƽ˹Ԣ + + ȷ + + 10500Ԫ/O + + BBS + 5.00 +
                                                                                                            + 2 + ˿С + + + + 5000Ԫ/O + + -- + 0.00 +
                                                                                                            + 3 + ά + + + + -- + + -- + 0.00 +
                                                                                                            + 4 + ϰݴ DUBAI S + + + + 210Ԫ/ + + BBS + 4.67 +
                                                                                                            + 5 + ʼ԰ + + + + 12500Ԫ/O + + BBS + 4.90 +
                                                                                                            + 6 + ŵɽ + + + + -- + + -- + 4.89 +
                                                                                                            + 7 + ļС + + + + 20000Ԫ/O + + -- + 4.93 +
                                                                                                            + 8 + AB + + ƽ + + 31000Ԫ/O + + BBS + 4.76 +
                                                                                                            + 9 + + + + + 15000Ԫ/O + + -- + 4.80 +
                                                                                                            + 10 + ̫ǡʯ + + + + 9500Ԫ/O + + BBS + 4.64 +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + ȫ> +
                                                                                                            +
                                                                                                            +

                                                                                                            ¿

                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              + 1 + ׿ + + + + 700Ԫ/ + + BBS + 4.19 +
                                                                                                              + 2 + + + + + -- + + BBS + 4.30 +
                                                                                                              + 3 + ˴ԭС + + + + 9000Ԫ/O + + BBS + 3.07 +
                                                                                                              + 4 + ȷȸ + + ȷ + + 20500Ԫ/O + + BBS + 4.25 +
                                                                                                              + 5 + ԭ + + + + 1800Ԫ/ + + -- + 4.26 +
                                                                                                              + 6 + йԭ + + ɽ + + 18000Ԫ/O + + BBS + 3.98 +
                                                                                                              + 7 + ̵ع21 + + + + 265Ԫ/ + + BBS + 4.04 +
                                                                                                              + 8 + Ƿ㵤 + + ɽ + + 19800Ԫ/O + + BBS + 3.73 +
                                                                                                              + 9 + ɽׯ + + + + 2380Ԫ/ + + BBS + 4.29 +
                                                                                                              + 10 + + + + + 83000Ԫ/O + + BBS + 4.26 +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + ɫ¥|ȫ> +
                                                                                                              + +
                                                                                                              +

                                                                                                              ¥Ƽ

                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              ֻ鿴齭ļó + ؼ +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              ¥
                                                                                                              +
                                                                                                              + ¥ + ¥ + ƽ¥ + ɽ¥ + ͨ¥ + ¥ + ̨¥ + ˳¥ + ¥ + ͷ¥ + ¥ + ¥ + ¥ + ¥ + ʯɽ¥ + ƽ¥ + ¥ + ོ¥ + ȷ¥ + ¥ + ¥ + ػʵ¥ + ̰¥ + ¥ + ¥ + ¥ + ¥ + ׯ¥ + ܱ¥ + ¥ +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + ˷ + ƽ + ɽ + ͨݷ + + ̨ + ˳巿 + Ʒ + ͷ + Ƿ + Ƿ + ᷿ + 췿 + ʯɽ + ƽȷ + ķ + + ȷ + ӷ + 巿 + ̰ + ݷ + + + ܱ߷ + 巿 +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              з
                                                                                                              +
                                                                                                              + + ӷ + ̰ + ݷ + + ȷ + 򷿲 + Ϻ + ݷ + ڷ + ɶ + 췿 + + ݷ + Ͼ + Ϸ + Ƿ + ۷ +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              ¥

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              + + + +
                                                                                                              վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888
                                                                                                              + + + +
                                                                                                              +
                                                                                                              + + վ + ϵ + ƸϢ + ¼
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              BزDݸز Ϸز ز ز
                                                                                                              Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                               췿زFݷزJϷزSϺزW人ز
                                                                                                               ɳزGݷزNϾز ڷز ز
                                                                                                               ز ز ϲز ݷزXز
                                                                                                               ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                              + +
                                                                                                              + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                              + +
                                                                                                              Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                              +
                                                                                                              ϺϢƼ޹˾ Ȩ
                                                                                                              +
                                                                                                              ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                              + +
                                                                                                              + + + + + + + +
                                                                                                              + + + + + + + + + + + + + +
                                                                                                              + + + + + + + + +
                                                                                                              + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking8 b/soufang/page/peking8 new file mode 100644 index 0000000..0b046cc --- /dev/null +++ b/soufang/page/peking8 @@ -0,0 +1,5219 @@ + + + + + -¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              + + + + + + + + + + + + + + + + +
                                                                                                              + + +
                                                                                                              + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              ų
                                                                                                              +
                                                                                                              ABCDFGH
                                                                                                              +
                                                                                                              JKLMNQST
                                                                                                              +
                                                                                                              WXYZ
                                                                                                              + +
                                                                                                              + +
                                                                                                              + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                              + + + + + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                                + + +
                                                                                                              • Ͷ
                                                                                                              • + +
                                                                                                              • +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + +
                                                                                                              +
                                                                                                              + + + + + + + + + + + + + +
                                                                                                              + + + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + ɨ赽ֻ ¥ʱ +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + ʾס + + + + + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + +
                                                                                                              + + + +
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              + + + + + + + + + + + + + + + + +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                                +
                                                                                                              • +
                                                                                                                +
                                                                                                                +
                                                                                                                + Ƶ + + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + ȫ + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + Чͼ + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + ʽͨͼ + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + ⾰ͼ + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + ʻֳ + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + ܱͼ + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                + ʻͼ + +
                                                                                                                +
                                                                                                                +
                                                                                                              • +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              + +

                                                                                                              +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +

                                                                                                              ûۣ

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                                + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              +

                                                                                                              ¥̵ַ  ԰Ŷ

                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              ͣ  + + + + (203O)    + + + + ľ(366O)    + + + + (460O)    +

                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              ϸϢ>>

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                                + +
                                                                                                              • + ղ + + + + + +
                                                                                                              • + +
                                                                                                              • + ¥̶Ա +
                                                                                                              • +
                                                                                                              • + + ɨ赽ֻ + + + + +
                                                                                                              • +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +

                                                                                                              ¥绰400-890-0000 ת 807852

                                                                                                              +
                                                                                                              + + + + +
                                                                                                              + + + + + +
                                                                                                              + + + + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              + + + + + + + +
                                                                                                              +
                                                                                                              + + + + + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              >
                                                                                                              +
                                                                                                              +

                                                                                                              ¥̶̬

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +

                                                                                                              ҵ̳

                                                                                                              + 43804 +
                                                                                                              + + ͼ + Ȧ
                                                                                                              + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + > +
                                                                                                              +
                                                                                                              +

                                                                                                              Ѷ/֪ʶ

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + > +
                                                                                                              +
                                                                                                              +

                                                                                                              ¥ʴ

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + + + + + + + +
                                                                                                              + + + + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              ¥Ϣ

                                                                                                              +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              ¥б
                                                                                                              +
                                                                                                              + +
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + (1)| + ľ(3)| + (2)| + + > +
                                                                                                              + +
                                                                                                              +

                                                                                                              ʻͼ(6)

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +
                                                                                                              ѡ/¥㼼
                                                                                                              +
                                                                                                              >
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + ͼ(6)| + ͨͼ(4)| + ʵͼ(82)| + Чͼ(8)| + (23)| + ֳ(8)| + ͼ(10)| + > +
                                                                                                              + +
                                                                                                              +

                                                                                                              ¥(141)

                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                                +
                                                                                                              • +
                                                                                                                +
                                                                                                                +

                                                                                                                Ƶ

                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + Ƶ + +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                +

                                                                                                                ȫ

                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + ȫ + +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                +

                                                                                                                + ¥⾰ͼ +

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + ¥⾰ͼ + +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                +

                                                                                                                + СЧͼ +

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + СЧͼ + +
                                                                                                                +
                                                                                                              • +
                                                                                                              • +
                                                                                                                +
                                                                                                                +

                                                                                                                + λͼ +

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + λͼ + +
                                                                                                                +
                                                                                                              • + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + + +

                                                                                                              + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              + +
                                                                                                              +

                                                                                                              + ظ2 + 0 + F***2 2016-12-06 15:34:28  PC +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + λúܲоͶDZܴ +

                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              + ظ0 + 0 +  2016-12-07 08:21:52  Androidͻ +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + λ÷dzãҷdzϲ +

                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              + ظ0 + 0 + ж 2016-12-05 05:52:41  Androidͻ +

                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              PK

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              • ͬ
                                                                                                              • ͬ۸
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                                +
                                                                                                              +
                                                                                                                + +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + + + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              +
                                                                                                              +
                                                                                                                +
                                                                                                              • ܸȤ¥
                                                                                                              • + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + ȫ> +
                                                                                                                +
                                                                                                                +

                                                                                                                ¥

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                                + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                                                                + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                                                                + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                                                                + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                                                                + 5 + + + + + + -- + + BBS + +
                                                                                                                + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                                                                + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                                                                + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                                                                + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + ȫ> +
                                                                                                                +
                                                                                                                +

                                                                                                                ¥

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                                + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                                                                + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                                                                + 3 + ά + + + + + -- + + -- + + +
                                                                                                                + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                                                                + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                                                                + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                                                                + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                                                                + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                                                                + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + ȫ> +
                                                                                                                +
                                                                                                                +

                                                                                                                ¿

                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                  +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                                                                + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                                                                + 3 + + + + + + -- + + BBS + +
                                                                                                                + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                                                                + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                                                                + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                                                                + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                                                                + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                                                                + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + + +
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + ɫ¥|ȫ> +
                                                                                                                + +
                                                                                                                +

                                                                                                                ¥Ƽ

                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                + + + + +
                                                                                                                + + + + + + +
                                                                                                                վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                                                + + + + + +
                                                                                                                +
                                                                                                                + + վ + ϵ + ƸϢ + ¼
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                BزDݸز Ϸز ز ز
                                                                                                                Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                                 췿زFݷزJϷزSϺزW人ز
                                                                                                                 ɳزGݷزNϾز ڷز ز
                                                                                                                 ز ز ϲز ݷزXز
                                                                                                                 ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                                + +
                                                                                                                + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                                + +
                                                                                                                Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                                +
                                                                                                                ϺϢƼ޹˾ Ȩ
                                                                                                                +
                                                                                                                ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                                + +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/page/peking9 b/soufang/page/peking9 new file mode 100644 index 0000000..f4deacb --- /dev/null +++ b/soufang/page/peking9 @@ -0,0 +1,4258 @@ + + + + + ͨ±-¥-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                + + + + + + + + + + + + + + + + +
                                                                                                                + + +
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                ų
                                                                                                                +
                                                                                                                ABCDFGH
                                                                                                                +
                                                                                                                JKLMNQST
                                                                                                                +
                                                                                                                WXYZ
                                                                                                                + +
                                                                                                                + +
                                                                                                                + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                                + + + + + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                  + + +
                                                                                                                • Ͷ
                                                                                                                • + +
                                                                                                                • +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + +
                                                                                                                + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + ɨ赽ֻ ¥ʱ +
                                                                                                                +
                                                                                                                +
                                                                                                                + +

                                                                                                                ͨ±

                                                                                                                + ͨ¼԰Ϫ + +
                                                                                                                +
                                                                                                                ¥
                                                                                                                + +
                                                                                                                + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + ̼ + ַ + + ɫ +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + + + +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                + + + + + + + + + + + + + + + + +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                  +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + ͨ±Ƶ + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  + ͨ±ȫ + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  + ͨ±Чͼ + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  + ͨ±ͨͼ + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  + ͨ±⾰ͼ + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  + ͨ± + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  + ͨ±ܱͼ + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                • +
                                                                                                                  +
                                                                                                                  + ͨ±ͼ + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                • +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                  +
                                                                                                                • +

                                                                                                                  Ƶ

                                                                                                                  + + Ƶ +
                                                                                                                • +
                                                                                                                • +

                                                                                                                  ȫ

                                                                                                                  + + ȫ +
                                                                                                                • +
                                                                                                                • +

                                                                                                                  Чͼ

                                                                                                                  + + Чͼ +
                                                                                                                • +
                                                                                                                • +

                                                                                                                  ͨͼ

                                                                                                                  + + ͨͼ +
                                                                                                                • +
                                                                                                                • +

                                                                                                                  ʵͼ

                                                                                                                  + + ʵͼ +
                                                                                                                • +
                                                                                                                • +

                                                                                                                  + + +
                                                                                                                • +
                                                                                                                • +

                                                                                                                  ܱͼ

                                                                                                                  + + ܱͼ +
                                                                                                                • +
                                                                                                                • +

                                                                                                                  ͼ

                                                                                                                  + + ͼ +
                                                                                                                • +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                + ƽ۸ 2000 Ԫ/ +

                                                                                                                +
                                                                                                                + + +
                                                                                                                + + 鿴۸ + +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                + +
                                                                                                                + + + + + ֪ͨ + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +

                                                                                                                ûۣ

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                  + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                +

                                                                                                                ¥̵ַ  ˳·33Ժ

                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                ͣ  + + + + (480O)    + + + + (480O)    + + + + (480O)    +

                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                ϸϢ>>

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                  + +
                                                                                                                • + ղ + + + + + +
                                                                                                                • + +
                                                                                                                • + ¥̶Ա +
                                                                                                                • +
                                                                                                                • + + ɨ赽ֻ + + + + +
                                                                                                                • +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +

                                                                                                                ¥绰400-890-0000 ת 650730

                                                                                                                +
                                                                                                                + + + + +
                                                                                                                + + + + + +
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + + + + + + + +
                                                                                                                +
                                                                                                                + + + + + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                >
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +

                                                                                                                ͨ±ҵ̳

                                                                                                                + 34353 +
                                                                                                                + + ͼ + Ȧ
                                                                                                                + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + > +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + > +
                                                                                                                +
                                                                                                                +

                                                                                                                ͨ±¥ʴ

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + + + + + + + +
                                                                                                                + + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                ͨ±¥Ϣ

                                                                                                                +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                ͨ±¥б
                                                                                                                +
                                                                                                                + +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                + (19)| + (21)| + + > +
                                                                                                                + +
                                                                                                                +

                                                                                                                ͨ±ͼ(40)

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +
                                                                                                                ѡ/¥㼼
                                                                                                                +
                                                                                                                >
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                + ͼ(40)| + ͨͼ(3)| + ʵͼ(97)| + Чͼ(10)| + (69)| + ͼ(44)| + > +
                                                                                                                + +
                                                                                                                +

                                                                                                                ͨ±¥(264)

                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +
                                                                                                                + +
                                                                                                                + +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                + + +

                                                                                                                + +

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + +
                                                                                                                +

                                                                                                                + ظ0 + 3 + 1ڶ 2016-11-30 15:01:02  Androidͻ +

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +

                                                                                                                + ܲȫ +

                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                + ظ0 + 1 +  2016-12-06 13:19:38  Androidͻ +

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + +
                                                                                                                +

                                                                                                                + ظ0 + 0 + ͷôô 2016-11-08 16:35:26  iPhoneͻ +

                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                ͨ±PK

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                • ͬ
                                                                                                                • ͬ۸
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                  +
                                                                                                                +
                                                                                                                  + +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                  +
                                                                                                                • ܸȤ¥
                                                                                                                • + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + + + + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + ȫ> +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  ¥

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                                  + 1 + ׿ + + ƽ + + + -- + + BBS + +
                                                                                                                  + 2 + + + + + + 1100Ԫ/ + + BBS + +
                                                                                                                  + 3 + ƽ̡̩ + + ƽ + + + 950Ԫ/ + + BBS + +
                                                                                                                  + 4 + ´ + + ƽ + + + 1600Ԫ/ + + BBS + +
                                                                                                                  + 5 + + + + + + -- + + BBS + +
                                                                                                                  + 6 + ݾ + + + + + 17500Ԫ/O + + -- + +
                                                                                                                  + 7 + TBD(ס + + ƽ + + + 21000Ԫ/O + + BBS + +
                                                                                                                  + 8 + δ + + + + + 270Ԫ/ + + BBS + +
                                                                                                                  + 9 + ɽ䳲 + + ɽ + + + 120Ԫ/ + + BBS + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + ȫ> +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  ¥

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + ¥ + + + + ۸ + + ̳ + + Ա +
                                                                                                                  + 1 + Ƽ˹Ԣ + + ȷ + + + 10500Ԫ/O + + BBS + + +
                                                                                                                  + 2 + ˿С + + + + + 5000Ԫ/O + + -- + + +
                                                                                                                  + 3 + ά + + + + + -- + + -- + + +
                                                                                                                  + 4 + ϰݴ DUBAI S + + + + + 210Ԫ/ + + BBS + + +
                                                                                                                  + 5 + ʼ԰ + + + + + 12500Ԫ/O + + BBS + + +
                                                                                                                  + 6 + ŵɽ + + + + + -- + + -- + + +
                                                                                                                  + 7 + ļС + + + + + 20000Ԫ/O + + -- + + +
                                                                                                                  + 8 + AB + + ƽ + + + 31000Ԫ/O + + BBS + + +
                                                                                                                  + 9 + + + + + + 15000Ԫ/O + + -- + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + ȫ> +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  ¿

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                    +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + 1 + ׿ + + + + + 700Ԫ/ + + BBS + +
                                                                                                                  + 2 + 齭ļó + + ͨ + + + -- + + BBS + +
                                                                                                                  + 3 + + + + + + -- + + BBS + +
                                                                                                                  + 4 + ˴ԭС + + + + + 9000Ԫ/O + + BBS + +
                                                                                                                  + 5 + ȷȸ + + ȷ + + + 20500Ԫ/O + + BBS + +
                                                                                                                  + 6 + ԭ + + + + + 1800Ԫ/ + + -- + +
                                                                                                                  + 7 + йԭ + + ɽ + + + 18000Ԫ/O + + BBS + +
                                                                                                                  + 8 + ̵ع21 + + + + + 265Ԫ/ + + BBS + +
                                                                                                                  + 9 + Ƿ㵤 + + ɽ + + + 19800Ԫ/O + + BBS + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  + + +
                                                                                                                  + + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + ɫ¥|ȫ> +
                                                                                                                  + +
                                                                                                                  +

                                                                                                                  ¥Ƽ

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  + + + + +
                                                                                                                  + + + + + + +
                                                                                                                  վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  + + վ + ϵ + ƸϢ + ¼
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  BزDݸز Ϸز ز ز
                                                                                                                  Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                                   췿زFݷزJϷزSϺزW人ز
                                                                                                                   ɳزGݷزNϾز ڷز ز
                                                                                                                   ز ز ϲز ݷزXز
                                                                                                                   ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                                  + +
                                                                                                                  + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                                  + +
                                                                                                                  Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                                  +
                                                                                                                  ϺϢƼ޹˾ Ȩ
                                                                                                                  +
                                                                                                                  ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                                  + +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/s b/soufang/s new file mode 100644 index 0000000..e1c2f8c --- /dev/null +++ b/soufang/s @@ -0,0 +1,5728 @@ + + + + + + + + + + +¥̡_¥_-ѷ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  ų
                                                                                                                  +
                                                                                                                  ABCDFGH
                                                                                                                  +
                                                                                                                  JKLMNQST
                                                                                                                  +
                                                                                                                  WXYZ
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  + + + Ϻ + + + ɶ + + + + + Ͼ + + + ɳ + + + + + + ݸ + + + + ʯׯ + + ֣ + + + + Ϸ + + + + +
                                                                                                                  + + + + + + + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                    + + +
                                                                                                                  • Ͷ
                                                                                                                  • + +
                                                                                                                  • +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  + ͼ + б +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + + + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + ¥ + + Դ + ֪ѧУ +
                                                                                                                  +
                                                                                                                  + ҷ +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                    +
                                                                                                                  • +
                                                                                                                  • + + + + + ƽ + + ɽ + + ͨ + + + + ̨ + + ˳ + + + + ͷ + + + + + + + + + + ʯɽ + + ƽ + + + + + + ȷ + + + + + + ػʵ + + ̰ + + + + + + + + + + ׯ + + ܱ + + + + +
                                                                                                                  • +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +  - + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                    +
                                                                                                                  • +
                                                                                                                  • + + + һ + + + + + + ľ + + + + + +
                                                                                                                  • +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  ɫ
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  + +
                                                                                                                  + + +
                                                                                                                  + + +
                                                                                                                  վ¥ϢּΪûṩϢ޳ϢŵǼDZΪ׼˲顣¥ϢͶ߻򲦴ٱ绰400-850-8888 +
                                                                                                                  + +
                                                                                                                  +

                                                                                                                  ṩ2016¥̼Ϣο±רҵıṩʵʱı¥, ¥ϢԼ۲ѯԲ鵽¥̵ĴŻԼŹΪҵʺϵı·Ϣ

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + + + +
                                                                                                                  +
                                                                                                                  + + վ + ϵ + ƸϢ + ¼
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  BزDݸز Ϸز ز ز
                                                                                                                  Cɶز ز ϷʷزQൺزT򷿵ز
                                                                                                                   췿زFݷزJϷزSϺزW人ز
                                                                                                                   ɳزGݷزNϾز ڷز ز
                                                                                                                   ز ز ϲز ݷزXز
                                                                                                                   ݷزHݷز ز ʯׯزZ֣ݷز
                                                                                                                  + +
                                                                                                                  + վͼ + + ֻ + ƽ̨ + + ˷ +
                                                                                                                  + +
                                                                                                                  Copyright © Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
                                                                                                                  +
                                                                                                                  ϺϢƼ޹˾ Ȩ
                                                                                                                  +
                                                                                                                  ͷ绰 400-850-8888 ΥͲϢٱ绰010-56318764 ٱ䣺jubao@fang.com
                                                                                                                  + +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/soufang/scrapy.cfg b/soufang/scrapy.cfg new file mode 100644 index 0000000..af8af6f --- /dev/null +++ b/soufang/scrapy.cfg @@ -0,0 +1,11 @@ +# Automatically created by: scrapy startproject +# +# For more information about the [deploy] section see: +# https://scrapyd.readthedocs.org/en/latest/deploy.html + +[settings] +default = soufang.settings + +[deploy] +#url = http://localhost:6800/ +project = soufang diff --git a/soufang/soufang/__init__.py b/soufang/soufang/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/soufang/soufang/__init__.pyc b/soufang/soufang/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c703b9076ac27feb075ca593f06b831f1c771978 GIT binary patch literal 153 zcmZSn%*&P2@J!~*@|{L(a_5;z?npP83g5+AQuP+7tOG{z=3 QKczG$)edA?F%UBV0O|N6vj6}9 literal 0 HcmV?d00001 diff --git a/soufang/soufang/items.py b/soufang/soufang/items.py new file mode 100644 index 0000000..3935f93 --- /dev/null +++ b/soufang/soufang/items.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +# Define here the models for your scraped items +# +# See documentation in: +# http://doc.scrapy.org/en/latest/topics/items.html + +import scrapy + + +class SoufangItem(scrapy.Item): + # define the fields for your item here like: + # name = scrapy.Field() + url = scrapy.Field() + position = scrapy.Field() + avg_money = scrapy.Field() + residence = scrapy.Field() \ No newline at end of file diff --git a/soufang/soufang/items.pyc b/soufang/soufang/items.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1feb98f902e0241de327c8a184778ed9bffef0c2 GIT binary patch literal 520 zcmcIg%}#_c5FTI`bzR>BFLKqysPSO*Vm1&Hm&uzN-)51L#aK8(zTv zeEnuRoz8sG_u1;|>+!XMzY)=SM;p%xYFYub00of{BtR3uHh?;UPk;}Aw<6?-JXuh* z`l0dcPKoAb*b2RSa7#!=!s`e literal 0 HcmV?d00001 diff --git a/soufang/soufang/middlewares.py b/soufang/soufang/middlewares.py new file mode 100644 index 0000000..63f2968 --- /dev/null +++ b/soufang/soufang/middlewares.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- + +# Define here the models for your spider middleware +# +# See documentation in: +# http://doc.scrapy.org/en/latest/topics/spider-middleware.html + +from scrapy import signals + + +class SoufangSpiderMiddleware(object): + # Not all methods need to be defined. If a method is not defined, + # scrapy acts as if the spider middleware does not modify the + # passed objects. + + @classmethod + def from_crawler(cls, crawler): + # This method is used by Scrapy to create your spiders. + s = cls() + crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) + return s + + def process_spider_input(response, spider): + # Called for each response that goes through the spider + # middleware and into the spider. + + # Should return None or raise an exception. + return None + + def process_spider_output(response, result, spider): + # Called with the results returned from the Spider, after + # it has processed the response. + + # Must return an iterable of Request, dict or Item objects. + for i in result: + yield i + + def process_spider_exception(response, exception, spider): + # Called when a spider or process_spider_input() method + # (from other spider middleware) raises an exception. + + # Should return either None or an iterable of Response, dict + # or Item objects. + pass + + def process_start_requests(start_requests, spider): + # Called with the start requests of the spider, and works + # similarly to the process_spider_output() method, except + # that it doesn’t have a response associated. + + # Must return only requests (not items). + for r in start_requests: + yield r + + def spider_opened(self, spider): + spider.logger.info('Spider opened: %s' % spider.name) diff --git a/soufang/soufang/pipelines.py b/soufang/soufang/pipelines.py new file mode 100644 index 0000000..af3f6f7 --- /dev/null +++ b/soufang/soufang/pipelines.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +# Define your item pipelines here +# +# Don't forget to add your pipeline to the ITEM_PIPELINES setting +# See: http://doc.scrapy.org/en/latest/topics/item-pipeline.html + + +class SoufangPipeline(object): + def process_item(self, item, spider): + return item diff --git a/soufang/soufang/settings.py b/soufang/soufang/settings.py new file mode 100644 index 0000000..53153f5 --- /dev/null +++ b/soufang/soufang/settings.py @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- + +# Scrapy settings for soufang project +# +# For simplicity, this file contains only settings considered important or +# commonly used. You can find more settings consulting the documentation: +# +# http://doc.scrapy.org/en/latest/topics/settings.html +# http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html +# http://scrapy.readthedocs.org/en/latest/topics/spider-middleware.html + +BOT_NAME = 'soufang' + +SPIDER_MODULES = ['soufang.spiders'] +NEWSPIDER_MODULE = 'soufang.spiders' + + +# Crawl responsibly by identifying yourself (and your website) on the user-agent +#USER_AGENT = 'soufang (+http://www.yourdomain.com)' + +# Obey robots.txt rules +ROBOTSTXT_OBEY = True + +# Configure maximum concurrent requests performed by Scrapy (default: 16) +#CONCURRENT_REQUESTS = 32 + +# Configure a delay for requests for the same website (default: 0) +# See http://scrapy.readthedocs.org/en/latest/topics/settings.html#download-delay +# See also autothrottle settings and docs +#DOWNLOAD_DELAY = 3 +# The download delay setting will honor only one of: +#CONCURRENT_REQUESTS_PER_DOMAIN = 16 +#CONCURRENT_REQUESTS_PER_IP = 16 + +# Disable cookies (enabled by default) +#COOKIES_ENABLED = False + +# Disable Telnet Console (enabled by default) +#TELNETCONSOLE_ENABLED = False + +# Override the default request headers: +#DEFAULT_REQUEST_HEADERS = { +# 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', +# 'Accept-Language': 'en', +#} + +# Enable or disable spider middlewares +# See http://scrapy.readthedocs.org/en/latest/topics/spider-middleware.html +#SPIDER_MIDDLEWARES = { +# 'soufang.middlewares.SoufangSpiderMiddleware': 543, +#} + +# Enable or disable downloader middlewares +# See http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html +#DOWNLOADER_MIDDLEWARES = { +# 'soufang.middlewares.MyCustomDownloaderMiddleware': 543, +#} + +# Enable or disable extensions +# See http://scrapy.readthedocs.org/en/latest/topics/extensions.html +#EXTENSIONS = { +# 'scrapy.extensions.telnet.TelnetConsole': None, +#} + +# Configure item pipelines +# See http://scrapy.readthedocs.org/en/latest/topics/item-pipeline.html +#ITEM_PIPELINES = { +# 'soufang.pipelines.SomePipeline': 300, +#} + +# Enable and configure the AutoThrottle extension (disabled by default) +# See http://doc.scrapy.org/en/latest/topics/autothrottle.html +#AUTOTHROTTLE_ENABLED = True +# The initial download delay +#AUTOTHROTTLE_START_DELAY = 5 +# The maximum download delay to be set in case of high latencies +#AUTOTHROTTLE_MAX_DELAY = 60 +# The average number of requests Scrapy should be sending in parallel to +# each remote server +#AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0 +# Enable showing throttling stats for every response received: +#AUTOTHROTTLE_DEBUG = False + +# Enable and configure HTTP caching (disabled by default) +# See http://scrapy.readthedocs.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings +#HTTPCACHE_ENABLED = True +#HTTPCACHE_EXPIRATION_SECS = 0 +#HTTPCACHE_DIR = 'httpcache' +#HTTPCACHE_IGNORE_HTTP_CODES = [] +#HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage' diff --git a/soufang/soufang/settings.pyc b/soufang/soufang/settings.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf39aa809e977ec34ece4a9e4bfc3cd99476200e GIT binary patch literal 299 zcmZSn%*)ky%OfJ00SXv_v;zjlag8YH{gF_-h;{BamBQ=0h3<#pw3CPtCEe2Ys zUjlSVMq*xNrhY(Waz@J!~*@|{L(a_5(Hh4nF7)mAD@|*SrQ+wS5R5P V0W{7gH$SB`C)EyQX)zEp002O6CgcDB literal 0 HcmV?d00001 diff --git a/soufang/soufang/spiders/soufang_spider.py b/soufang/soufang/spiders/soufang_spider.py new file mode 100644 index 0000000..fe5531c --- /dev/null +++ b/soufang/soufang/spiders/soufang_spider.py @@ -0,0 +1,94 @@ +# -*- coding:utf-8 -*- +import scrapy +from scrapy.contrib.spiders import CrawlSpider, Rule +from scrapy.contrib.linkextractors import LinkExtractor +from scrapy.selector import Selector +from soufang.items import SoufangItem +from scrapy.http import Request +import threading + + +class SoufangSpider(CrawlSpider): + + name = 'soufang' + allowed_domains = ['fang.com'] + start_urls = ["http://newhouse.fang.com/house/s/"] + q = threading.Lock() + #rules = [Rule(LinkExtractor(allow='http://[a-z]+\.fang\.com/?ctm=1'), 'parse_bj', follow=True)] + + + def parse(self, response): + sel = Selector(response) + filename = "body" + with open(filename, "wb") as f: + f.write(response.body) + + urls = sel.xpath('//li/div/div/a/@href').extract() + print "urls", urls, len(urls) + page_num = 0 + + for url in urls: + print url + try: + request = Request(url, callback=self.parse_detail) + self.q.acquire() + page_num += 1 + request.meta['num'] = page_num + self.q.release() + yield request + except Exception as e: + log_text = "ERROR:" + url + + + def parse_detail(self, response): + + sel = Selector(response) + soufang = SoufangItem() + page_num = response.meta['num'] + filename = "./page/peking" + str(page_num) + + soufang["url"] = response.url + print "#" * 30 + print response.url + print page_num + print "#" * 30 + + # print response.body + # print "$" * 30 + + title = sel.xpath('//div[@id="daohang"]/div/dl/dd/div/h1/a/text()').extract() + if len(title) == 0: + title = sel.xpath('//title/text()').extract()[0] + title = title.strip().split("-") + if len(title) != 0: + print title[0].strip() + else: + title = title[0].strip() + print title + """ + with open(filename, "wb") as f: + f.write(response.body) + """ + + def parse_bj(self, response): + + soufang = SoufangItem() + soufang["url"] = response.url + """ + soufang["url"] = response.url.split("/").split(".")[0] + + filename = response.url + with open(filename, 'wb') as f: + f.write(response.body) + """ + """ + for item in response.xpath("//div[@class='nlc_details']"): + + soufang['position'] = + soufang['avg_money'] = + soufang['residence'] = + + soufang['residence'] = item.xpath("a/text()") + """ + + return soufang \ No newline at end of file diff --git a/soufang/soufang/spiders/soufang_spider.pyc b/soufang/soufang/spiders/soufang_spider.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbb5e83089a9f11af20755519b025b7a4172989b GIT binary patch literal 2647 zcmcgu-ESL35TCvCcWfHcrXe6IQFw5L@CosNR0UKKsw7g?mb0M6sIo4;O?=LM<#tUH zWWNv|c;o-$FW{|0{R7}PvnDCL7biP6J3F^KAHSJB|5dLu|LoxTgjPQv&j%RhSCAP0 zic+GH<2_0hWgd+@%6uC6q*%kJv_@H-Ms+u@QQDxaNu#El*C}mL)}~S0%^Q?ao4YienRd!qiCDY1UwO5D)|lu8mq0*Mwk(m!LnOa-k4}x5uO^dnFgMStSnFc19aD3P=-iEC;e}Y(|g`!JEOEGZi zlU1}38!tWjZHtyQTGVLfvD(aMP4x`^eDi$a(X7U1Lo}1TRez9LGNRhN`_{5USbL7ab`SdP##aahC`mZNfZXl~&V z1Zfh)$&WIk;K8)gN1`~dQjY6PMif>jxe{PqEoy0TJht$n4+#k|Pr(J>8eN&d0;ba_zes|o7n5mJWlyVOhFUX$ znN(33tRQ{;l*+}bgZkLWd{ACU*d!*LE%Ondrn;)3Hq>ozQ{7YzuczwDSDUJ*Iv73G zRyULYpFz(a?_!u&Ag==-ZeIevzF=JHU>mSUnZj>?A28kmwz&XM45$sCb^vq$`_|sR zli~^F?_Wz%9H<5qH(rtw2ZRwlpcoQB`oyE^cj6j?8bg1jhNW$Xb}k5kIdF{S|Gw{2 z^^&*a7o6(e{^?7~H~%ekd%?0R=!c9f!<}#taDIbQpCtKlc!z_+IsGtU)(k)bE`=W+ zB=Hw_G}AP$7K zlEcFrEM8~wHm`9R7+WQ!!uBFb|58%ATefzv+5a6t6B z09#M31A=YU0u0;rO#pKnVBAof-ny#S1c(em9=rS|+YcZj&uG7lB=lav-wqx_xzQd= zY=m`j$l^t`Vl@4and!rbzls6w0lauf!-VE0c?O_$FE10!3v)zLP9RYNduYE#D^YQsL5F^~M2il*|Y&#2MJkM-B# Date: Fri, 9 Dec 2016 22:22:03 +0800 Subject: [PATCH 170/210] =?UTF-8?q?=E5=81=B7=E6=88=BF=E5=AD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- House_Robber_II.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/House_Robber_II.py b/House_Robber_II.py index dd44a98..e25f1eb 100644 --- a/House_Robber_II.py +++ b/House_Robber_II.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-07 10:58:56 PM -# Last modified : 2016-12-08 11:38:21 PM +# Last modified : 2016-12-09 10:21:27 PM # File Name : House_Robber_II.py # Desc : class Solution(object): @@ -11,6 +11,8 @@ def rob(self, nums): n = len(nums) if n == 0: return 0 + if n == 1: + return nums[1] dp = [[0,0] for i in range(n)] #dp[0][1] = nums[0] for i in range(1, n): From 5bcd28a079e465b8a682bc307504ac6874869e8f Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sun, 11 Dec 2016 09:50:28 +0800 Subject: [PATCH 171/210] =?UTF-8?q?=E5=BF=AB=E9=80=9F=E5=B9=82=E5=A4=A7?= =?UTF-8?q?=E6=95=B4=E6=95=B0=E5=8F=96=E6=A8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Super_Pow.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Super_Pow.py diff --git a/Super_Pow.py b/Super_Pow.py new file mode 100644 index 0000000..d718ee2 --- /dev/null +++ b/Super_Pow.py @@ -0,0 +1,34 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-11 09:33:17 AM +# Last modified : 2016-12-11 09:50:10 AM +# File Name : Super_Pow.py +# Desc : + + +class Solution(object): + def superPow(self, a, b): + if len(b) == 0: + return a + tmp = a + ret = 1 + n = len(b) + while sum(b) != 0: + if b[-1] % 2 == 1: + ret = (ret * tmp) % 1337 + tmp = (tmp * tmp) % 1337 + pre = 0 + for i in range(n): + pre_b = (pre * 10 + b[i]) % 2 + b[i] = (pre * 10 + b[i]) / 2 + pre = pre_b + return ret + + +if __name__ == "__main__": + s = Solution() + a = 2 + b = [1, 0] + print s.superPow(a, b) From 9a36692580e4549d54006262237867c19b261e17 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sun, 11 Dec 2016 10:45:04 +0800 Subject: [PATCH 172/210] =?UTF-8?q?=E5=BF=AB=E9=80=9F=E5=B9=82=E5=A4=A7?= =?UTF-8?q?=E6=95=B4=E6=95=B0=E5=8F=96=E6=A8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Super_Pow.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Super_Pow.py b/Super_Pow.py index d718ee2..f332984 100644 --- a/Super_Pow.py +++ b/Super_Pow.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-11 09:33:17 AM -# Last modified : 2016-12-11 09:50:10 AM +# Last modified : 2016-12-11 10:44:35 AM # File Name : Super_Pow.py # Desc : @@ -15,15 +15,18 @@ def superPow(self, a, b): tmp = a ret = 1 n = len(b) - while sum(b) != 0: + k = 0 + while k != n - 1: if b[-1] % 2 == 1: ret = (ret * tmp) % 1337 tmp = (tmp * tmp) % 1337 pre = 0 - for i in range(n): + for i in range(k, n): pre_b = (pre * 10 + b[i]) % 2 b[i] = (pre * 10 + b[i]) / 2 pre = pre_b + if k == i and b[i] == 0: + k += 1 return ret From 9bc84bb8ac7898b4952896789f9115c78536b719 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 12 Dec 2016 15:51:36 +0800 Subject: [PATCH 173/210] =?UTF-8?q?=E6=9C=89=E5=BA=8F=E6=95=B0=E7=BB=84?= =?UTF-8?q?=E7=94=9F=E6=88=90=E5=B9=B3=E8=A1=A1=E4=BA=8C=E5=8F=89=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Convert_Sorted_List_to_Binary_Search_Tree.py | 68 ++++++++++++++++++++ Super_Pow.py | 7 +- 2 files changed, 72 insertions(+), 3 deletions(-) create mode 100644 Convert_Sorted_List_to_Binary_Search_Tree.py diff --git a/Convert_Sorted_List_to_Binary_Search_Tree.py b/Convert_Sorted_List_to_Binary_Search_Tree.py new file mode 100644 index 0000000..6554a63 --- /dev/null +++ b/Convert_Sorted_List_to_Binary_Search_Tree.py @@ -0,0 +1,68 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-12 02:41:52 PM +# Last modified : 2016-12-12 03:51:22 PM +# File Name : Convert_Sorted_List_to_Binary_Search_Tree.py +# Desc : +# Definition for singly-linked list. +import sys +class ListNode(object): + def __init__(self, x): + self.val = x + self.next = None + + +# Definition for a binary tree node. +class TreeNode(object): + def __init__(self, x): + self.val = x + self.left = None + self.right = None + + +class Solution(object): + + def inorderHelper(self, s, e): + + if s > e: + return None + mid = s + (e - s) / 2 + + left = self.inorderHelper(s, mid - 1) + root = TreeNode(self.node.val) + root.left = left + self.node = self.node.next + + right = self.inorderHelper(mid + 1, e) + root.right = right + return root + + + def sortedListToBST(self, head): + if head == None: + return None + + p = head + self.node = head + n = 0 + while p.next != None: + n += 1 + p = p.next + + return self.inorderHelper(0, n) + + +if __name__ == "__main__": + s = Solution() + i = 1 + head = ListNode(i) + p = head + while i < 20: + i += 1 + tmp = ListNode(i) + p.next = tmp + p = p.next + + s.sortedListToBST(head) diff --git a/Super_Pow.py b/Super_Pow.py index f332984..790ca31 100644 --- a/Super_Pow.py +++ b/Super_Pow.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-11 09:33:17 AM -# Last modified : 2016-12-11 10:44:35 AM +# Last modified : 2016-12-11 10:48:50 AM # File Name : Super_Pow.py # Desc : @@ -32,6 +32,7 @@ def superPow(self, a, b): if __name__ == "__main__": s = Solution() - a = 2 - b = [1, 0] + a = 434576 + b = [6,4,0,4,4,0,3,9,4,9,9,6,2,0,2,5,4,2,1,7,9,2,5,9,5,2,5,6,2,9,2,4,4,4,8,0,7,4,9,1,3,9,9,7,1,1,2,7,5,5,4,5,7,1,4,4,4,9,1,8,0,5,4,6,2,3,7,9,9,6,0,2,7,1,0,0,3,4,7,8,2,4,3,9,5,9,6,1,8,9,0,9,6,4,5,8,9,4,7,8,1,9,1,0,3,3,1,6,9,8,6,1,4,0,3,0,1,9,1,0,0,1,1,6,8,8,5,7,3,4,6,6,6,9,6,9,2,9,7,3,0,3,7,4,5,0,4,7,1,8,7,1,1,0,9,9,0,4,9,5,1,5,3,7,4,0,8,8,1,5,1,1,8,8,6,4,0,2,1,3,0,0,4,4,2,6,5,2,0,4,0,1,9,3,0,5,5,8,5,7,5,7,0,4,7,6,0,8,1,1,1,3,3,8,7,5,4,3,9,6,7,9,0,9,5,0,6,0,1,2,9,6,1,0,2,8,8,2,6,9,5,0,3,8,8,0,3,4,5,5,0,5,6,0,6,1,3,2,4,4,6,3,2,7,5,5,8,4,9,6,3,5,6,8,3,6,9,9,0,6,4,1,1,2,3,7,4,6,2,0,0,0,5,5,0,1,0,8,7,9,4,2,6,3,1,0,9,2,1,2,8,7,5,0,9,8,9,5,5,1,5,7,4,3,2,4,6,4,2,3,6,8,5,4,1,8,4,1,0,7,3,9,4,8,1,4,8,0,1,5,4,9,3,8,2,7,2,8,4,6,1,2,4,8,6,8,9,3,1,9,0,6,8,5,6,1,1,4,2,2,0,8,1,5,6,5,2,0,3,8,8,6,2,4,7,9,2,6,4,3,5,4,1,6,1,7,7,2,2,1,7,4,9,0,9,7,6,3,9,1,2,7,8,4,2,7,5,6,3,9,2,0,6,3,8,7,1,8,2,5,9,9,9,1,9,8,8,7,1,8,9,5,7,9,2,9,6,7,8,1,9,0,3,5,3,4,4,4,2,6,9,3,5,8,4,7,8,5,4,2,5,5,7,2,6,9,4,4,9,2,5,0,2,1,7,5,5,1,2,9,8,3,2,5,4,9,4,2,4,9,4,9,6,4,3,3,5,7,7,6,9,5,8,3,8,5,1,3,9,3,2,7,8,6,4,2,5,9,7,9,0,3,0,6,9,4,1,5,3,1,1,3,6,0,6,4,7,9,9,6,2,3,5,3,9,0,7,7,1,4,6,1,0,9,9,9,5,1,6,8,2,8,1,0,0,0,6,9,9,5,6,4,0,1,9,9,3,6,8,4,3,7,5,3,6,7,4,1,0,1,9,4,1,3,4,1,5,0,2,6,7,8,0,9,2,1,0,7,8,9,2,1,6,9,6,2,6,0,5,8,1,6,2,2,9,6,5,6,8,8,3,7,8,5,6,0,7,7,8,5,6,2,8,2,1,4,6,0,4,1,8,6,7,1,8,9,9,4,5,0,4,8,9,2,6,6,5,3,5,5,8,3,7,6,7,0,0,3,2,4,6,3,2,5,6,1,4,5,7,2,7,1,2,7,3,8,3,8,1,0,5,1,3,2,9,0,5,1,3,7,8,1,0,0,6,6,3,3,4,0,7,1,3,9,0,7,8,5,7,1,5,3,3,8,7,4,0,2,6,5,2,4,6,2,4,5,1,8,8,7,0,5,0,4,6,1,3,4,6,0,8,2,5,3,2,5,7,3,7,5,8,1,9,7,6,6,2,7,6,0,6,6,7,6,2,3,7,5,0,6,8,8,0,5,3,2,0,0,7,0,8,8,1,7,5,7,5,7,6,1,7,4,0,4,1,2,9,0,8,9,6,6,9,6,1,2,1,4,5,8,4,3,6,7,2,3,5,8,0,3,9,7,8,9,3,1,2,5,1,2,4,0,8,6,8,1,8,9,5,5,0,1,0,8,9,3,2,6,1,4,9,2,2,9,4,7,0,8,2,4,0,9,6,0,7,4,3,5,6,1,3,8,2,3,8,1,6,2,7,9,7,9,4,1,0,0,0,1,8,3,7,0,4,3,2,1,9,5,8,7,6,1,5,1,7,6,2,5,8,2,7,5,1,1,8,3,1,9,4,1,4,3,1,0,8,5,1,0,0,1,7,9,5,5,0,2,1,2,9,1,6,6,9,9,9,7,3,0,6,9,3,0,3,6,0,3,1,3,3,2,7] + print s.superPow(a, b) From 3a17852344451ee4ccb636a0b89981b3e917beec Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 12 Dec 2016 16:20:06 +0800 Subject: [PATCH 174/210] =?UTF-8?q?=E6=B0=B4=E6=B5=81=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E8=83=BD=E6=B5=81=E5=85=A5=E4=B8=8D=E5=90=8C=E7=9A=84=E6=B5=B7?= =?UTF-8?q?=E6=B4=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Pacific_Atlantic_Water_Flow.py | 64 ++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 Pacific_Atlantic_Water_Flow.py diff --git a/Pacific_Atlantic_Water_Flow.py b/Pacific_Atlantic_Water_Flow.py new file mode 100644 index 0000000..033cc0d --- /dev/null +++ b/Pacific_Atlantic_Water_Flow.py @@ -0,0 +1,64 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-12 03:59:52 PM +# Last modified : 2016-12-12 04:19:43 PM +# File Name : Pacific_Atlantic_Water_Flow.py +# Desc : +import Queue +class Solution(object): + + def findPath(self, i, j, ret, matrix, n, m): + + q = Queue.Queue() + dirX = [-1, 0, 1, 0] + dirY = [0, -1, 0, 1] + q.put((i,j)) + while q.empty() == False: + x, y = q.get() + for d in range(4): + x_step = x + dirX[d] + y_step = y + dirY[d] + if x_step < 0 or x_step > n or y_step < 0 or y_step > m or matrix[x_step][y_step] == True or matrix[x_step][y_step] > matrix[x][y]: + continue + ret[x_step][y_step] = True + q.put((x_step, y_step)) + + + def pacificAtlantic(self, matrix): + + ret = [] + + n = len(matrix) + if n == 0: + return ret + m = len(matrix[0]) + if m == 0: + return ret + Pacific = [] + Atlantic = [] + for i in range(n): + Pacific.append([False for j in range(m)]) + Atlantic.append([False for j in range(m)]) + + for i in range(n): + self.findPath(i, 0, Pacific, matrix, n, m) + self.findPath(i, m - 1, Atlantic, matrix, n, m) + + for i in range(m): + self.findPath(0, i, Pacific, matrix, n, m) + self.findPath(n - 1, i, Atlantic, matrix, n, m) + + for i in range(n): + for j in range(m): + if Pacific[i][j] == True and Atlantic[i][j] == True: + ret.append([i,j]) + + return ret + + +if __name__ == "__main__": + s = Solution() + matrix = [[]] + s.pacificAtlantic(matrix) From 769af6f9b61a878791018634f29f21eb4eb20bf6 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 12 Dec 2016 16:39:49 +0800 Subject: [PATCH 175/210] =?UTF-8?q?=E6=B0=B4=E6=B5=81=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E8=83=BD=E6=B5=81=E5=85=A5=E4=B8=8D=E5=90=8C=E7=9A=84=E6=B5=B7?= =?UTF-8?q?=E6=B4=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Pacific_Atlantic_Water_Flow.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Pacific_Atlantic_Water_Flow.py b/Pacific_Atlantic_Water_Flow.py index 033cc0d..94f2c8d 100644 --- a/Pacific_Atlantic_Water_Flow.py +++ b/Pacific_Atlantic_Water_Flow.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-12 03:59:52 PM -# Last modified : 2016-12-12 04:19:43 PM +# Last modified : 2016-12-12 04:39:46 PM # File Name : Pacific_Atlantic_Water_Flow.py # Desc : import Queue @@ -15,12 +15,13 @@ def findPath(self, i, j, ret, matrix, n, m): dirX = [-1, 0, 1, 0] dirY = [0, -1, 0, 1] q.put((i,j)) + ret[i][j] = True while q.empty() == False: x, y = q.get() for d in range(4): x_step = x + dirX[d] y_step = y + dirY[d] - if x_step < 0 or x_step > n or y_step < 0 or y_step > m or matrix[x_step][y_step] == True or matrix[x_step][y_step] > matrix[x][y]: + if x_step < 0 or x_step >= n or y_step < 0 or y_step >= m or ret[x_step][y_step] == True or matrix[x_step][y_step] < matrix[x][y]: continue ret[x_step][y_step] = True q.put((x_step, y_step)) @@ -60,5 +61,5 @@ def pacificAtlantic(self, matrix): if __name__ == "__main__": s = Solution() - matrix = [[]] - s.pacificAtlantic(matrix) + matrix = [[1,2,2,3,5],[3,2,3,4,4],[2,4,5,3,1],[6,7,1,4,5],[5,1,1,2,4]] + print s.pacificAtlantic(matrix) From 6118351bbc720c82b6557142ae66c160fe0577ce Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 12 Dec 2016 16:50:12 +0800 Subject: [PATCH 176/210] =?UTF-8?q?=E6=B0=B4=E6=B5=81=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E8=83=BD=E6=B5=81=E5=85=A5=E4=B8=8D=E5=90=8C=E7=9A=84=E6=B5=B7?= =?UTF-8?q?=E6=B4=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Pacific_Atlantic_Water_Flow.py | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/Pacific_Atlantic_Water_Flow.py b/Pacific_Atlantic_Water_Flow.py index 94f2c8d..29961b7 100644 --- a/Pacific_Atlantic_Water_Flow.py +++ b/Pacific_Atlantic_Water_Flow.py @@ -3,19 +3,19 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-12 03:59:52 PM -# Last modified : 2016-12-12 04:39:46 PM +# Last modified : 2016-12-12 04:50:09 PM # File Name : Pacific_Atlantic_Water_Flow.py # Desc : import Queue class Solution(object): - def findPath(self, i, j, ret, matrix, n, m): + def findPath(self, q, ret, matrix, n, m): - q = Queue.Queue() + #q = Queue.Queue() dirX = [-1, 0, 1, 0] dirY = [0, -1, 0, 1] - q.put((i,j)) - ret[i][j] = True + #q.put((i,j)) + #ret[i][j] = True while q.empty() == False: x, y = q.get() for d in range(4): @@ -39,17 +39,29 @@ def pacificAtlantic(self, matrix): return ret Pacific = [] Atlantic = [] + pQueue = Queue.Queue() + aQueue = Queue.Queue() for i in range(n): Pacific.append([False for j in range(m)]) Atlantic.append([False for j in range(m)]) for i in range(n): - self.findPath(i, 0, Pacific, matrix, n, m) - self.findPath(i, m - 1, Atlantic, matrix, n, m) + pQueue.put(i, 0) + q.Queue.put(i, m - 1) + Pacific[i][0] = True + Atlantic[i][m - 1] = True + #self.findPath(i, 0, Pacific, matrix, n, m) + #self.findPath(i, m - 1, Atlantic, matrix, n, m) for i in range(m): - self.findPath(0, i, Pacific, matrix, n, m) - self.findPath(n - 1, i, Atlantic, matrix, n, m) + pQueue.put(0, i) + q.Queue.put(n - 1, i) + Pacific[0][i] = True + Atlantic[n - 1][i] = True + #self.findPath(0, i, Pacific, matrix, n, m) + #self.findPath(n - 1, i, Atlantic, matrix, n, m) + self.findPath(pQueue, Pacific, matrix, n, m) + self.findPath(aQueue, Pacific, matrix, n, m) for i in range(n): for j in range(m): From 7056385c491fb7684733f0180e60f73c1c9ded55 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 12 Dec 2016 16:53:23 +0800 Subject: [PATCH 177/210] =?UTF-8?q?=E6=B0=B4=E6=B5=81=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E8=83=BD=E6=B5=81=E5=85=A5=E4=B8=8D=E5=90=8C=E7=9A=84=E6=B5=B7?= =?UTF-8?q?=E6=B4=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Pacific_Atlantic_Water_Flow.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Pacific_Atlantic_Water_Flow.py b/Pacific_Atlantic_Water_Flow.py index 29961b7..b593504 100644 --- a/Pacific_Atlantic_Water_Flow.py +++ b/Pacific_Atlantic_Water_Flow.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-12 03:59:52 PM -# Last modified : 2016-12-12 04:50:09 PM +# Last modified : 2016-12-12 04:53:08 PM # File Name : Pacific_Atlantic_Water_Flow.py # Desc : import Queue @@ -46,22 +46,22 @@ def pacificAtlantic(self, matrix): Atlantic.append([False for j in range(m)]) for i in range(n): - pQueue.put(i, 0) - q.Queue.put(i, m - 1) + pQueue.put((i, 0)) + aQueue.put((i, m - 1)) Pacific[i][0] = True Atlantic[i][m - 1] = True #self.findPath(i, 0, Pacific, matrix, n, m) #self.findPath(i, m - 1, Atlantic, matrix, n, m) for i in range(m): - pQueue.put(0, i) - q.Queue.put(n - 1, i) + pQueue.put((0, i)) + aQueue.put((n - 1, i)) Pacific[0][i] = True Atlantic[n - 1][i] = True #self.findPath(0, i, Pacific, matrix, n, m) #self.findPath(n - 1, i, Atlantic, matrix, n, m) self.findPath(pQueue, Pacific, matrix, n, m) - self.findPath(aQueue, Pacific, matrix, n, m) + self.findPath(aQueue, Atlantic, matrix, n, m) for i in range(n): for j in range(m): From ae707b3ceba52096b20facb2b2aeea6433cc5f0b Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 13 Dec 2016 14:44:40 +0800 Subject: [PATCH 178/210] =?UTF-8?q?=E6=B5=B7=E5=B2=9B=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Number_of_Islands.py | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Number_of_Islands.py diff --git a/Number_of_Islands.py b/Number_of_Islands.py new file mode 100644 index 0000000..4649aff --- /dev/null +++ b/Number_of_Islands.py @@ -0,0 +1,52 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-12 05:19:31 PM +# Last modified : 2016-12-13 02:44:30 PM +# File Name : Number_of_Islands.py +# Desc : +class Solution(object): + + def findIsland(self, i, j): + + self.visited[i][j] = True + for d in range(4): + x = i + self.dirX[d] + y = j + self.dirY[d] + if x < 0 or x >= self.n or y < 0 or y >= self.m or self.visited[x][y] == True or self.grid[x][y] == '0': + continue + self.findIsland(x, y) + + + def numIslands(self, grid): + self.grid = grid + n = len(grid) + if n == 0: + return 0 + m = len(grid[0]) + if m == 0: + return 0 + self.n = n + self.m = m + self.visited = [] + self.dirX = [-1, 0, 1, 0] + self.dirY = [0, -1, 0, 1] + ret = 0 + + for i in range(n): + self.visited.append([False for i in range(m)]) + + for i in range(n): + for j in range(m): + if self.visited[i][j] == False and self.grid[i][j] == '1': + self.findIsland(i, j) + ret += 1 + + return ret + + +if __name__ == "__main__": + s = Solution() + grid = ["11110","11010","11000","00000"] + print s.numIslands(grid) From 8bf9f20718b54f98451a691d66c9ab6e0f8d9166 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 13 Dec 2016 17:16:51 +0800 Subject: [PATCH 179/210] =?UTF-8?q?=E9=93=BE=E8=A1=A8=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insertion_Sort_List.py | 69 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 Insertion_Sort_List.py diff --git a/Insertion_Sort_List.py b/Insertion_Sort_List.py new file mode 100644 index 0000000..1084d69 --- /dev/null +++ b/Insertion_Sort_List.py @@ -0,0 +1,69 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-13 02:47:07 PM +# Last modified : 2016-12-13 05:16:40 PM +# File Name : Insertion_Sort_List.py +# Desc : + + +# Definition for singly-linked list. +class ListNode(object): + def __init__(self, x): + self.val = x + self.next = None + + +class Solution(object): + def insertionSortList(self, head): + ret = ListNode(head.val) + while head.next != None: + head = head.next + tmp = ret + pre = ret + i = 0 + while tmp != None and head.val > tmp.val: + if i == 0: + i += 1 + else: + pre = pre.next + tmp = tmp.next + + if tmp == ret: + inode = ListNode(head.val) + inode.next = tmp + ret = inode + continue + + if tmp == None: + inode = ListNode(head.val) + pre.next = inode + continue + + inode = ListNode(head.val) + pre.next = inode + inode.next = tmp + return ret + + +if __name__ == "__main__": + s = Solution() + head = ListNode(9) + p = head + i = 20 + while i > 0: + tmp = ListNode(i) + p.next = tmp + p = p.next + i -= 1 + + h = s.insertionSortList(head) + i = 1 + while h != None: + print h.val + h = h.next + i += 1 + if i > 20: + break + From a78ee9e71c65e4a4c1b8952e42c041c1354f9914 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 13 Dec 2016 17:18:20 +0800 Subject: [PATCH 180/210] =?UTF-8?q?=E9=93=BE=E8=A1=A8=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insertion_Sort_List.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Insertion_Sort_List.py b/Insertion_Sort_List.py index 1084d69..3a8a178 100644 --- a/Insertion_Sort_List.py +++ b/Insertion_Sort_List.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-13 02:47:07 PM -# Last modified : 2016-12-13 05:16:40 PM +# Last modified : 2016-12-13 05:18:17 PM # File Name : Insertion_Sort_List.py # Desc : @@ -17,6 +17,8 @@ def __init__(self, x): class Solution(object): def insertionSortList(self, head): + if head == None: + return head ret = ListNode(head.val) while head.next != None: head = head.next From 1e71072a61d3cca6f1dfb70bf4b9cba3b7906645 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 13 Dec 2016 17:23:31 +0800 Subject: [PATCH 181/210] =?UTF-8?q?=E9=93=BE=E8=A1=A8=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insertion_Sort_List.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Insertion_Sort_List.py b/Insertion_Sort_List.py index 3a8a178..465f17e 100644 --- a/Insertion_Sort_List.py +++ b/Insertion_Sort_List.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-13 02:47:07 PM -# Last modified : 2016-12-13 05:18:17 PM +# Last modified : 2016-12-13 05:23:28 PM # File Name : Insertion_Sort_List.py # Desc : @@ -24,6 +24,7 @@ def insertionSortList(self, head): head = head.next tmp = ret pre = ret + inode = ListNode(head.val) i = 0 while tmp != None and head.val > tmp.val: if i == 0: @@ -33,17 +34,14 @@ def insertionSortList(self, head): tmp = tmp.next if tmp == ret: - inode = ListNode(head.val) inode.next = tmp ret = inode continue if tmp == None: - inode = ListNode(head.val) pre.next = inode continue - inode = ListNode(head.val) pre.next = inode inode.next = tmp return ret From 3b3bdc5b3c01cdda9be24d9b57893f5fa92125be Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 13 Dec 2016 17:40:52 +0800 Subject: [PATCH 182/210] =?UTF-8?q?=E9=93=BE=E8=A1=A8=E6=8E=92=E5=BA=8F,?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Insertion_Sort_List.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Insertion_Sort_List.py b/Insertion_Sort_List.py index 465f17e..4e9dc66 100644 --- a/Insertion_Sort_List.py +++ b/Insertion_Sort_List.py @@ -3,11 +3,12 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-13 02:47:07 PM -# Last modified : 2016-12-13 05:23:28 PM +# Last modified : 2016-12-13 05:40:43 PM # File Name : Insertion_Sort_List.py # Desc : - - +""" +简单优化 当前递增序列则跳过不更改,当前序列开始递减,则把递减值插入之前的已递增序列中 +""" # Definition for singly-linked list. class ListNode(object): def __init__(self, x): From 2136f3aaa2fc5d93f50a4ecc5091c26528c8e21b Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 14 Dec 2016 18:40:28 +0800 Subject: [PATCH 183/210] =?UTF-8?q?=E6=8A=98=E5=8F=A0=E9=81=8D=E5=8E=86?= =?UTF-8?q?=E4=BA=8C=E5=8F=89=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Binary_Tree_Zigzag_Level_Order_Traversal.py | 51 +++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Binary_Tree_Zigzag_Level_Order_Traversal.py diff --git a/Binary_Tree_Zigzag_Level_Order_Traversal.py b/Binary_Tree_Zigzag_Level_Order_Traversal.py new file mode 100644 index 0000000..2f7473d --- /dev/null +++ b/Binary_Tree_Zigzag_Level_Order_Traversal.py @@ -0,0 +1,51 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-13 05:42:55 PM +# Last modified : 2016-12-14 06:40:09 PM +# File Name : Binary_Tree_Zigzag_Level_Order_Traversal.py +# Desc : + +import Queue +# Definition for a binary tree node. +class TreeNode(object): + def __init__(self, x): + self.val = x + self.left = None + self.right = None + +class Solution(object): + def zigzagLevelOrder(self, root): + if root == None: + return [[]] + + q = Queue.Queue() + q.put(root) + ret = [] + k = 0 + while q.empty() != True: + n = q.qsize() + print n + i = 0 + tmp = [] + while i < n: + i += 1 + node = q.get() + tmp.append(node.val) + if node.left != None: + q.put(node.left) + if node.right != None: + q.put(node.right) + if k % 2 == 0: + ret.append(tmp[:]) + else: + ret.append(tmp.reverse()[:]) + k += 1 + return ret + + +if __name__ == "__main__": + s = Solution() + root = TreeNode(1) + s.zigzagLevelOrder(root) From c6f83a811f1505d77faadebac159023c80a5c4ec Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 14 Dec 2016 18:41:00 +0800 Subject: [PATCH 184/210] =?UTF-8?q?=E6=8A=98=E5=8F=A0=E9=81=8D=E5=8E=86?= =?UTF-8?q?=E4=BA=8C=E5=8F=89=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Binary_Tree_Zigzag_Level_Order_Traversal.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Binary_Tree_Zigzag_Level_Order_Traversal.py b/Binary_Tree_Zigzag_Level_Order_Traversal.py index 2f7473d..daa3d95 100644 --- a/Binary_Tree_Zigzag_Level_Order_Traversal.py +++ b/Binary_Tree_Zigzag_Level_Order_Traversal.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-13 05:42:55 PM -# Last modified : 2016-12-14 06:40:09 PM +# Last modified : 2016-12-14 06:40:58 PM # File Name : Binary_Tree_Zigzag_Level_Order_Traversal.py # Desc : @@ -26,7 +26,6 @@ def zigzagLevelOrder(self, root): k = 0 while q.empty() != True: n = q.qsize() - print n i = 0 tmp = [] while i < n: @@ -48,4 +47,4 @@ def zigzagLevelOrder(self, root): if __name__ == "__main__": s = Solution() root = TreeNode(1) - s.zigzagLevelOrder(root) + print s.zigzagLevelOrder(root) From 2b0baa7bbee573d96af1fb61b6c0924b1218ff66 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 14 Dec 2016 18:44:03 +0800 Subject: [PATCH 185/210] =?UTF-8?q?=E6=8A=98=E5=8F=A0=E9=81=8D=E5=8E=86?= =?UTF-8?q?=E4=BA=8C=E5=8F=89=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Binary_Tree_Zigzag_Level_Order_Traversal.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Binary_Tree_Zigzag_Level_Order_Traversal.py b/Binary_Tree_Zigzag_Level_Order_Traversal.py index daa3d95..8e5e06d 100644 --- a/Binary_Tree_Zigzag_Level_Order_Traversal.py +++ b/Binary_Tree_Zigzag_Level_Order_Traversal.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2016-12-13 05:42:55 PM -# Last modified : 2016-12-14 06:40:58 PM +# Last modified : 2016-12-14 06:43:58 PM # File Name : Binary_Tree_Zigzag_Level_Order_Traversal.py # Desc : @@ -39,7 +39,8 @@ def zigzagLevelOrder(self, root): if k % 2 == 0: ret.append(tmp[:]) else: - ret.append(tmp.reverse()[:]) + tmp.reverse() + ret.append(tmp[:]) k += 1 return ret From 05b861d9a814e098dbd58c36b66434ab2ab9ced3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 27 Dec 2016 17:18:57 +0800 Subject: [PATCH 186/210] =?UTF-8?q?=E9=87=8D=E5=A4=8D=E7=9A=84DNA=E5=BA=8F?= =?UTF-8?q?=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Repeated_DNA_Sequences.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Repeated_DNA_Sequences.py diff --git a/Repeated_DNA_Sequences.py b/Repeated_DNA_Sequences.py new file mode 100644 index 0000000..2173b15 --- /dev/null +++ b/Repeated_DNA_Sequences.py @@ -0,0 +1,32 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-27 05:05:37 PM +# Last modified : 2016-12-27 05:18:32 PM +# File Name : Repeated_DNA_Sequences.py +# Desc : + +class Solution(object): + def findRepeatedDnaSequences(self, s): + w_dict = {} + ret = [] + n = len(s) + for i in range(n - 9): + hash_key = 0 + for j in range(10): + hash_key = ((ord(s[i + j]) & 7) << (j * 3)) | hash_key + if w_dict.has_key(hash_key): + if w_dict[hash_key] == 1: + ret.append(s[i:i + 10]) + w_dict[hash_key] += 1 + else: + w_dict[hash_key] = 1 + + return ret + + +if __name__ == "__main__": + s = Solution() + st = "AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT" + print s.findRepeatedDnaSequences(st) From b8ee2edc06dce394a18c5f8addbc0bd400b40319 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 30 Dec 2016 15:56:34 +0800 Subject: [PATCH 187/210] =?UTF-8?q?=E6=9C=80=E5=B0=8F=E9=AB=98=E5=BA=A6?= =?UTF-8?q?=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Minimum_Height_Trees.py | 68 +++++++++++++++++++++++++++++++ new.txt | 88 +++++++++++++++++++++++------------------ 2 files changed, 118 insertions(+), 38 deletions(-) create mode 100644 Minimum_Height_Trees.py diff --git a/Minimum_Height_Trees.py b/Minimum_Height_Trees.py new file mode 100644 index 0000000..23c74d7 --- /dev/null +++ b/Minimum_Height_Trees.py @@ -0,0 +1,68 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-30 03:45:13 PM +# Last modified : 2016-12-30 03:55:57 PM +# File Name : Minimum_Height_Trees.py +# Desc : + +import copy +import Queue +class Solution(object): + def findMinHeightTrees(self, n, edges): + """ + :type n: int + :type edges: List[List[int]] + :rtype: List[int] + """ + q = Queue.Queue() + tmq = Queue.Queue() + degree = [0 for i in range(n)] + flag = [0 for i in range(n)] + graph = [[] for i in range(n)] + m = 0 + + if n == 2: + return edges[0] + + for edge in edges: + degree[edge[0]] += 1 + degree[edge[1]] += 1 + graph[edge[0]].append(edge[1]) + graph[edge[1]].append(edge[0]) + + for i in range(n): + if degree[i] == 1: + q.put(i) + flag[i] = 1 + degree[i] -= 1 + while n - m > 2: + while q.empty() == False: + node = q.get() + + for adj in graph[node]: + degree[adj] -= 1 + if degree[adj] == 1: + tmq.put(adj) + m += 1 + if n - m <= 2: + break + while tmq.empty() == False: + j = tmq.get() + q.put(j) + flag[j] = 1 + + ret = [] + for i in range(n): + if flag[i] == 0: + ret.append(i) + return ret + + + +if __name__ == "__main__": + s = Solution() + n = 6 + r = [[0,1],[0,2],[0,3],[3,4],[4,5]] + print s.findMinHeightTrees(n, r) diff --git a/new.txt b/new.txt index fb32a84..842a0b2 100644 --- a/new.txt +++ b/new.txt @@ -1,40 +1,52 @@ -class RandomizedCollection { -public: - /** Initialize your data structure here. */ - RandomizedCollection() { +import Queue +class Solution(object): + def findMinHeightTrees(self, n, edges): + """ + :type n: int + :type edges: List[List[int]] + :rtype: List[int] + """ + q = Queue.Queue() + tmq = Queue.Queue() + degree = [0 for i in range(n)] + flag = [0 for i in range(n)] + graph = [[] for i in range(n)] + m = 0 - } - - /** Inserts a value to the collection. Returns true if the collection did not already contain the specified element. */ - bool insert(int val) { - auto result = m.find(val) == m.end(); + if n == 2: + return edges[0] + + for edge in edges: + degree[edge[0]] += 1 + degree[edge[1]] += 1 + graph[edge[0]].append(edge[1]) + graph[edge[1]].append(edge[0]) - m[val].push_back(nums.size()); - nums.push_back(pair(val, m[val].size() - 1)); - - return result; - } - - /** Removes a value from the collection. Returns true if the collection contained the specified element. */ - bool remove(int val) { - auto result = m.find(val) != m.end(); - if(result) - { - auto last = nums.back(); - m[last.first][last.second] = m[val].back(); - nums[m[val].back()] = last; - m[val].pop_back(); - if(m[val].empty()) m.erase(val); - nums.pop_back(); - } - return result; - } - - /** Get a random element from the collection. */ - int getRandom() { - return nums[rand() % nums.size()].first; - } -private: - vector> nums; - unordered_map> m; -}; \ No newline at end of file + for i in range(n): + if degree[i] == 1: + q.put(i) + flag[i] = 1 + degree[i] -= 1 + while n - m > 2: + while q.empty() == False: + node = q.get() + + for adj in graph[node]: + degree[adj] -= 1 + if degree[adj] == 1: + tmq.put(adj) + m += 1 + print m + q = copy.copy(tmq) + + if n - m <= 2: + break + while tmq.empty() == False: + flag[tmq.get()] = 1 + print 111 + + ret = [] + for i in range(n): + if flag[i] == 0: + ret.append(i) + return ret \ No newline at end of file From 165f2bf0f77b3d6a0f598bd349794d448e0a2e43 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 4 Jan 2017 22:14:33 +0800 Subject: [PATCH 188/210] =?UTF-8?q?=E5=B9=BF=E6=90=9C=E5=80=92=E6=B0=B4?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Water_and_Jug_Problem.py | 101 ++++++++++++++++++++++++++++++++ new.txt | 120 +++++++++++++++++++++++++-------------- 2 files changed, 177 insertions(+), 44 deletions(-) create mode 100644 Water_and_Jug_Problem.py diff --git a/Water_and_Jug_Problem.py b/Water_and_Jug_Problem.py new file mode 100644 index 0000000..9081fcb --- /dev/null +++ b/Water_and_Jug_Problem.py @@ -0,0 +1,101 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-04 10:09:40 PM +# Last modified : 2017-01-04 10:14:14 PM +# File Name : Water_and_Jug_Problem.py +# Desc : + + +import Queue + +class Solution(object): + def canMeasureWater(self, x, y, z): + """ + :type x: int + :type y: int + :type z: int + :rtype: bool + """ + q = Queue.Queue() + q.put((0, 0)) + hash_dict = {} + hash_dict["0\t0"] = 1 + while q.empty() == False: + x2, y2 = q.get() + + x1, y1 = x2, y2 + print x1, y1,"%%%%%%" + if x1 != x: + x1 = x + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if x1 == z: + return True + + x1, y1 = x2, y2 + if y1 != y: + y1 = y + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z: + return True + + x1, y1 = x2, y2 + + if x1 != x: + tmp = y1 - (x - x1) + if tmp >= 0: + y1 = y1 - tmp + x1 = x + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + else: + x1 = x1 + y1 + y1 = 0 + + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + + x1, y1 = x2, y2 + if y1 != y: + tmp = x1 - (y - y1) + if tmp >= 0: + x1 = x1 - tmp + y1 = y + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + else: + y1 = y1 + x1 + x1 = 0 + + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + + return False + + +if __name__ == "__main__": + s = Solution() + print s.canMeasureWater(3,5,4) diff --git a/new.txt b/new.txt index 842a0b2..8f94b1f 100644 --- a/new.txt +++ b/new.txt @@ -1,52 +1,84 @@ import Queue + class Solution(object): - def findMinHeightTrees(self, n, edges): + def canMeasureWater(self, x, y, z): """ - :type n: int - :type edges: List[List[int]] - :rtype: List[int] + :type x: int + :type y: int + :type z: int + :rtype: bool """ q = Queue.Queue() - tmq = Queue.Queue() - degree = [0 for i in range(n)] - flag = [0 for i in range(n)] - graph = [[] for i in range(n)] - m = 0 - - if n == 2: - return edges[0] + q.put((0, 0)) + hash_dict = {} + hash_dict["0\t0"] = 1 + while q.empty() == False: + x2, y2 = q.get() - for edge in edges: - degree[edge[0]] += 1 - degree[edge[1]] += 1 - graph[edge[0]].append(edge[1]) - graph[edge[1]].append(edge[0]) - - for i in range(n): - if degree[i] == 1: - q.put(i) - flag[i] = 1 - degree[i] -= 1 - while n - m > 2: - while q.empty() == False: - node = q.get() + x1, y1 = x2, y2 + print x1, y1,"%%%%%%" + if x1 != x: + x1 = x + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if x1 == z: + return True - for adj in graph[node]: - degree[adj] -= 1 - if degree[adj] == 1: - tmq.put(adj) - m += 1 - print m - q = copy.copy(tmq) + x1, y1 = x2, y2 + if y1 != y: + y1 = y + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z: + return True + + x1, y1 = x2, y2 - if n - m <= 2: - break - while tmq.empty() == False: - flag[tmq.get()] = 1 - print 111 - - ret = [] - for i in range(n): - if flag[i] == 0: - ret.append(i) - return ret \ No newline at end of file + if x1 != x: + y1 = y1 - (x - x1) + if y1 >= 0: + x1 = x + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + else: + x1 = x1 + y1 + y1 = 0 + + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + + x1, y1 = x2, y2 + if y1 != y: + x1 = x1 - (y - y1) + if x1 >= 0: + y1 = y + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + else: + y1 = y1 + x1 + x1 = 0 + + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1 + if y1 == z or x1 == z: + return True + + return False \ No newline at end of file From 40ca374ec80cd6bbfe76b3a8042d4f3953825594 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 4 Jan 2017 22:49:07 +0800 Subject: [PATCH 189/210] =?UTF-8?q?=E5=B9=BF=E6=90=9C=E5=80=92=E6=B0=B4?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Water_and_Jug_Problem.py | 54 ++++++++++++++++++++++++++++------------ 1 file changed, 38 insertions(+), 16 deletions(-) diff --git a/Water_and_Jug_Problem.py b/Water_and_Jug_Problem.py index 9081fcb..46d7081 100644 --- a/Water_and_Jug_Problem.py +++ b/Water_and_Jug_Problem.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-04 10:09:40 PM -# Last modified : 2017-01-04 10:14:14 PM +# Last modified : 2017-01-04 10:45:32 PM # File Name : Water_and_Jug_Problem.py # Desc : @@ -18,6 +18,8 @@ def canMeasureWater(self, x, y, z): :type z: int :rtype: bool """ + if x + y == z: + return True q = Queue.Queue() q.put((0, 0)) hash_dict = {} @@ -27,13 +29,33 @@ def canMeasureWater(self, x, y, z): x1, y1 = x2, y2 print x1, y1,"%%%%%%" + if x1 != 0: + x1 = 0 + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1, "###0#" + if y1 == z or x1 == z or x1 + y1 == z: + return True + + x1, y1 = x2, y2 + if y1 != 0: + y1 = 0 + if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: + hash_dict[str(x1) + "\t" + str(y1)] = 1 + q.put((x1,y1)) + print x1, y1, "###1#" + if y1 == z or x1 == z or x1 + y1 == z: + return True + + x1, y1 = x2, y2 if x1 != x: x1 = x if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) - print x1, y1 - if x1 == z: + print x1, y1, "###2#" + if y1 == z or x1 == z or x1 + y1 == z: return True x1, y1 = x2, y2 @@ -42,8 +64,8 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) - print x1, y1 - if y1 == z: + print x1, y1,"####3###" + if y1 == z or x1 == z or x1 + y1 == z: return True x1, y1 = x2, y2 @@ -51,13 +73,13 @@ def canMeasureWater(self, x, y, z): if x1 != x: tmp = y1 - (x - x1) if tmp >= 0: - y1 = y1 - tmp + y1 = y1 - (x - x1) x1 = x if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: + print x1, y1,"####4####" + if y1 == z or x1 == z or x1 + y1 == z: return True else: x1 = x1 + y1 @@ -66,21 +88,21 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: + print x1, y1,"#####5###" + if y1 == z or x1 == z or x1 + y1 == z: return True x1, y1 = x2, y2 if y1 != y: tmp = x1 - (y - y1) if tmp >= 0: - x1 = x1 - tmp + x1 = x1 - (y - y1) y1 = y if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: + print x1, y1,"#####6####" + if y1 == z or x1 == z or x1 + y1 == z: return True else: y1 = y1 + x1 @@ -89,8 +111,8 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: + print x1, y1,"#####7####" + if y1 == z or x1 == z or x1 + y1 == z: return True return False @@ -98,4 +120,4 @@ def canMeasureWater(self, x, y, z): if __name__ == "__main__": s = Solution() - print s.canMeasureWater(3,5,4) + print s.canMeasureWater(104639,104651,234) From c32d11cea1e8e725d4db86e65dec5414d4006687 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Wed, 4 Jan 2017 23:30:51 +0800 Subject: [PATCH 190/210] =?UTF-8?q?=E5=B9=BF=E6=90=9C=E5=80=92=E6=B0=B4?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Water_and_Jug_Problem.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/Water_and_Jug_Problem.py b/Water_and_Jug_Problem.py index 46d7081..6d66c41 100644 --- a/Water_and_Jug_Problem.py +++ b/Water_and_Jug_Problem.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-04 10:09:40 PM -# Last modified : 2017-01-04 10:45:32 PM +# Last modified : 2017-01-04 11:27:04 PM # File Name : Water_and_Jug_Problem.py # Desc : @@ -24,6 +24,8 @@ def canMeasureWater(self, x, y, z): q.put((0, 0)) hash_dict = {} hash_dict["0\t0"] = 1 + self.hash_father = {} + self.hash_father["0\t0"] = 0 while q.empty() == False: x2, y2 = q.get() @@ -34,6 +36,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1, "###0#" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -44,6 +47,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1, "###1#" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -54,6 +58,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1, "###2#" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -64,6 +69,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1,"####3###" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -78,6 +84,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1,"####4####" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -88,6 +95,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1,"#####5###" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -101,6 +109,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1,"#####6####" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -111,6 +120,7 @@ def canMeasureWater(self, x, y, z): if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: hash_dict[str(x1) + "\t" + str(y1)] = 1 q.put((x1,y1)) + self.hash_father[str(x1) + "\t" + str(y1)] = str(x2) + "\t" + str(y2) print x1, y1,"#####7####" if y1 == z or x1 == z or x1 + y1 == z: return True @@ -119,5 +129,10 @@ def canMeasureWater(self, x, y, z): if __name__ == "__main__": - s = Solution() - print s.canMeasureWater(104639,104651,234) + s = Solution() + print s.canMeasureWater(104639,104651,234) + hash_father = s.hash_father + end = "234\t104651" + while hash_father[end] != 0: + print hash_father[end] + end = hash_father[end] From 42a9b939efa503df10e0bde60b59545282e4db22 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Thu, 5 Jan 2017 14:15:02 +0800 Subject: [PATCH 191/210] =?UTF-8?q?=E5=90=8E=E7=BC=80=E8=A1=A8=E8=BE=BE?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Evaluate_Reverse_Polish_Notation.py | 48 +++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 Evaluate_Reverse_Polish_Notation.py diff --git a/Evaluate_Reverse_Polish_Notation.py b/Evaluate_Reverse_Polish_Notation.py new file mode 100644 index 0000000..884cc36 --- /dev/null +++ b/Evaluate_Reverse_Polish_Notation.py @@ -0,0 +1,48 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-05 01:01:26 PM +# Last modified : 2017-01-05 02:14:48 PM +# File Name : Evaluate_Reverse_Polish_Notation.py +# Desc : + + +class Solution(object): + def evalRPN(self, tokens): + n = len(tokens) + if n == 1: + return int(tokens[0]) + num_stack = [] + num_stack.append(tokens[0]) + num_stack.append(tokens[1]) + for i in range(2, n): + if tokens[i] == '/': + b = int(num_stack.pop()) + a = int(num_stack.pop()) + tmp = a / b + num_stack.append(tmp) + elif tokens[i] == '*': + b = int(num_stack.pop()) + a = int(num_stack.pop()) + tmp = a * b + num_stack.append(tmp) + elif tokens[i] == '-': + b = int(num_stack.pop()) + a = int(num_stack.pop()) + tmp = a - b + num_stack.append(tmp) + elif tokens[i] == '+': + b = int(num_stack.pop()) + a = int(num_stack.pop()) + tmp = a + b + num_stack.append(tmp) + else: + num_stack.append(tokens[i]) + return num_stack[0] + + +if __name__ == "__main__": + s = Solution() + tokens = ["2", "1", "+", "3", "*"] + print s.evalRPN(tokens) From 02c5d7da2042df12caa90ab9ec77c7011eb6ada3 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 6 Jan 2017 19:02:36 +0800 Subject: [PATCH 192/210] =?UTF-8?q?=E7=BB=99=E5=AE=9A=E6=95=B0=E5=AD=97?= =?UTF-8?q?=E5=BA=8F=E5=88=97=E7=BB=84=E5=90=88=E6=88=90=E7=9A=84=E6=9C=80?= =?UTF-8?q?=E5=A4=A7=E7=9A=84=E6=95=B0=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Evaluate_Reverse_Polish_Notation.py | 15 ++++++++++----- Largest_Number.py | 24 ++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 Largest_Number.py diff --git a/Evaluate_Reverse_Polish_Notation.py b/Evaluate_Reverse_Polish_Notation.py index 884cc36..a35645e 100644 --- a/Evaluate_Reverse_Polish_Notation.py +++ b/Evaluate_Reverse_Polish_Notation.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-05 01:01:26 PM -# Last modified : 2017-01-05 02:14:48 PM +# Last modified : 2017-01-05 02:25:58 PM # File Name : Evaluate_Reverse_Polish_Notation.py # Desc : @@ -14,29 +14,33 @@ def evalRPN(self, tokens): if n == 1: return int(tokens[0]) num_stack = [] - num_stack.append(tokens[0]) - num_stack.append(tokens[1]) - for i in range(2, n): + #num_stack.append(tokens[0]) + #num_stack.append(tokens[1]) + for i in range(n): if tokens[i] == '/': b = int(num_stack.pop()) a = int(num_stack.pop()) tmp = a / b num_stack.append(tmp) + print a,b,num_stack[-1],'/' elif tokens[i] == '*': b = int(num_stack.pop()) a = int(num_stack.pop()) tmp = a * b num_stack.append(tmp) + print num_stack[-1],'*' elif tokens[i] == '-': b = int(num_stack.pop()) a = int(num_stack.pop()) tmp = a - b num_stack.append(tmp) + print num_stack[-1],'-' elif tokens[i] == '+': b = int(num_stack.pop()) a = int(num_stack.pop()) tmp = a + b num_stack.append(tmp) + print num_stack[-1],'+' else: num_stack.append(tokens[i]) return num_stack[0] @@ -44,5 +48,6 @@ def evalRPN(self, tokens): if __name__ == "__main__": s = Solution() - tokens = ["2", "1", "+", "3", "*"] + #tokens = ["2", "1", "+", "3", "*"] + tokens = ["10","6","9","3","+","-11","*","/","*","17","+","5","+"] print s.evalRPN(tokens) diff --git a/Largest_Number.py b/Largest_Number.py new file mode 100644 index 0000000..17c04eb --- /dev/null +++ b/Largest_Number.py @@ -0,0 +1,24 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-06 06:59:40 PM +# Last modified : 2017-01-06 07:02:13 PM +# File Name : Largest_Number.py +# Desc : +""" +通过排序,大小比较为两个字符串拼接后的字典序 +""" +class Solution: + # @param num, a list of integers + # @return a string + def largestNumber(self, num): + num = [str(x) for x in num] + num.sort(cmp=lambda x, y: cmp(y+x, x+y)) + return ''.join(num).lstrip('0') or '0' + + +if __name__ == "__main__": + s = Solution() + num = [3, 30, 34, 5, 9] + print s.largestNumber(num) From 3b931c7aa67a38380b58d9ca34aa49ffa5d05d75 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 7 Jan 2017 16:16:30 +0800 Subject: [PATCH 193/210] =?UTF-8?q?=E5=AD=97=E5=85=B8=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Add_and_Search_Word-Data_structure_design.py | 37 ++++++++++++++++ Longest_Absolute_File_Path.py | 45 ++++++++++++++++++++ html.txt | 22 ++++++++++ 3 files changed, 104 insertions(+) create mode 100644 Add_and_Search_Word-Data_structure_design.py create mode 100644 Longest_Absolute_File_Path.py create mode 100644 html.txt diff --git a/Add_and_Search_Word-Data_structure_design.py b/Add_and_Search_Word-Data_structure_design.py new file mode 100644 index 0000000..dcd0066 --- /dev/null +++ b/Add_and_Search_Word-Data_structure_design.py @@ -0,0 +1,37 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-07 04:13:43 PM +# Last modified : 2017-01-07 04:16:22 PM +# File Name : Add_and_Search_Word-Data_structure_design.py +# Desc : +""" +字典树的另一种用法 +for else 语句 当for正常结束时else语句被执行 +""" +class WordDictionary(object): + def __init__(self): + self.word_dict = collections.defaultdict(list) + + + def addWord(self, word): + if word: + self.word_dict[len(word)].append(word) + + def search(self, word): + if not word: + return False + if '.' not in word: + return word in self.word_dict[len(word)] + for v in self.word_dict[len(word)]: + # match xx.xx.x with yyyyyyy + for i, ch in enumerate(word): + if ch != v[i] and ch != '.': + break + else: + return True + return False + +if __name__ == "__main__": + s = Solution() diff --git a/Longest_Absolute_File_Path.py b/Longest_Absolute_File_Path.py new file mode 100644 index 0000000..098211e --- /dev/null +++ b/Longest_Absolute_File_Path.py @@ -0,0 +1,45 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-06 07:09:38 PM +# Last modified : 2017-01-06 07:34:29 PM +# File Name : Longest_Absolute_File_Path.py +# Desc : + + +class Solution(object): + def lengthLongestPath(self, inp): + tmp = '' + stack = [] + k = 0 + ret = 0 + n = len(inp) + i = 0 + while i < n: + if inp[i] == '\n': + i += 1 + t = 0 + while inp[i] == '\t': + i += 1 + t += 1 + if t != k: + stack.append(tmp) + else: + if len('/'.join(stack)) > ret: + ret = len('/'.join(stack)) + print '/'.join(stack) + stack.pop() + k -= 1 + tmp = '' + k += 1 + else: + tmp += inp[i] + i += 1 + return ret + + +if __name__ == "__main__": + s = Solution() + inp = "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext" + print s.lengthLongestPath(inp) diff --git a/html.txt b/html.txt new file mode 100644 index 0000000..9dbc6fe --- /dev/null +++ b/html.txt @@ -0,0 +1,22 @@ +class WordDictionary(object): + def __init__(self): + self.word_dict = collections.defaultdict(list) + + + def addWord(self, word): + if word: + self.word_dict[len(word)].append(word) + + def search(self, word): + if not word: + return False + if '.' not in word: + return word in self.word_dict[len(word)] + for v in self.word_dict[len(word)]: + # match xx.xx.x with yyyyyyy + for i, ch in enumerate(word): + if ch != v[i] and ch != '.': + break + else: + return True + return False \ No newline at end of file From 31bbc084712a6fa41f551fd0a9d16057929af9fe Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 9 Jan 2017 10:29:08 +0800 Subject: [PATCH 194/210] =?UTF-8?q?=E6=9E=84=E5=9B=BE=E5=B9=BF=E6=90=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Ladder.py | 73 ++++++++++++++++++++++++++++ new.txt | 128 +++++++++++++++++++------------------------------ 2 files changed, 123 insertions(+), 78 deletions(-) create mode 100644 Word_Ladder.py diff --git a/Word_Ladder.py b/Word_Ladder.py new file mode 100644 index 0000000..d0fe6ec --- /dev/null +++ b/Word_Ladder.py @@ -0,0 +1,73 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-09 10:14:54 AM +# Last modified : 2017-01-09 10:28:55 AM +# File Name : Word_Ladder.py +# Desc : + +import collections +import Queue +class Solution(object): + def ladderLength(self, beginWord, endWord, wordList): + """ + :type beginWord: str + :type endWord: str + :type wordList: Set[str] + :rtype: int + """ + if wordList == None: + return 0 + n = len(wordList) + graph = collections.defaultdict(list) + wordList.remove(beginWord) + wordList.remove(endWord) + dif = 0 + for word1 in wordList: + for word2 in wordList: + dif = 0 + m = len(word1) + for k in range(m): + if word1[k] != word2[k]: + dif += 1 + if dif > 1: + break + if dif == 1: + graph[word1].append(word2) + for word in wordList: + m = len(word) + for k in range(m): + dif = 0 + if beginWord[k] != word[k]: + dif += 1 + if dif > 1: + break + if dif == 1: + graph[beginWord].append(word) + dif = 0 + if endWord[k] != word[k]: + dif += 1 + if dif > 1: + break + if dif == 1: + graph[word].append(endWord) + q = Queue.Queue() + q.put((beginWord,0)) + visit = {} + while q.empty() == False: + now, k = q.get() + if now == endWord: + return k + for node in graph[now]: + if visit.has_key(node) == False: + visit[node] = 1 + q.put((node,k + 1)) + return 0 + +if __name__ == "__main__": + s = Solution() + begin = 'a' + end = 'c' + wordList = set(['a','b','c']) + print s.ladderLength(begin,end,wordList) diff --git a/new.txt b/new.txt index 8f94b1f..f98500a 100644 --- a/new.txt +++ b/new.txt @@ -1,84 +1,56 @@ +import collections import Queue - class Solution(object): - def canMeasureWater(self, x, y, z): + def ladderLength(self, beginWord, endWord, wordList): """ - :type x: int - :type y: int - :type z: int - :rtype: bool + :type beginWord: str + :type endWord: str + :type wordList: Set[str] + :rtype: int """ + if wordList == None: + return 0 + n = len(wordList) + graph = collections.defaultdict(list) + dif = 0 + for word1 in wordList: + for word2 in wordList: + dif = 0 + m = len(word1) + for k in range(m): + if word1[k] != word2[k]: + dif += 1 + if dif > 1: + break + if dif == 1: + graph[word1].append(word2) + for word in wordList: + m = len(word) + for k in range(m): + dif = 0 + if beginWord[k] != word[k]: + dif += 1 + if dif > 1: + break + if dif == 1: + graph[beginWord].append(word) + dif = 0 + if endWord[k] != word[k]: + dif += 1 + if dif > 1: + break + if dif == 1: + graph[word].append(endWord) + q = Queue.Queue() - q.put((0, 0)) - hash_dict = {} - hash_dict["0\t0"] = 1 + q.put((beginWord,0)) + visit = {} while q.empty() == False: - x2, y2 = q.get() - - x1, y1 = x2, y2 - print x1, y1,"%%%%%%" - if x1 != x: - x1 = x - if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: - hash_dict[str(x1) + "\t" + str(y1)] = 1 - q.put((x1,y1)) - print x1, y1 - if x1 == z: - return True - - x1, y1 = x2, y2 - if y1 != y: - y1 = y - if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: - hash_dict[str(x1) + "\t" + str(y1)] = 1 - q.put((x1,y1)) - print x1, y1 - if y1 == z: - return True - - x1, y1 = x2, y2 - - if x1 != x: - y1 = y1 - (x - x1) - if y1 >= 0: - x1 = x - if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: - hash_dict[str(x1) + "\t" + str(y1)] = 1 - q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: - return True - else: - x1 = x1 + y1 - y1 = 0 - - if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: - hash_dict[str(x1) + "\t" + str(y1)] = 1 - q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: - return True - - x1, y1 = x2, y2 - if y1 != y: - x1 = x1 - (y - y1) - if x1 >= 0: - y1 = y - if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: - hash_dict[str(x1) + "\t" + str(y1)] = 1 - q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: - return True - else: - y1 = y1 + x1 - x1 = 0 - - if hash_dict.has_key(str(x1) + "\t" + str(y1)) == False: - hash_dict[str(x1) + "\t" + str(y1)] = 1 - q.put((x1,y1)) - print x1, y1 - if y1 == z or x1 == z: - return True - - return False \ No newline at end of file + now, k = q.get() + if now == endWord: + return k + for node in now: + if visit.has_key(node) == False: + visit[node] = 1 + q.put((node,k + 1)) + return 0 \ No newline at end of file From 27cd799a7befa08e20a71aa224a3ac897fc23187 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 9 Jan 2017 10:33:31 +0800 Subject: [PATCH 195/210] =?UTF-8?q?=E6=9E=84=E5=9B=BE=E5=B9=BF=E6=90=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Ladder.py | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/Word_Ladder.py b/Word_Ladder.py index d0fe6ec..2c82863 100644 --- a/Word_Ladder.py +++ b/Word_Ladder.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-09 10:14:54 AM -# Last modified : 2017-01-09 10:28:55 AM +# Last modified : 2017-01-09 10:33:28 AM # File Name : Word_Ladder.py # Desc : @@ -21,8 +21,6 @@ def ladderLength(self, beginWord, endWord, wordList): return 0 n = len(wordList) graph = collections.defaultdict(list) - wordList.remove(beginWord) - wordList.remove(endWord) dif = 0 for word1 in wordList: for word2 in wordList: @@ -43,21 +41,21 @@ def ladderLength(self, beginWord, endWord, wordList): dif += 1 if dif > 1: break - if dif == 1: - graph[beginWord].append(word) + if dif == 1 or dif == 0: + graph['begin$'].append(word) dif = 0 if endWord[k] != word[k]: dif += 1 if dif > 1: break - if dif == 1: - graph[word].append(endWord) + if dif == 1 or dif == 0: + graph['end$'].append(endWord) q = Queue.Queue() - q.put((beginWord,0)) + q.put(('begin$',0)) visit = {} while q.empty() == False: now, k = q.get() - if now == endWord: + if now == 'end$': return k for node in graph[now]: if visit.has_key(node) == False: @@ -67,7 +65,7 @@ def ladderLength(self, beginWord, endWord, wordList): if __name__ == "__main__": s = Solution() - begin = 'a' - end = 'c' - wordList = set(['a','b','c']) + begin = 'hot' + end = 'dog' + wordList = set(["hot","dog","dot"]) print s.ladderLength(begin,end,wordList) From 9e44a596a6afc9188d1a391b03452271a7bb7908 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 9 Jan 2017 10:50:46 +0800 Subject: [PATCH 196/210] =?UTF-8?q?=E6=9E=84=E5=9B=BE=E5=B9=BF=E6=90=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Word_Ladder.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/Word_Ladder.py b/Word_Ladder.py index 2c82863..33026d3 100644 --- a/Word_Ladder.py +++ b/Word_Ladder.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-09 10:14:54 AM -# Last modified : 2017-01-09 10:33:28 AM +# Last modified : 2017-01-09 10:50:42 AM # File Name : Word_Ladder.py # Desc : @@ -31,25 +31,27 @@ def ladderLength(self, beginWord, endWord, wordList): dif += 1 if dif > 1: break - if dif == 1: - graph[word1].append(word2) + if dif == 1: + graph[word1].append(word2) for word in wordList: m = len(word) + dif = 0 for k in range(m): - dif = 0 if beginWord[k] != word[k]: dif += 1 if dif > 1: break - if dif == 1 or dif == 0: - graph['begin$'].append(word) - dif = 0 + if dif == 1 or dif == 0: + graph['begin$'].append(word) + + dif = 0 + for k in range(m): if endWord[k] != word[k]: dif += 1 if dif > 1: break - if dif == 1 or dif == 0: - graph['end$'].append(endWord) + if dif == 0: + graph[word].append('end$') q = Queue.Queue() q.put(('begin$',0)) visit = {} From d3987abd2fcde5c2a1b9585ef9c2acc641742cfe Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Mon, 9 Jan 2017 14:39:19 +0800 Subject: [PATCH 197/210] =?UTF-8?q?=E6=A0=91=E7=8A=B6=E6=95=B0=E7=BB=84?= =?UTF-8?q?=EF=BC=8C=E6=B1=82=E5=AD=90=E5=BA=8F=E5=88=97=E7=9A=84=E5=92=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Range_Sum_Query.py | 58 +++++++++++++++++++++++++++++++ new.txt | 86 ++++++++++++++++++---------------------------- 2 files changed, 92 insertions(+), 52 deletions(-) create mode 100644 Range_Sum_Query.py diff --git a/Range_Sum_Query.py b/Range_Sum_Query.py new file mode 100644 index 0000000..f9e67de --- /dev/null +++ b/Range_Sum_Query.py @@ -0,0 +1,58 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-09 02:32:12 PM +# Last modified : 2017-01-09 02:39:02 PM +# File Name : Range_Sum_Query.py +# Desc : + +class NumArray(object): + def __init__(self, nums): + """ + initialize your data structure here. + :type nums: List[int] + """ + n = len(nums) + self.n = n + if n != 0: + self.bit = [0 for i in range(n + 1)] + for i in range(n): + self.update(i,nums[i]) + print self.bit + + + def update(self, i, val): + """ + :type i: int + :type val: int + :rtype: int + """ + i += 1 + while i <= self.n: + self.bit[i] += val + i = i + (i & (-i)) + + + def sumRange(self, i, j): + """ + sum of elements nums[i..j], inclusive. + :type i: int + :type j: int + :rtype: int + """ + j += 1 + ret = 0 + while i > 0: + ret += self.bit[i] + i = i - (i & (-i)) + ret1 = 0 + while j > 0: + ret1 += self.bit[j] + j = j - (j & (-j)) + return ret1 - ret + +if __name__ == "__main__": + nums = [1, 3, 5] + s = NumArray(nums) + print s.sumRange(1,2) diff --git a/new.txt b/new.txt index f98500a..864f408 100644 --- a/new.txt +++ b/new.txt @@ -1,56 +1,38 @@ -import collections -import Queue -class Solution(object): - def ladderLength(self, beginWord, endWord, wordList): +class NumArray(object): + def __init__(self, nums): """ - :type beginWord: str - :type endWord: str - :type wordList: Set[str] + initialize your data structure here. + :type nums: List[int] + """ + n = len(nums) + self.n = n + if n != 0: + self.bit = [0 for i in range(n + 1)] + for i in range(n): + self.update(i,nums[i]) + + + def update(self, i, val): + """ + :type i: int + :type val: int :rtype: int """ - if wordList == None: - return 0 - n = len(wordList) - graph = collections.defaultdict(list) - dif = 0 - for word1 in wordList: - for word2 in wordList: - dif = 0 - m = len(word1) - for k in range(m): - if word1[k] != word2[k]: - dif += 1 - if dif > 1: - break - if dif == 1: - graph[word1].append(word2) - for word in wordList: - m = len(word) - for k in range(m): - dif = 0 - if beginWord[k] != word[k]: - dif += 1 - if dif > 1: - break - if dif == 1: - graph[beginWord].append(word) - dif = 0 - if endWord[k] != word[k]: - dif += 1 - if dif > 1: - break - if dif == 1: - graph[word].append(endWord) + i += 1 + while i <= self.n: + self.bit[i] += val + i = i + (i & (-i)) - q = Queue.Queue() - q.put((beginWord,0)) - visit = {} - while q.empty() == False: - now, k = q.get() - if now == endWord: - return k - for node in now: - if visit.has_key(node) == False: - visit[node] = 1 - q.put((node,k + 1)) - return 0 \ No newline at end of file + + def sumRange(self, i, j): + """ + sum of elements nums[i..j], inclusive. + :type i: int + :type j: int + :rtype: int + """ + ret = 0 + while i > 0: + ret += self.bit[i] + i = i - (i & (-i)) + return ret \ No newline at end of file From 488476758e86cab9353493a014377894d7bbb4cd Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 17 Jan 2017 15:08:36 +0800 Subject: [PATCH 198/210] =?UTF-8?q?=E9=9D=92=E8=9B=99=E8=BF=87=E6=B2=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Frog_Jump.java | 37 +++++++++++++++++++++++++++++++++++++ N-Queens_II.py | 19 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 Frog_Jump.java create mode 100644 N-Queens_II.py diff --git a/Frog_Jump.java b/Frog_Jump.java new file mode 100644 index 0000000..2ef5887 --- /dev/null +++ b/Frog_Jump.java @@ -0,0 +1,37 @@ +/*朴素DP*/ +public class Solution { + public boolean canCross(int[] stones) { + Map> stoneMap = new HashMap<>(); + for (int i=1;i()); + } + + if (stones[0]+1 == stones[1]) { + stoneMap.get(stones[1]).add(1); + } + + for(int i=1;i= 1; + } +} + +public class Main { + public static void main(String args[]) { + Solution s = new Solution(); + int[] stones = {0,1,2,3,4,8,9,11}; + System.out.println(s.canCross(stones)); + } +} diff --git a/N-Queens_II.py b/N-Queens_II.py new file mode 100644 index 0000000..315d1d9 --- /dev/null +++ b/N-Queens_II.py @@ -0,0 +1,19 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-11 06:19:36 PM +# Last modified : 2017-01-11 06:32:50 PM +# File Name : N-Queens_II.py +# Desc : + + +class Solution(object): + def totalNQueens(self, n): + pass + + +if __name__ == "__main__": + s = Solution() + n = 8 + print s.totalNQueens(n) From 39ce2ac1916ab7616201e1913a9a780d66757515 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 17 Jan 2017 15:10:47 +0800 Subject: [PATCH 199/210] =?UTF-8?q?=E7=BC=96=E8=BE=91=E8=B7=9D=E7=A6=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Edit_Distance.java | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Edit_Distance.java diff --git a/Edit_Distance.java b/Edit_Distance.java new file mode 100644 index 0000000..04df122 --- /dev/null +++ b/Edit_Distance.java @@ -0,0 +1,27 @@ +/*编辑距离 滚动数组*/ +public class Solution { + public int minDistance(String word1, String word2) { + int l1 = word1.length(); + int l2 = word2.length(); + + int dp[][] = new int[l1+1][l2+1]; + for(int i=0;i<=l1;i++) { + dp[i][0] = i; + } + + for(int j=0;j<=l2;j++) { + dp[0][j] = j; + } + + for(int i=1;i<=l1;i++) { + for(int j=1;j<=l2;j++){ + if (word1.charAt(i-1) == word2.charAt(j-1)){ + dp[i][j] = dp[i-1][j-1]; + }else{ + dp[i][j] = Math.min(Math.min(dp[i-1][j],dp[i][j-1]),dp[i-1][j-1]) + 1; + } + } + } + return dp[l1][l2]; + } +} From 722c68f57b705ce50312b3bf330cf2033976a9fd Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 17 Jan 2017 16:03:40 +0800 Subject: [PATCH 200/210] =?UTF-8?q?=E4=B8=8D=E5=90=8C=E7=9A=84=E5=AD=90?= =?UTF-8?q?=E4=B8=B2=E6=9C=89=E5=87=A0=E4=B8=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Distinct_Subsequences.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Distinct_Subsequences.py diff --git a/Distinct_Subsequences.py b/Distinct_Subsequences.py new file mode 100644 index 0000000..3c2b9c7 --- /dev/null +++ b/Distinct_Subsequences.py @@ -0,0 +1,35 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-17 03:47:32 PM +# Last modified : 2017-01-17 04:03:24 PM +# File Name : Distinct_Subsequences.py +# Desc : +class Solution(object): + def numDistinct(self, s, t): + sl = len(s) + tl = len(t) + dp = [[] for i in range(tl + 1)] + for i in range(tl + 1): + for j in range(sl + 1): + if i != 0: + dp[i].append(0) + else: + dp[i].append(1) + + for i in range(1,tl+1): + for j in range(1,sl + 1): + if s[j-1] != t[i-1]: + dp[i][j] = dp[i][j-1] + else: + dp[i][j] = dp[i][j-1] + dp[i-1][j-1] + + return dp[tl][sl] + + +if __name__ == "__main__": + s = Solution() + st = 'rabbbit' + t = 'rabbit' + print s.numDistinct(st, t) From 928ba3676c0bea36390a2484faee7ab81bec981e Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 17 Jan 2017 16:55:37 +0800 Subject: [PATCH 201/210] =?UTF-8?q?N=E7=9A=87=E5=90=8E=E7=9A=84=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Distinct_Subsequences.py | 23 ++++++++++++++++--- N-Queens.py | 49 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 3 deletions(-) create mode 100644 N-Queens.py diff --git a/Distinct_Subsequences.py b/Distinct_Subsequences.py index 3c2b9c7..0e02cd4 100644 --- a/Distinct_Subsequences.py +++ b/Distinct_Subsequences.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-17 03:47:32 PM -# Last modified : 2017-01-17 04:03:24 PM +# Last modified : 2017-01-17 04:12:39 PM # File Name : Distinct_Subsequences.py # Desc : class Solution(object): @@ -25,11 +25,28 @@ def numDistinct(self, s, t): else: dp[i][j] = dp[i][j-1] + dp[i-1][j-1] + for i in dp: + print i return dp[tl][sl] + def numDistinct1(self, s, t): + sl = len(s) + tl = len(t) + dp = [[] for i in range(tl + 1)] + for i in range(tl + 1): + for j in range(sl + 1): + if i != 0: + dp[i].append(0) + else: + dp[i].append(1) + + for i in range(1, tl + 1): + for j in range(1, sl + 1): + pass + if __name__ == "__main__": s = Solution() - st = 'rabbbit' - t = 'rabbit' + st = 'zxbabcdjf' + t = 'abc' print s.numDistinct(st, t) diff --git a/N-Queens.py b/N-Queens.py new file mode 100644 index 0000000..3b6180c --- /dev/null +++ b/N-Queens.py @@ -0,0 +1,49 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-17 04:35:29 PM +# Last modified : 2017-01-17 04:55:18 PM +# File Name : N-Queens.py +# Desc : +import copy +class Solution(object): + def isVaild(self, state, row, col): + for i in range(row): + if state[i] == col or abs(row - i) == abs(col - state[i]): + return False + return True + + + def helper(self, state, row, ans): + if row == self.n: + ret = [] + for l in ans: + ret.append(''.join(l)) + self.ret.append(ret) + return + + for col in range(n): + if self.isVaild(state,row,col): + state[row] = col + ans[row][col] = 'G' + self.helper(state, row + 1, ans) + ans[row][col] = '.' + state[row] = -1 + + + def solveNQueens(self, n): + self.ret = [] + self.n = n + state = [-1 for i in range(n)] + ans = [[] for i in range(n)] + for i in range(n): + for j in range(n): + ans[i].append('.') + self.helper(state, 0, ans) + return self.ret + +if __name__ == "__main__": + s = Solution() + n = 4 + print s.solveNQueens(n) From 62cc81edf5d376d6b205d7a457a014afa0fa40b0 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 17 Jan 2017 16:57:49 +0800 Subject: [PATCH 202/210] =?UTF-8?q?N=E7=9A=87=E5=90=8E=E7=9A=84=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- N-Queens.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/N-Queens.py b/N-Queens.py index 3b6180c..616d0fc 100644 --- a/N-Queens.py +++ b/N-Queens.py @@ -3,9 +3,13 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-17 04:35:29 PM -# Last modified : 2017-01-17 04:55:18 PM +# Last modified : 2017-01-17 04:57:46 PM # File Name : N-Queens.py # Desc : +""" +如果state[row] = col表示第row行的皇后放在第col列 +合法判断 row之前的行中没有放在col列的,对角判断 abs(row-row1) == abs(col - state[i])表示有对角冲突 +""" import copy class Solution(object): def isVaild(self, state, row, col): From 256dac14021bc791d029eb6580ee3e54dffcacae Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 17 Jan 2017 16:59:31 +0800 Subject: [PATCH 203/210] =?UTF-8?q?N=E7=9A=87=E5=90=8E=E7=9A=84=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- N-Queens.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/N-Queens.py b/N-Queens.py index 616d0fc..064fe34 100644 --- a/N-Queens.py +++ b/N-Queens.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-17 04:35:29 PM -# Last modified : 2017-01-17 04:57:46 PM +# Last modified : 2017-01-17 04:59:28 PM # File Name : N-Queens.py # Desc : """ @@ -27,10 +27,10 @@ def helper(self, state, row, ans): self.ret.append(ret) return - for col in range(n): + for col in range(self.n): if self.isVaild(state,row,col): state[row] = col - ans[row][col] = 'G' + ans[row][col] = 'Q' self.helper(state, row + 1, ans) ans[row][col] = '.' state[row] = -1 From 2b94b4d641ee090df61bc2dd415f648e89f467d5 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Tue, 17 Jan 2017 17:13:28 +0800 Subject: [PATCH 204/210] =?UTF-8?q?=E6=8C=89=E4=BD=8D=E5=8F=96=E5=8F=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Number_Complement.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Number_Complement.java diff --git a/Number_Complement.java b/Number_Complement.java new file mode 100644 index 0000000..9b4a421 --- /dev/null +++ b/Number_Complement.java @@ -0,0 +1,21 @@ +/* + 1、第一步的作用是把最高位1右移移位,并与原数据按位取或。那么这就使得最高位和它的下一位是连续两个1。 + 2、第二步的作用是把刚刚移位得到连续两个1继续右移两位并与原数据按位取或。那么这就使得最高两位和它的下两个连续位组成四个连续的1。 + 3、 以此类推,最终得到的i是从开始的最高位到结束全是1。并减去i不带符号的右移一位,即可得到一个int数据的最高位的值。 + 4、上述情况是针对于i不为零和负数的情况,如果i为零,那么得到的结果始终为零。如果i位负数,那么得到的结果始终是-2147483648。即等于Integer.MIN_VALUE。(原因在于负数的最高位始终为1,即是负数的符号位) + publicstaticinthighestOneBit(int i) { + // HD, Figure 3-1 + i |= (i >> 1); + i |= (i >> 2); + i |= (i >> 4); + i |= (i >> 8); + i |= (i >> 16); + return i - (i >>> 1); + } +*/ + +public class Solution { + public int findComplement(int num) { + return ~num & ((Integer.highestOneBit(num) << 1) - 1); + } +} From 14b5b7be63fc0d60bcd13c25ad76a33dc0a47ea7 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 27 Jan 2017 11:06:25 +0800 Subject: [PATCH 205/210] =?UTF-8?q?=E5=9B=9E=E6=96=87=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Palindrome_Pairs.py | 59 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 Palindrome_Pairs.py diff --git a/Palindrome_Pairs.py b/Palindrome_Pairs.py new file mode 100644 index 0000000..3a8211a --- /dev/null +++ b/Palindrome_Pairs.py @@ -0,0 +1,59 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-27 10:43:36 AM +# Last modified : 2017-01-27 11:06:08 AM +# File Name : Palindrome_Pairs.py +# Desc : + +class Trie: + def __init__(self, x): + self.val = x + self.child = [None for i in range(26)] + +class Solution(object): + def createTrie(self, words, root): + p = None + for i in range(len(words)): + word = words[i] + p = root + for w in word: + num = ord(w) - ord('a') + if p.child[num] == None: + p.child[num] = Trie('#') + p = p.child[num] + p.val = i + + + def palindromePairs(self, words): + root = Trie('#') + self.createTrie(words, root) + ret = [] + n = len(words) + for i in range(n): + p = root + word = words[i][::-1] + k = 0 + l = len(word) + for k in range(l): + #print k, '$' * 20 + num = ord(word[k]) - ord('a') + if p.child[num] != None: + p = p.child[num] + else: + break + #print word[k], p.val + try: + target = int(p.val) + if k == l-1: + ret.append([i, target]) + except Exception as e: + continue + return ret + + +if __name__ == "__main__": + s = Solution() + words = ["bat", "tab", "cat"] + print s.palindromePairs(words) From 8d0f077d51d38188c721c963ed084845af946bd8 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 27 Jan 2017 11:23:02 +0800 Subject: [PATCH 206/210] =?UTF-8?q?=E5=9B=9E=E6=96=87=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Palindrome_Pairs.py | 59 +++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 32 deletions(-) diff --git a/Palindrome_Pairs.py b/Palindrome_Pairs.py index 3a8211a..53f5230 100644 --- a/Palindrome_Pairs.py +++ b/Palindrome_Pairs.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-27 10:43:36 AM -# Last modified : 2017-01-27 11:06:08 AM +# Last modified : 2017-01-27 11:22:55 AM # File Name : Palindrome_Pairs.py # Desc : @@ -13,44 +13,39 @@ def __init__(self, x): self.child = [None for i in range(26)] class Solution(object): - def createTrie(self, words, root): - p = None - for i in range(len(words)): - word = words[i] - p = root - for w in word: - num = ord(w) - ord('a') - if p.child[num] == None: - p.child[num] = Trie('#') - p = p.child[num] - p.val = i + def isPalindrome(self, word): + i = 0 + j = len(word) - 1 + while i < j: + if word[i] != word[j]: + return False + i += 1 + j -= 1 + return True def palindromePairs(self, words): - root = Trie('#') - self.createTrie(words, root) ret = [] + if words == None or len(words) < 2: + return ret n = len(words) + dict_words = {} for i in range(n): - p = root - word = words[i][::-1] - k = 0 - l = len(word) - for k in range(l): - #print k, '$' * 20 - num = ord(word[k]) - ord('a') - if p.child[num] != None: - p = p.child[num] - else: - break - #print word[k], p.val - try: - target = int(p.val) - if k == l-1: - ret.append([i, target]) - except Exception as e: - continue + dict_words[words[i]] = i + for i in range(n): + for j in range(len(words[i])): + str1 = words[i][:j] + str2 = words[i][j:] + if self.isPalindrome(str1) == True: + str3 = str2[::-1] + if dict_words.has_key(str3) == True and dict_words[str3] != i: + ret.append([dict_words[str3],i]) + if self.isPalindrome(str2) == True: + str3 = str1[::-1] + if dict_words.has_key(str3) == True and dict_words[str3] != i: + ret.append([i, dict_words[str3]]) return ret + if __name__ == "__main__": From 90ffbecb9214df49fb3ac0f150ddb1e193884708 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Fri, 27 Jan 2017 13:28:21 +0800 Subject: [PATCH 207/210] =?UTF-8?q?=E5=9B=9E=E6=96=87=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Palindrome_Pairs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Palindrome_Pairs.py b/Palindrome_Pairs.py index 53f5230..3047b8e 100644 --- a/Palindrome_Pairs.py +++ b/Palindrome_Pairs.py @@ -3,7 +3,7 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-27 10:43:36 AM -# Last modified : 2017-01-27 11:22:55 AM +# Last modified : 2017-01-27 01:28:06 PM # File Name : Palindrome_Pairs.py # Desc : @@ -33,7 +33,7 @@ def palindromePairs(self, words): for i in range(n): dict_words[words[i]] = i for i in range(n): - for j in range(len(words[i])): + for j in range(len(words[i]) + 1): str1 = words[i][:j] str2 = words[i][j:] if self.isPalindrome(str1) == True: @@ -42,7 +42,7 @@ def palindromePairs(self, words): ret.append([dict_words[str3],i]) if self.isPalindrome(str2) == True: str3 = str1[::-1] - if dict_words.has_key(str3) == True and dict_words[str3] != i: + if dict_words.has_key(str3) == True and dict_words[str3] != i and len(str2) != 0: ret.append([i, dict_words[str3]]) return ret @@ -50,5 +50,5 @@ def palindromePairs(self, words): if __name__ == "__main__": s = Solution() - words = ["bat", "tab", "cat"] + words = ["a",""] print s.palindromePairs(words) From 4d409a05ab104a3b5f2c8dd5d243f63f1f980325 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 28 Jan 2017 12:09:53 +0800 Subject: [PATCH 208/210] =?UTF-8?q?=E5=AD=97=E7=AC=A6=E4=B8=B2=E7=9A=84?= =?UTF-8?q?=E5=BE=AA=E7=8E=AF=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Count_The_Repetitions.py | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Count_The_Repetitions.py diff --git a/Count_The_Repetitions.py b/Count_The_Repetitions.py new file mode 100644 index 0000000..c25c6dc --- /dev/null +++ b/Count_The_Repetitions.py @@ -0,0 +1,45 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-28 11:54:33 AM +# Last modified : 2017-01-28 12:09:29 PM +# File Name : Count_The_Repetitions.py +# Desc : + +class Solution(object): + def getMaxRepetitions(self, s1, n1, s2, n2): + l1 = len(s1) + l2 = len(s2) + j = 0 + repeat = 0 + firstRe = 0 + lastRe = 0 + repeatList = [0 for i in range(n1 + 1)] + s2Label = [0 for i in range(l2 + 1)] + i = 0 + while i <= n1: + i += 1 + for ch in s1: + if ch == s2[j]: + j += 1 + if j == l2: + repeat += 1 + j = 0 + repeatList[i] = repeat + if j == 0 or s2Label[j] != 0: + break + s2Label[j] = i + if n1 == i: + return repeatList[n1] / n2 + n1 -= s2Label[j] + return (n1 / (i - s2Label[j]) * (repeatList[i] - repeatList[s2Label[j]]) + repeatList[n1 % (i - s2Label[j]) + s2Label[j]]) / n2 + + +if __name__ == "__main__": + s = Solution() + s1 = 'acb' + n1 = 4 + s2 = 'ab' + n2 = 2 + print s.getMaxRepetitions(s1, n1, s2, n2) From c957fd9c647b7af4c6273f710811441973f1a20c Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 28 Jan 2017 12:16:58 +0800 Subject: [PATCH 209/210] =?UTF-8?q?=E5=AD=97=E7=AC=A6=E4=B8=B2=E7=9A=84?= =?UTF-8?q?=E5=BE=AA=E7=8E=AF=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Count_The_Repetitions.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Count_The_Repetitions.py b/Count_The_Repetitions.py index c25c6dc..686403b 100644 --- a/Count_The_Repetitions.py +++ b/Count_The_Repetitions.py @@ -3,12 +3,16 @@ # Author : TangHanYi # E-mail : thydeyx@163.com # Create Date : 2017-01-28 11:54:33 AM -# Last modified : 2017-01-28 12:09:29 PM +# Last modified : 2017-01-28 12:16:53 PM # File Name : Count_The_Repetitions.py # Desc : class Solution(object): def getMaxRepetitions(self, s1, n1, s2, n2): + if n1 == 0 or n2 == 0: + return 0 + if s1 == '' or s2 == '': + return 0 l1 = len(s1) l2 = len(s2) j = 0 From 03296dfa37910ef13b0726bde5e757b52f1590d7 Mon Sep 17 00:00:00 2001 From: thydeyx <553865290@qq.com> Date: Sat, 28 Jan 2017 21:19:17 +0800 Subject: [PATCH 210/210] =?UTF-8?q?=E7=A9=BF=E6=8F=92=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Interleaving_String.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Interleaving_String.py diff --git a/Interleaving_String.py b/Interleaving_String.py new file mode 100644 index 0000000..06ec81a --- /dev/null +++ b/Interleaving_String.py @@ -0,0 +1,36 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-28 09:00:00 PM +# Last modified : 2017-01-28 09:18:42 PM +# File Name : Interleaving_String.py +# Desc : + +class Solution(object): + def isInterleave(self, s1, s2, s3): + l1 = len(s1) + l2 = len(s2) + l3 = len(s3) + if l3 != l1 + l2: + return False + dp = [[0 for j in range(l2 + 1)] for i in range(l1 + 1)] + for i in range(l1 + 1): + for j in range(l2 + 1): + if i == 0 and j == 0: + dp[i][j] = True + elif i == 0: + dp[i][j] = (dp[i][j - 1] and s2[j - 1] == s3[i + j - 1]) + elif j == 0: + dp[i][j] = (dp[i - 1][j] and s1[i - 1] == s3[i + j - 1]) + else: + dp[i][j] = ((dp[i - 1][j] and s1[i - 1] == s3[i + j - 1]) or (dp[i][j - 1] and s2[j - 1] == s3[i + j - 1])) + return dp[l1][l2] + + +if __name__ == "__main__": + s = Solution() + s1 = 'aabcc' + s2 = 'dbbca' + s3 = 'aadbbcbcac' + print s.isInterleave(s1, s2, s3)