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/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) + 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/Arithmetic_Slices.py b/Arithmetic_Slices.py new file mode 100644 index 0000000..93cb3fc --- /dev/null +++ b/Arithmetic_Slices.py @@ -0,0 +1,40 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-23 09:18:03 PM +# Last modified : 2016-11-24 12:00:13 AM +# 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 + n = len(A) + if n < 3: + return 0 + 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: + cha = A[i] - A[i - 1] + addend = 0 + + return ret + + +if __name__ == "__main__": + s = Solution() + A = [1, 2, 3, 4] + print s.numberOfArithmeticSlices(A) + diff --git a/Arithmetic_Slices_II.py b/Arithmetic_Slices_II.py new file mode 100644 index 0000000..aecae33 --- /dev/null +++ b/Arithmetic_Slices_II.py @@ -0,0 +1,32 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-14 02:41:51 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 + 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) 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) diff --git a/Assign_Cookies.py b/Assign_Cookies.py new file mode 100644 index 0000000..54dbd7f --- /dev/null +++ b/Assign_Cookies.py @@ -0,0 +1,32 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-17 01:48:52 PM +# Last modified : 2016-11-17 02:30:51 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(l): + if j >= n: + break + + if s[j] >= g[i]: + j += 1 + ret += 1 + + return ret + + +if __name__ == "__main__": + s = Solution() + g = [1, 2, 3] + s1 = [1, 1] + print s.findContentChildren(g, s1) 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) diff --git a/Binary_Tree_Zigzag_Level_Order_Traversal.py b/Binary_Tree_Zigzag_Level_Order_Traversal.py new file mode 100644 index 0000000..8e5e06d --- /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:43:58 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() + 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: + tmp.reverse() + ret.append(tmp[:]) + k += 1 + return ret + + +if __name__ == "__main__": + s = Solution() + root = TreeNode(1) + print s.zigzagLevelOrder(root) diff --git a/Bitwise_AND_of_Numbers_Range.py b/Bitwise_AND_of_Numbers_Range.py new file mode 100644 index 0000000..7765b44 --- /dev/null +++ b/Bitwise_AND_of_Numbers_Range.py @@ -0,0 +1,22 @@ +# -*- coding:utf-8 -*- +""" +如果n的二进制位长度长于m,则对于n所有位置而言,从n到m的数将形成n的位置中的每一种情况,必然有一种情况是n相反的数 +如果n,m的二进制位数一样长,则对于二者公共前缀保留,剩下的必然相反 +""" +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) diff --git a/Combination_Sum_IV.py b/Combination_Sum_IV.py new file mode 100644 index 0000000..f489101 --- /dev/null +++ b/Combination_Sum_IV.py @@ -0,0 +1,26 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-26 11:34:16 PM +# Last modified : 2016-11-27 12:23:50 AM +# File Name : Combination_Sum_IV.py +# Desc : +class Solution(object): + def combinationSum4(self, nums, target): + 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__": + s = Solution() + nums = [1, 2, 3] + target = 4 + print s.combinationSum4(nums, target) 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..3b42a13 --- /dev/null +++ b/Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.py @@ -0,0 +1,87 @@ +# -*- 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 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 [] + + stack = [] + top = -1 + root = TreeNode(inorder) + 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__": + s = Solution() + preorder = list("ABDEFC") + inorder = list("DBEFAC") + preorder = [1, 2, 3] + inorder = [2, 1, 3] + print s.buildTree(preorder, inorder) + 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) + 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/Convert_a_Number_to_Hexadecimal.py b/Convert_a_Number_to_Hexadecimal.py new file mode 100644 index 0000000..0e9e8d8 --- /dev/null +++ b/Convert_a_Number_to_Hexadecimal.py @@ -0,0 +1,42 @@ +# -*- 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: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'} + 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) diff --git a/Count_The_Repetitions.py b/Count_The_Repetitions.py new file mode 100644 index 0000000..686403b --- /dev/null +++ b/Count_The_Repetitions.py @@ -0,0 +1,49 @@ +# -*- 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: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 + 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) 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) diff --git a/Distinct_Subsequences.py b/Distinct_Subsequences.py new file mode 100644 index 0000000..0e02cd4 --- /dev/null +++ b/Distinct_Subsequences.py @@ -0,0 +1,52 @@ +# -*- 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:12:39 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] + + 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 = 'zxbabcdjf' + t = 'abc' + print s.numDistinct(st, t) 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]; + } +} diff --git a/Elimination_Game.py b/Elimination_Game.py new file mode 100644 index 0000000..83443e8 --- /dev/null +++ b/Elimination_Game.py @@ -0,0 +1,59 @@ +# -*- 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 + 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/Evaluate_Reverse_Polish_Notation.py b/Evaluate_Reverse_Polish_Notation.py new file mode 100644 index 0000000..a35645e --- /dev/null +++ b/Evaluate_Reverse_Polish_Notation.py @@ -0,0 +1,53 @@ +# -*- 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:25:58 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(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] + + +if __name__ == "__main__": + s = Solution() + #tokens = ["2", "1", "+", "3", "*"] + tokens = ["10","6","9","3","+","-11","*","/","*","17","+","5","+"] + print s.evalRPN(tokens) diff --git a/Find_All_Duplicates_in_an_Array.py b/Find_All_Duplicates_in_an_Array.py new file mode 100644 index 0000000..eea15d8 --- /dev/null +++ b/Find_All_Duplicates_in_an_Array.py @@ -0,0 +1,27 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-11 01:35:06 PM +# Last modified : 2016-11-11 02:03:22 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): + index = abs(nums[i]) - 1 + if nums[index] < 0: + ret.append(index + 1) + + nums[index] = - nums[index] + + return ret + + +if __name__ == "__main__": + s = Solution() + nums = [4,3,2,7,8,2,3,1] + print s.findDuplicates(nums) 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..b9dfb40 --- /dev/null +++ b/Find_All_Numbers_Disappeared_in_an_Array.py @@ -0,0 +1,33 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-11 01:11:23 PM +# Last modified : 2016-11-11 02:01:07 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) 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) + 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/First_Missing_Positive.py b/First_Missing_Positive.py new file mode 100644 index 0000000..bc24971 --- /dev/null +++ b/First_Missing_Positive.py @@ -0,0 +1,35 @@ +# -*- 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 : +""" +因为这个数不会超过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: + 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 + + return n + 1 + + +if __name__ == "__main__": + s = Solution() + nums = [3,4,-1,1] + print s.firstMissingPositive(nums) 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) 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/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) 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 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); + } +} diff --git a/House_Robber_II.py b/House_Robber_II.py new file mode 100644 index 0000000..e25f1eb --- /dev/null +++ b/House_Robber_II.py @@ -0,0 +1,35 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-07 10:58:56 PM +# Last modified : 2016-12-09 10:21:27 PM +# File Name : House_Robber_II.py +# Desc : +class Solution(object): + 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): + 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/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/Insert_Delete_GetRandom_O1_2.py b/Insert_Delete_GetRandom_O1_2.py new file mode 100644 index 0000000..38dc139 --- /dev/null +++ b/Insert_Delete_GetRandom_O1_2.py @@ -0,0 +1,91 @@ +# -*- 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): + position, num = self.hashtable.get(val, ([], -1)) + if num == -1: + self.queue.append(val) + 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 + + + def remove(self, val): + if self.hashtable.has_key(val) == True: + position, num = self.hashtable.get(val, ([], -1)) + if position[-1] == self.n - 1: + if num == 1: + self.n -= 1 + del self.hashtable[val] + self.queue.pop() + return True + else: + num -= 1 + self.n -= 1 + self.queue.pop() + 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)) + 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 + 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(); + diff --git a/Insertion_Sort_List.py b/Insertion_Sort_List.py new file mode 100644 index 0000000..4e9dc66 --- /dev/null +++ b/Insertion_Sort_List.py @@ -0,0 +1,70 @@ +# -*- 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:40:43 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): + if head == None: + return head + ret = ListNode(head.val) + while head.next != None: + head = head.next + tmp = ret + pre = ret + inode = ListNode(head.val) + 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.next = tmp + ret = inode + continue + + if tmp == None: + pre.next = inode + continue + + 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 + 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) diff --git a/Is_Subsequence.py b/Is_Subsequence.py new file mode 100644 index 0000000..4b219a8 --- /dev/null +++ b/Is_Subsequence.py @@ -0,0 +1,59 @@ +# -*- 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:59:09 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) + if sn == 0: + return True + + 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) 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) diff --git a/Jump_Game.py b/Jump_Game.py new file mode 100644 index 0000000..97277cf --- /dev/null +++ b/Jump_Game.py @@ -0,0 +1,24 @@ +# -*- 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) + i = 0 + reach = 0 + while i <= reach and i < n: + reach = max(i + nums[i], reach) + i += 1 + return i == n + + + +if __name__ == "__main__": + s = Solution() + nums = [2,3,1,1,4] + nums = [3,2,1,0,4] + print s.canJump(nums) diff --git a/Jump_Game_II.py b/Jump_Game_II.py new file mode 100644 index 0000000..1e07757 --- /dev/null +++ b/Jump_Game_II.py @@ -0,0 +1,30 @@ +# -*- 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 : +""" +设置两个边界,如果i遍历超过了当前的边界,则步数需要增加,下个边界通过当前边界内能到达的点去扩充,这样最后求出的就是最小步数 +""" +class Solution(object): + def jump(self, nums): + n = len(nums) + currentBoundry = 0 + nextBoundry = 0 + step = 0 + for i in range(n): + if i > currentBoundry: + currentBoundry = nextBoundry + step += 1 + if i + nums[i] > nextBoundry: + nextBoundry = i + nums[i] + + return step + + +if __name__ == "__main__": + s = Solution() + nums = [2,3,1,1,4] + print s.jump(nums) diff --git a/K-th_Smallest_in_Lexicographical_Order.py b/K-th_Smallest_in_Lexicographical_Order.py new file mode 100644 index 0000000..c15b8d8 --- /dev/null +++ b/K-th_Smallest_in_Lexicographical_Order.py @@ -0,0 +1,37 @@ +# -*- coding:utf-8 -*- + +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 + 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/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/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) diff --git a/Lexicographical_Numbers.py b/Lexicographical_Numbers.py new file mode 100644 index 0000000..25b54b5 --- /dev/null +++ b/Lexicographical_Numbers.py @@ -0,0 +1,43 @@ +# -*- 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:50:29 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): + if cur * 10 + i > self.n: + return + 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 = 14959 + print s.lexicalOrder(n) diff --git a/Linked_List_Random_Node.py b/Linked_List_Random_Node.py new file mode 100644 index 0000000..6c6ca31 --- /dev/null +++ b/Linked_List_Random_Node.py @@ -0,0 +1,50 @@ +# -*- 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: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 + 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() 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/Longest_Repeating_Character_Replacement.py b/Longest_Repeating_Character_Replacement.py new file mode 100644 index 0000000..590faad --- /dev/null +++ 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) 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; + } +}; diff --git a/Majority_Element_II.py b/Majority_Element_II.py new file mode 100644 index 0000000..92ea104 --- /dev/null +++ b/Majority_Element_II.py @@ -0,0 +1,65 @@ +# -*- 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 + 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[0] + count0, count1 = 0, 0 + for i in range(n): + 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 + 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] + nums = [8,8,7,7,7] + print s.majorityElement(nums) diff --git a/Max_Points_on_a_Line.py b/Max_Points_on_a_Line.py new file mode 100644 index 0000000..bee6fc5 --- /dev/null +++ b/Max_Points_on_a_Line.py @@ -0,0 +1,67 @@ +# -*- coding:utf-8 -*- + +import sys + +""" +主要分为两种情况,排列在x垂直的直线上,斜率相同时 +""" +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: + c = 0 + 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 + 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 now_x + 1 > ret: + ret = now_x + 1 + + return ret + + +if __name__ == "__main__": + s = Solution() + point1 = Point(1, 1) + point2 = Point(1, 1) + point3 = Point(2, 2) + point4 = Point(2, 2) + points = [point1, point2, point3, point4] + #points = [point2] + print s.maxPoints(points) 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 y.start: + return 1 + else: + if x.end < y.end: + return -1 + elif x.end > y.end: + 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) + ret = [] + if n == 0: + return ret + pre = intervals[0] + for i in range(1, n): + if intervals[i].start <= pre.end: + pre.end = max(pre.end, intervals[i].end) + 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]] + tmp = [] + for i in intervals: + a = Interval(i[0], i[1]) + tmp.append(a) + intervals = tmp + r = s.merge(intervals) + for i in r: + print i.start, i.end 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< +#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..7d14a8f --- /dev/null +++ b/Microsoft_two.cpp @@ -0,0 +1,153 @@ +#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; + +} 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/Minimum_Size_Subarray_Sum.py b/Minimum_Size_Subarray_Sum.py new file mode 100644 index 0000000..58b769f --- /dev/null +++ b/Minimum_Size_Subarray_Sum.py @@ -0,0 +1,33 @@ +# -*- 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 : +""" +利用前N个数的和 +""" +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) diff --git a/N-Queens.py b/N-Queens.py new file mode 100644 index 0000000..064fe34 --- /dev/null +++ b/N-Queens.py @@ -0,0 +1,53 @@ +# -*- 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:59:28 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): + 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(self.n): + if self.isVaild(state,row,col): + state[row] = col + ans[row][col] = 'Q' + 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) 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) 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) 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); + } +} 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) diff --git a/Pacific_Atlantic_Water_Flow.py b/Pacific_Atlantic_Water_Flow.py new file mode 100644 index 0000000..b593504 --- /dev/null +++ b/Pacific_Atlantic_Water_Flow.py @@ -0,0 +1,77 @@ +# -*- 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:53:08 PM +# File Name : Pacific_Atlantic_Water_Flow.py +# Desc : +import Queue +class Solution(object): + + def findPath(self, q, ret, matrix, n, m): + + #q = Queue.Queue() + 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 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)) + + + def pacificAtlantic(self, matrix): + + ret = [] + + n = len(matrix) + if n == 0: + return ret + m = len(matrix[0]) + if m == 0: + 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): + 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)) + 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, 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 = [[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) diff --git a/Palindrome_Pairs.py b/Palindrome_Pairs.py new file mode 100644 index 0000000..3047b8e --- /dev/null +++ b/Palindrome_Pairs.py @@ -0,0 +1,54 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-27 10:43:36 AM +# Last modified : 2017-01-27 01:28:06 PM +# 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 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): + ret = [] + if words == None or len(words) < 2: + return ret + n = len(words) + dict_words = {} + for i in range(n): + dict_words[words[i]] = i + for i in range(n): + for j in range(len(words[i]) + 1): + 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 and len(str2) != 0: + ret.append([i, dict_words[str3]]) + return ret + + + +if __name__ == "__main__": + s = Solution() + words = ["a",""] + print s.palindromePairs(words) diff --git a/Partition_Equal_Subset_Sum.py b/Partition_Equal_Subset_Sum.py new file mode 100644 index 0000000..b97c206 --- /dev/null +++ b/Partition_Equal_Subset_Sum.py @@ -0,0 +1,29 @@ +# -*- 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:41:35 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(): + if key + i <= (s >> 1): + to_dict[key + i] = 0 + if key + i == (s >> 1): + return True + return False + + +if __name__ == "__main__": + s = Solution() + nums = [1, 5, 11, 5] + nums = [1, 2, 3, 5] + print s.canPartition(nums) 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) diff --git a/Queue_Reconstruction_by_Height.py b/Queue_Reconstruction_by_Height.py new file mode 100644 index 0000000..0bd0779 --- /dev/null +++ b/Queue_Reconstruction_by_Height.py @@ -0,0 +1,56 @@ +# -*- 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: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): + 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 = [] + if n == 0: + return 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) 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/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) 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) 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) 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) diff --git a/Search_for_a_Range.py b/Search_for_a_Range.py new file mode 100644 index 0000000..7863240 --- /dev/null +++ b/Search_for_a_Range.py @@ -0,0 +1,52 @@ +# -*- 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 + if l < n and nums[l + 1] == target: + retL = l + 1 + else: + retL = l + + if nums[retR] != target: + return [-1, -1] + return [retR, retL] + + +if __name__ == "__main__": + s = Solution() + nums = [2, 2] + target = 2 + print s.searchRange(nums, target) + 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/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() 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/Subsets_II.py b/Subsets_II.py new file mode 100644 index 0000000..2a7874e --- /dev/null +++ b/Subsets_II.py @@ -0,0 +1,43 @@ +# -*- coding:utf-8 -*- +""" +注意判重方法 通过排序然后跳过重复元素 加快效率 +""" +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] + print s.subsetsWithDup(nums) 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) 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/Super_Pow.py b/Super_Pow.py new file mode 100644 index 0000000..790ca31 --- /dev/null +++ b/Super_Pow.py @@ -0,0 +1,38 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-12-11 09:33:17 AM +# Last modified : 2016-12-11 10:48:50 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) + 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(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 + + +if __name__ == "__main__": + s = Solution() + 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) 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() diff --git a/Surrounded_Regions.py b/Surrounded_Regions.py new file mode 100644 index 0000000..b62b127 --- /dev/null +++ b/Surrounded_Regions.py @@ -0,0 +1,67 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2016-11-17 09:03:13 PM +# Last modified : 2016-11-17 10:21:42 PM +# File Name : Surrounded_Regions.py +# Desc : + +import Queue +class Solution(object): + def solve(self, board): + n = len(board) + if n == 0: + return + 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() + 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: + ret[y][x] = 'X' + """ + tmp = list(board[y]) + tmp[x] = 'X' + board[y] = ''.join(tmp) + """ + for i in range(n): + board[i] = ''.join(ret[i]) + + return + + +if __name__ == "__main__": + s = Solution() + board = ["XXXX","XOOX","XXOX","XOXX"] + s.solve(board) + print board diff --git a/Text_Justification.py b/Text_Justification.py new file mode 100644 index 0000000..edb0829 --- /dev/null +++ b/Text_Justification.py @@ -0,0 +1,66 @@ +# -*- 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 = "" + 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) + 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 = "" + 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 - q) + 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) diff --git a/Triangle.py b/Triangle.py new file mode 100644 index 0000000..b758dbf --- /dev/null +++ b/Triangle.py @@ -0,0 +1,30 @@ +# -*- 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) 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..4032ab8 --- /dev/null +++ b/Two_Sum_II_Input_array_is_sorted.py @@ -0,0 +1,29 @@ +# -*- 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 : +""" +查找l,r时可通过二分查找改进效率 +""" + +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+1, r+1] + + +if __name__ == "__main__": + s = Solution() + numbers = [2,7,11,15] + target = 9 + print s.twoSum(numbers, target) diff --git a/Unique_Paths_II.py b/Unique_Paths_II.py new file mode 100644 index 0000000..27fd94b --- /dev/null +++ b/Unique_Paths_II.py @@ -0,0 +1,42 @@ +# -*- 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) + 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 + if obstacleGri[0][0] != 1: + 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) 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..2ecbdd1 --- /dev/null +++ b/Verify_Preorder_Serialization_of_a_Binary_Tree.py @@ -0,0 +1,82 @@ +#! -*- 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/Water_and_Jug_Problem.py b/Water_and_Jug_Problem.py new file mode 100644 index 0000000..6d66c41 --- /dev/null +++ b/Water_and_Jug_Problem.py @@ -0,0 +1,138 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 2017-01-04 10:09:40 PM +# Last modified : 2017-01-04 11:27:04 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 + """ + if x + y == z: + return True + q = Queue.Queue() + 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() + + 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)) + 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 + + 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)) + 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 + + 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)) + 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 + + 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)) + 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 + + x1, y1 = x2, y2 + + if x1 != x: + tmp = y1 - (x - x1) + if tmp >= 0: + 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)) + 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 + 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)) + 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 + + x1, y1 = x2, y2 + if y1 != y: + tmp = x1 - (y - y1) + if tmp >= 0: + 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)) + 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 + 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)) + 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 + + return False + + +if __name__ == "__main__": + 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] diff --git a/Wiggle_Subsequence.py b/Wiggle_Subsequence.py new file mode 100644 index 0000000..ec1e461 --- /dev/null +++ b/Wiggle_Subsequence.py @@ -0,0 +1,26 @@ +# -*- coding:utf-8 -*- + +class Solution(object): + def wiggleMaxLength(self, nums): + """ + :type nums: List[int] + :rtype: int + """ + n = len(nums) + ret = 0 + 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[i] - nums[j] < 0: + dp[i][1] = max(dp[j][0] + 1, dp[i][1]) + + 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) diff --git a/Word_Ladder.py b/Word_Ladder.py new file mode 100644 index 0000000..33026d3 --- /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:50:42 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) + 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) + dif = 0 + for k in range(m): + if beginWord[k] != word[k]: + dif += 1 + if dif > 1: + break + 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 == 0: + graph[word].append('end$') + q = Queue.Queue() + q.put(('begin$',0)) + visit = {} + while q.empty() == False: + now, k = q.get() + if now == 'end$': + 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 = 'hot' + end = 'dog' + wordList = set(["hot","dog","dot"]) + print s.ladderLength(begin,end,wordList) 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) diff --git a/Word_Ladder_II.py b/Word_Ladder_II.py new file mode 100644 index 0000000..6bf4639 --- /dev/null +++ b/Word_Ladder_II.py @@ -0,0 +1,99 @@ +# -*- coding:utf-8 -*- + +import sys +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.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: + n = len(wordlist) + 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)) + 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: + 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/Word_Search.py b/Word_Search.py new file mode 100644 index 0000000..0b5759f --- /dev/null +++ b/Word_Search.py @@ -0,0 +1,54 @@ +# -*- coding:utf-8 -*- +# +# Author : TangHanYi +# E-mail : thydeyx@163.com +# Create Date : 16-10-28 16:06:01 +# File Name : Word_Search.py +# Desc : + +class Solution(object): + + def dfs(self, board, x, y, word, i): + + 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)) + 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 + + + def exist(self, board, word): + self.w_l = len(word) + 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(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) 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 diff --git a/new.txt b/new.txt new file mode 100644 index 0000000..864f408 --- /dev/null +++ b/new.txt @@ -0,0 +1,38 @@ +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]) + + + 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 + """ + ret = 0 + while i > 0: + ret += self.bit[i] + i = i - (i & (-i)) + return ret \ No newline at end of file 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 new file mode 100644 index 0000000..26fcd28 --- /dev/null +++ b/send_mail.py @@ -0,0 +1,29 @@ +#!/usr/bin/python +# -*- coding: UTF-8 -*- + +import smtplib +from email.mime.text import MIMEText +from email.header import Header + +sender = 'thydeyx@163.com' +receivers = '553865290@qq.com' # 接收邮件,可设置为你的QQ邮箱或者其他邮箱 +mail_host="smtp.163.com" + +# 三个参数:第一个为文本内容,第二个 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() + smtpObj.connect(mail_host) + smtpObj.login('thydeyx@163.com', 'thy1123581321') + smtpObj.sendmail(sender, receivers, message.as_string()) + print "邮件发送成功" +except smtplib.SMTPException as e: + print e + print "Error: 无法发送邮件" 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 0000000..c703b90 Binary files /dev/null and b/soufang/soufang/__init__.pyc differ 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 0000000..1feb98f Binary files /dev/null and b/soufang/soufang/items.pyc differ 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 0000000..cf39aa8 Binary files /dev/null and b/soufang/soufang/settings.pyc differ diff --git a/soufang/soufang/spiders/__init__.py b/soufang/soufang/spiders/__init__.py new file mode 100644 index 0000000..ebd689a --- /dev/null +++ b/soufang/soufang/spiders/__init__.py @@ -0,0 +1,4 @@ +# This package will contain the spiders of your Scrapy project +# +# Please refer to the documentation for information on how to create and manage +# your spiders. diff --git a/soufang/soufang/spiders/__init__.pyc b/soufang/soufang/spiders/__init__.pyc new file mode 100644 index 0000000..dce7771 Binary files /dev/null and b/soufang/soufang/spiders/__init__.pyc differ 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 0000000..bbb5e83 Binary files /dev/null and b/soufang/soufang/spiders/soufang_spider.pyc differ diff --git a/soufang/test.json b/soufang/test.json new file mode 100644 index 0000000..e69de29 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) diff --git a/submit.sh b/submit.sh new file mode 100755 index 0000000..699af99 --- /dev/null +++ b/submit.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +path=`pwd` +log=$1 + +git add --ignore-removal $path +git commit -m $log +git push diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..b3f09c0 --- /dev/null +++ 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