前 K 个高频元素

黎 浩然/ 17 12 月, 2021/ 算法/ALGORITHMS/ 177 comments

本题主要使用 Go 的 heap.Interface 接口来实现一个小顶堆来并解答 TopK 问题,问题链接:

347. 前 K 个高频元素 – 力扣(LeetCode) (leetcode-cn.com)

包 heap 为所有实现了 heap.Interface 的类型提供堆操作

因此要实现 heap.Interface 接口,需要实现上面 5 个方法

—- 我是分割线 —-

一个堆即是一棵树, 这棵树的每个节点的值都比它的子节点的值要小( 小顶堆 ), 而整棵树最小的值位于树根(root), 也即是索引 0 的位置上。

堆是实现优先队列的一种常见方法。 为了构建优先队列, 用户在实现堆接口时, 需要让 Less() 方法返回逆序的结果, 这样就可以在使用 Push 添加元素的同时, 通过 Pop 移除队列中优先级最高的元素了。 具体的实现请看接下来展示的优先队列例子。

package stackqueue

import (
	"container/heap"
)

// Item 是优先队列中包含的元素。
type Item struct {
	value    int // 元素的值,可以是任意字符串。
	priority int    // 元素在队列中的优先级。
	// 元素的索引可以用于更新操作,它由 heap.Interface 定义的方法维护。
	index int // 元素在堆中的索引。
}

// PriorityQueue 一个实现了 heap.Interface 接口的优先队列,队列中包含任意多个 Item 结构的指针。
type PriorityQueue []*Item

func (pq PriorityQueue) Len() int { return len(pq) }

func (pq PriorityQueue) Less(i, j int) bool {
	// 我们希望 Pop 返回的是最小值而不是最大值,
	// 因此这里使用小于号进行对比。
	return pq[i].priority < pq[j].priority
}

func (pq PriorityQueue) Swap(i, j int) {
	pq[i], pq[j] = pq[j], pq[i]
	pq[i].index = i
	pq[j].index = j
}

func (pq *PriorityQueue) Push(x interface{}) {
	n := len(*pq)
	item := x.(*Item)
	item.index = n
	*pq = append(*pq, item)
}

func (pq *PriorityQueue) Pop() interface{} {
	old := *pq
	n := len(old)
	item := old[n-1]
	item.index = -1 // 为了安全性考虑而做的设置
	*pq = old[0 : n-1]
	return item
}

// 更新函数会修改队列中指定元素的优先级以及值。
func (pq *PriorityQueue) update(item *Item, value int, priority int) {
	item.value = value
	item.priority = priority
	heap.Fix(pq, item.index)
}


func topKFrequent(nums []int, k int) []int {
	frequency := make(map[int]int)
	for _, n := range nums {
		frequency[n]++
	}
	pq := make(PriorityQueue, 0)
	heap.Init(&pq)
	for key, val := range frequency {
		heap.Push(&pq, &Item{value: key, priority: val})
		if pq.Len() > k {
			heap.Pop(&pq)
		}
	}
	res := make([]int, 0)
	for pq.Len() > 0 {
		res = append(res, heap.Pop(&pq).(*Item).value)
	}
	return res
}

Go 中实现接口时,Receiver 可以是类型本身(虽说slice本身类似指针),也可以是类型的指针

下面这种写法亦可(update 不是 heap.Interface 需要实现):

package stackqueue

import (
	"container/heap"
)

// Item 是优先队列中包含的元素。
type Item struct {
	value    int // 元素的值,可以是任意字符串。
	priority int    // 元素在队列中的优先级。
	// 元素的索引可以用于更新操作,它由 heap.Interface 定义的方法维护。
	index int // 元素在堆中的索引。
}

// PriorityQueue 一个实现了 heap.Interface 接口的优先队列,队列中包含任意多个 Item 结构。
type PriorityQueue []*Item

func (pq *PriorityQueue) Len() int { return len(*pq) }

func (pq *PriorityQueue) Less(i, j int) bool {
	// 我们希望 Pop 返回的是最小值而不是最大值,
	// 因此这里使用小于号进行对比。
	return (*pq)[i].priority < (*pq)[j].priority
}

func (pq *PriorityQueue) Swap(i, j int) {
	(*pq)[i], (*pq)[j] = (*pq)[j], (*pq)[i]
	(*pq)[i].index = i
	(*pq)[j].index = j
}

func (pq *PriorityQueue) Push(x interface{}) {
	n := len(*pq)
	item := x.(*Item)
	item.index = n
	*pq = append(*pq, item)
}

func (pq *PriorityQueue) Pop() interface{} {
	old := *pq
	n := len(old)
	item := old[n-1]
	item.index = -1 // 为了安全性考虑而做的设置
	*pq = old[0 : n-1]
	return item
}

func topKFrequent(nums []int, k int) []int {
	frequency := make(map[int]int)
	for _, n := range nums {
		frequency[n]++
	}
	pq := make(PriorityQueue, 0)
	heap.Init(&pq)
	for key, val := range frequency {
		heap.Push(&pq, &Item{value: key, priority: val})
		if pq.Len() > k {
			heap.Pop(&pq)
		}
	}
	res := make([]int, 0)
	for pq.Len() > 0 {
		res = append(res, heap.Pop(&pq).(*Item).value)
	}
	return res
}

Share this Post

177 Comments

  1. Howdy would you mind letting me know which web host you’re working with? I’ve loaded your blog in 3 completely different web browsers and I must say this blog loads a lot quicker then most. Can you suggest a good hosting provider at a honest price? Thanks, I appreciate it!

  2. At this time it looks like BlogEngine is the preferred blogging platform out there right now. (from what I’ve read) Is that what you’re using on your blog?

  3. At this time it seems like WordPress is the top blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?

  4. At this time it sounds like BlogEngine is the top blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?

  5. Excellent pieces. Keep posting such kind of info on your site. Im really impressed by your blog.

  6. Hi! Quick question that’s completely off topic. Do you know how to make your site mobile friendly? My blog looks weird when browsing from my iphone. I’m trying to find a theme or plugin that might be able to fix this issue. If you have any suggestions, please share. Thanks!

  7. Just wish to say your article is as astonishing. The clearness in your post is just excellent and i can assume you are an expert on this subject. Well with your permission let me to grab your feed to keep up to date with forthcoming post. Thanks a million and please carry on the rewarding work.

  8. Yesterday, while I was at work, my sister stole my apple ipad and tested to see if it can survive a 30 foot drop, just so she can be a youtube sensation. My apple ipad is now broken and she has 83 views. I know this is totally off topic but I had to share it with someone!

  9. Aw, this was a really good post. Spending some time and actual effort to produce a top notch article… but what can I say… I hesitate a lot and never manage to get anything done.

  10. Aw, this was a really good post. Taking a few minutes and actual effort to create a great article… but what can I say… I procrastinate a whole lot and don’t seem to get anything done.

  11. Wow that was unusual. I just wrote an very long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Regardless, just wanted to say great blog!

  12. Aw, this was an exceptionally nice post. Spending some time and actual effort to create a superb article… but what can I say… I hesitate a lot and don’t seem to get nearly anything done.

  13. Hi there, You have done a fantastic job. I will definitely digg it and in my view suggest to my friends. I’m confident they will be benefited from this website.

  14. Wow that was unusual. I just wrote an incredibly long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say superb blog!

  15. Aw, this was an incredibly nice post. Finding the time and actual effort to create a really good article… but what can I say… I procrastinate a whole lot and don’t manage to get nearly anything done.

  16. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  17. May I simply say what a comfort to discover a person that genuinely knows what they are talking about online. You certainly realize how to bring a problem to light and make it important. A lot more people should read this and understand this side of your story. It’s surprising you are not more popular given that you definitely have the gift.

  18. Can I simply just say what a relief to uncover an individual who really understands what they’re discussing over the internet. You certainly know how to bring an issue to light and make it important. More people need to read this and understand this side of your story. It’s surprising you’re not more popular because you most certainly have the gift.

  19. Greate pieces. Keep writing such kind of information on your blog. Im really impressed by it.

  20. Currently it sounds like BlogEngine is the top blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?

  21. Currently it seems like Expression Engine is the preferred blogging platform available right now. (from what I’ve read) Is that what you’re using on your blog?

  22. Right now it appears like BlogEngine is the best blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?

  23. Greate post. Keep writing such kind of info on your site. Im really impressed by your blog.

  24. Hey there, You have done an incredible job. I’ll definitely digg it and personally suggest to my friends. I’m sure they will be benefited from this site.

  25. Can I just say what a relief to uncover someone that truly knows what they’re discussing on the web. You definitely realize how to bring an issue to light and make it important. More and more people ought to read this and understand this side of the story. I was surprised you are not more popular since you surely possess the gift.

  26. May I simply just say what a relief to find someone that really understands what they are talking about over the internet. You certainly realize how to bring an issue to light and make it important. A lot more people ought to read this and understand this side of your story. I can’t believe you are not more popular because you certainly possess the gift.

  27. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  28. Hey there, You’ve done an excellent job. I will definitely digg it and individually recommend to my friends. I’m sure they’ll be benefited from this web site.

  29. Hi there, You have done an incredible job. I will certainly digg it and in my view recommend to my friends. I’m sure they will be benefited from this web site.

  30. If you want to improve your know-how just keep visiting this web site and be updated with the hottest news update posted here.

  31. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  32. Wow that was unusual. I just wrote an incredibly long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say excellent blog!

  33. If you desire to grow your experience just keep visiting this website and be updated with the most up-to-date news posted here.

  34. Hey there, You’ve performed a fantastic job. I will definitely digg it and in my opinion recommend to my friends. I’m sure they’ll be benefited from this web site.

  35. Wow that was odd. I just wrote an very long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say superb blog!

  36. Can I simply say what a comfort to uncover someone who truly knows what they’re talking about on the internet. You actually know how to bring an issue to light and make it important. More people ought to check this out and understand this side of the story. I was surprised you aren’t more popular given that you surely have the gift.

  37. Excellent post. Keep writing such kind of info on your page. Im really impressed by your site.

  38. Can I simply just say what a relief to uncover somebody that really understands what they’re discussing online. You definitely realize how to bring an issue to light and make it important. More and more people ought to look at this and understand this side of the story. I can’t believe you’re not more popular because you most certainly possess the gift.

  39. Aw, this was an extremely nice post. Taking a few minutes and actual effort to create a top notch article… but what can I say… I procrastinate a whole lot and never seem to get anything done.

  40. I believe that is among the such a lot vital info for me. And i’m glad studying your article. However wanna remark on some common issues, The website taste is perfect, the articles is truly nice : D. Excellent process, cheers

  41. Aw, this was an extremely good post. Taking a few minutes and actual effort to create a superb article… but what can I say… I hesitate a lot and don’t seem to get anything done.

  42. Right now it seems like Drupal is the top blogging platform out there right now. (from what I’ve read) Is that what you’re using on your blog?

  43. I do not know whether it’s just me or if everyone else experiencing problems with your website. It seems like some of the text on your posts are running off the screen. Can someone else please comment and let me know if this is happening to them as well? This might be a problem with my internet browser because I’ve had this happen before. Thank you

  44. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  45. Aw, this was an incredibly good post. Taking the time and actual effort to create a very good article… but what can I say… I hesitate a lot and never seem to get nearly anything done.

  46. Can I simply say what a relief to uncover someone who really knows what they are talking about on the net. You actually realize how to bring a problem to light and make it important. More people really need to read this and understand this side of the story. I can’t believe you aren’t more popular because you definitely possess the gift.

  47. Hello, just wanted to mention, I enjoyed this blog post. It was practical. Keep on posting!

  48. Excellent article. Keep posting such kind of info on your site. Im really impressed by your site.

  49. Aw, this was a really good post. Spending some time and actual effort to generate a superb article… but what can I say… I procrastinate a lot and never manage to get nearly anything done.

  50. Greate article. Keep posting such kind of information on your page. Im really impressed by your blog.

  51. At this time it appears like Drupal is the top blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?

  52. It’s an awesome piece of writing designed for all the internet people; they will obtain advantage from it I am sure.

  53. Hi there, You have performed an excellent job. I will certainly digg it and individually suggest to my friends. I am confident they will be benefited from this website.

  54. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  55. Hello there, You’ve done a fantastic job. I’ll certainly digg it and in my opinion suggest to my friends. I am confident they will be benefited from this web site.

  56. After checking out a few of the articles on your web page, I really appreciate your technique of writing a blog. I bookmarked it to my bookmark webpage list and will be checking back in the near future. Please check out my web site as well and let me know your opinion.

  57. Aw, this was an incredibly nice post. Finding the time and actual effort to produce a great article… but what can I say… I procrastinate a whole lot and never seem to get nearly anything done.

  58. Can I simply say what a comfort to uncover somebody that truly knows what they are talking about online. You certainly realize how to bring an issue to light and make it important. More people have to check this out and understand this side of your story. I was surprised you are not more popular given that you most certainly have the gift.

  59. Hello! I know this is sort of off-topic but I had to ask. Does managing a well-established website like yours require a large amount of work? I’m completely new to operating a blog however I do write in my journal on a daily basis. I’d like to start a blog so I can easily share my experience and views online. Please let me know if you have any kind of ideas or tips for new aspiring bloggers. Thankyou!

  60. I’m gone to convey my little brother, that he should also pay a visit this website on regular basis to obtain updated from most recent information.

  61. Currently it seems like WordPress is the best blogging platform out there right now. (from what I’ve read) Is that what you’re using on your blog?

  62. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  63. Wow that was odd. I just wrote an incredibly long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Regardless, just wanted to say superb blog!

  64. I’m really enjoying the design and layout of your site. It’s a very easy on the eyes which makes it much more enjoyable for me to come here and visit more often. Did you hire out a developer to create your theme? Outstanding work!

  65. May I simply just say what a relief to discover someone who really understands what they are discussing online. You definitely realize how to bring a problem to light and make it important. More people must check this out and understand this side of your story. It’s surprising you are not more popular since you certainly possess the gift.

  66. May I simply say what a relief to uncover somebody that truly knows what they are discussing on the net. You definitely know how to bring an issue to light and make it important. More people need to check this out and understand this side of your story. It’s surprising you aren’t more popular because you definitely have the gift.

  67. I all the time used to study article in news papers but now as I am a user of internet so from now I am using net for content, thanks to web.

  68. Currently it appears like Drupal is the top blogging platform available right now. (from what I’ve read) Is that what you’re using on your blog?

  69. Sweet blog! I found it while surfing around on Yahoo News. Do you have any suggestions on how to get listed in Yahoo News? I’ve been trying for a while but I never seem to get there! Thank you

  70. Whats up very cool web site!! Guy .. Excellent .. Wonderful .. I’ll bookmark your site and take the feeds additionally? I’m happy to seek out so many helpful info right here within the publish, we’d like work out more techniques on this regard, thanks for sharing. . . . . .

  71. Greate article. Keep writing such kind of info on your blog. Im really impressed by your blog.

  72. Hi there terrific website! Does running a blog such as this take a massive amount work? I have very little knowledge of coding however I had been hoping to start my own blog soon. Anyways, if you have any recommendations or tips for new blog owners please share. I understand this is off topic but I just wanted to ask. Thank you!

  73. Hi there, You’ve done an incredible job. I’ll definitely digg it and in my opinion suggest to my friends. I am sure they’ll be benefited from this website.

  74. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  75. Heya! I just wanted to ask if you ever have any problems with hackers? My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no data backup. Do you have any methods to prevent hackers?

  76. Hello there, You’ve performed a fantastic job. I’ll definitely digg it and personally suggest to my friends. I am confident they will be benefited from this website.

  77. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  78. Greate post. Keep writing such kind of information on your site. Im really impressed by your blog.

  79. Excellent post. Keep posting such kind of information on your page. Im really impressed by your blog.

  80. May I simply say what a relief to discover somebody that actually understands what they’re discussing on the web. You actually know how to bring a problem to light and make it important. More people should read this and understand this side of your story. I was surprised you aren’t more popular because you surely possess the gift.

  81. Currently it sounds like Movable Type is the top blogging platform available right now. (from what I’ve read) Is that what you’re using on your blog?

  82. Hi there, You have done a great job. I’ll definitely digg it and in my opinion suggest to my friends. I’m confident they will be benefited from this website.

  83. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  84. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  85. Greetings! I’ve been reading your weblog for some time now and finally got the courage to go ahead and give you a shout out from Atascocita Tx! Just wanted to tell you keep up the good job!

  86. Wow that was unusual. I just wrote an very long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say fantastic blog!

  87. When someone writes an piece of writing he/she maintains the image of a user in his/her mind that how a user can know it. So that’s why this article is outstdanding. Thanks!

  88. Greate post. Keep writing such kind of information on your site. Im really impressed by your site.

  89. Aw, this was a very good post. Spending some time and actual effort to generate a really good article… but what can I say… I hesitate a lot and don’t seem to get anything done.

  90. Aw, this was a really good post. Taking the time and actual effort to produce a top notch article… but what can I say… I procrastinate a lot and don’t seem to get nearly anything done.

  91. Aw, this was an incredibly good post. Spending some time and actual effort to make a good article… but what can I say… I hesitate a lot and don’t seem to get nearly anything done.

  92. Can I simply say what a comfort to discover someone that really understands what they’re discussing online. You definitely realize how to bring an issue to light and make it important. More people need to look at this and understand this side of the story. It’s surprising you aren’t more popular because you definitely possess the gift.

  93. I’m not sure exactly why but this site is loading extremely slow for me. Is anyone else having this problem or is it a issue on my end? I’ll check back later and see if the problem still exists.

  94. Hi there, You’ve performed an incredible job. I’ll certainly digg it and individually recommend to my friends. I am sure they’ll be benefited from this web site.

  95. Currently it sounds like BlogEngine is the preferred blogging platform available right now. (from what I’ve read) Is that what you’re using on your blog?

  96. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  97. Right now it appears like WordPress is the top blogging platform available right now. (from what I’ve read) Is that what you’re using on your blog?

  98. Thank you a lot for sharing this with all people you actually understand what you are speaking approximately! Bookmarked. Kindly also visit my website =). We may have a hyperlink exchange arrangement between us

  99. My partner and I stumbled over here by a different web page and thought I should check things out. I like what I see so i am just following you. Look forward to looking over your web page again.

  100. Wow that was strange. I just wrote an extremely long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Anyways, just wanted to say fantastic blog!

  101. Outstanding post but I was wanting to know if you could write a litte more on this subject? I’d be very thankful if you could elaborate a little bit more. Appreciate it!

  102. Aw, this was a really nice post. Spending some time and actual effort to generate a good article… but what can I say… I hesitate a lot and don’t seem to get nearly anything done.

  103. I absolutely love your blog and find almost all of your post’s to be exactly what I’m looking for. can you offer guest writers to write content in your case? I wouldn’t mind creating a post or elaborating on most of the subjects you write with regards to here. Again, awesome site!

  104. Excellent article. Keep writing such kind of information on your site. Im really impressed by your site.

  105. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  106. Can I just say what a relief to find somebody that truly understands what they are talking about on the net. You actually realize how to bring an issue to light and make it important. More and more people should check this out and understand this side of the story. It’s surprising you’re not more popular because you surely possess the gift.

  107. Amazing things here. I’m very happy to peer your post. Thanks so much and I’m taking a look ahead to touch you. Will you kindly drop me a e-mail?

  108. At this time it sounds like Expression Engine is the best blogging platform available right now. (from what I’ve read) Is that what you are using on your blog?

  109. Wow that was unusual. I just wrote an really long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Anyhow, just wanted to say great blog!

  110. Currently it looks like BlogEngine is the preferred blogging platform available right now. (from what I’ve read) Is that what you are using on your blog?

  111. At this time it sounds like Drupal is the preferred blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?

  112. At this time it looks like Movable Type is the best blogging platform out there right now. (from what I’ve read) Is that what you’re using on your blog?

  113. At this time it looks like BlogEngine is the best blogging platform available right now. (from what I’ve read) Is that what you’re using on your blog?

  114. Definitely believe that which you said. Your favorite justification appeared to be on the internet the simplest thing to be aware of. I say to you, I definitely get irked while people consider worries that they plainly don’t know about. You managed to hit the nail upon the top and also defined out the whole thing without having side effect , people could take a signal. Will probably be back to get more. Thanks

  115. I’m really enjoying the design and layout of your blog. It’s a very easy on the eyes which makes it much more pleasant for me to come here and visit more often. Did you hire out a designer to create your theme? Excellent work!

  116. Hello, this weekend is good for me, for the reason that this moment i am reading this wonderful informative post here at my residence.

  117. Hello there, You have performed a great job. I’ll certainly digg it and individually suggest to my friends. I’m sure they will be benefited from this website.

  118. Hello there, You’ve performed a great job. I will certainly digg it and for my part recommend to my friends. I’m confident they’ll be benefited from this web site.

  119. Simply desire to say your article is as amazing. The clarity in your post is just spectacular and i can assume you are an expert on this subject. Fine with your permission allow me to grab your RSS feed to keep updated with forthcoming post. Thanks a million and please continue the enjoyable work.

  120. Can I simply say what a comfort to find someone that actually understands what they’re discussing on the web. You certainly understand how to bring an issue to light and make it important. A lot more people need to look at this and understand this side of the story. I can’t believe you are not more popular since you definitely have the gift.

  121. I love it when people come together and share views. Great website, continue the good work!

  122. Excellent post. Keep writing such kind of info on your site. Im really impressed by it.

  123. Right now it appears like Drupal is the top blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?

  124. Wow that was unusual. I just wrote an incredibly long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Anyways, just wanted to say wonderful blog!

  125. Appreciating the time and effort you put into your blog and detailed information you present. It’s great to come across a blog every once in a while that isn’t the same out of date rehashed material. Excellent read! I’ve saved your site and I’m adding your RSS feeds to my Google account.

  126. Aw, this was an exceptionally nice post. Taking a few minutes and actual effort to generate a good article… but what can I say… I put things off a whole lot and never manage to get anything done.

  127. I do not know whether it’s just me or if perhaps everybody else encountering issues with your website. It appears as though some of the text in your content are running off the screen. Can somebody else please provide feedback and let me know if this is happening to them as well? This may be a problem with my browser because I’ve had this happen before. Kudos

  128. Hey there, You have done an excellent job. I’ll certainly digg it and in my view recommend to my friends. I am sure they’ll be benefited from this web site.

  129. At this time it sounds like BlogEngine is the preferred blogging platform out there right now. (from what I’ve read) Is that what you’re using on your blog?

  130. Wow that was unusual. I just wrote an really long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Regardless, just wanted to say excellent blog!

  131. Currently it looks like BlogEngine is the best blogging platform available right now. (from what I’ve read) Is that what you are using on your blog?

  132. Right now it appears like Movable Type is the preferred blogging platform available right now. (from what I’ve read) Is that what you’re using on your blog?

  133. Excellent post. Keep posting such kind of info on your blog. Im really impressed by it.

  134. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  135. Hello there, You’ve done a great job. I’ll certainly digg it and in my opinion recommend to my friends. I’m confident they will be benefited from this website.

  136. Greate pieces. Keep posting such kind of information on your site. Im really impressed by your blog.

  137. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  138. Aw, this was an incredibly good post. Taking the time and actual effort to make a very good article… but what can I say… I hesitate a whole lot and don’t manage to get nearly anything done.

  139. Wow that was odd. I just wrote an incredibly long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Anyways, just wanted to say superb blog!

  140. Wow that was odd. I just wrote an really long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Regardless, just wanted to say superb blog!

  141. Can I simply say what a comfort to discover an individual who truly knows what they’re discussing on the net. You definitely realize how to bring an issue to light and make it important. A lot more people must look at this and understand this side of your story. It’s surprising you’re not more popular because you definitely have the gift.

  142. May I simply say what a relief to find somebody that really understands what they are talking about on the internet. You actually realize how to bring an issue to light and make it important. More and more people have to check this out and understand this side of the story. It’s surprising you’re not more popular since you definitely possess the gift.

  143. Greate article. Keep posting such kind of info on your blog. Im really impressed by it.

  144. Wow that was odd. I just wrote an very long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say great blog!

  145. Excellent article. Keep posting such kind of information on your blog. Im really impressed by your site.

  146. Can I simply just say what a comfort to find an individual who really knows what they’re discussing over the internet. You actually realize how to bring a problem to light and make it important. More people need to look at this and understand this side of your story. I was surprised that you aren’t more popular because you surely possess the gift.

  147. May I simply say what a comfort to uncover somebody that really understands what they are discussing on the web. You certainly realize how to bring an issue to light and make it important. More people need to look at this and understand this side of the story. I can’t believe you aren’t more popular since you surely possess the gift.

  148. Hi there, You have done an excellent job. I’ll certainly digg it and personally recommend to my friends. I am confident they’ll be benefited from this site.

  149. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  150. Wow that was odd. I just wrote an really long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Anyways, just wanted to say excellent blog!

  151. Valuable information. Fortunate me I discovered your website unintentionally, and I am stunned why this coincidence did not came about earlier! I bookmarked it.

  152. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  153. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  154. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  155. Aw, this was an incredibly good post. Spending some time and actual effort to create a top notch article… but what can I say… I hesitate a lot and never seem to get nearly anything done.

  156. Right now it sounds like BlogEngine is the preferred blogging platform out there right now. (from what I’ve read) Is that what you’re using on your blog?

  157. Wow that was unusual. I just wrote an incredibly long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Regardless, just wanted to say excellent blog!

  158. Wow that was odd. I just wrote an extremely long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say fantastic blog!

  159. Wow that was strange. I just wrote an very long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Regardless, just wanted to say great blog!

  160. Wow that was odd. I just wrote an incredibly long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say excellent blog!

  161. Right now it seems like Expression Engine is the top blogging platform out there right now. (from what I’ve read) Is that what you’re using on your blog?

  162. Hello there, You have done a great job. I will definitely digg it and in my opinion suggest to my friends. I am confident they’ll be benefited from this website.

  163. Admiring the persistence you put into your blog and detailed information you provide. It’s good to come across a blog every once in a while that isn’t the same old rehashed information. Wonderful read! I’ve saved your site and I’m including your RSS feeds to my Google account.

  164. Hi fantastic website! Does running a blog such as this require a lot of work? I have virtually no knowledge of programming but I had been hoping to start my own blog soon. Anyhow, if you have any suggestions or techniques for new blog owners please share. I understand this is off subject however I just wanted to ask. Appreciate it!

  165. Heya i am for the primary time here. I came across this board and I to find It truly helpful & it helped me out a lot. I am hoping to give one thing again and aid others like you helped me.

  166. Nice response in return of this question with solid arguments and explaining all about that.

  167. always i used to read smaller articles or reviews which as well clear their motive, and that is also happening with this article which I am reading now.

  168. I’m not sure where you’re getting your info, but good topic. I needs to spend some time learning much more or understanding more. Thanks for wonderful information I was looking for this info for my mission.

  169. I think this is one of the most significant information for me. And i’m glad reading your article. But should remark on some general things, The site style is perfect, the articles is really excellent : D. Good job, cheers

  170. It’s going to be end of mine day, but before end I am reading this wonderful piece of writing to improve my experience.

  171. Hello, I enjoy reading all of your post. I like to write a little comment to support you.

  172. I’ve been exploring for a little bit for any high-quality articles or weblog posts in this sort of house . Exploring in Yahoo I at last stumbled upon this web site. Studying this information So i’m satisfied to express that I have a very excellent uncanny feeling I found out exactly what I needed. I most unquestionably will make certain to do not overlook this web site and give it a look on a continuing basis.

  173. I really like your blog.. very nice colors & theme. Did you make this website yourself or did you hire someone to do it for you? Plz respond as I’m looking to design my own blog and would like to find out where u got this from. appreciate it

  174. I simply couldn’t go away your site before suggesting that I extremely loved the usual information an individual supply in your visitors? Is going to be back often in order to check up on new posts

  175. My brother suggested I might like this web site. He was totally right. This post actually made my day. You can not imagine simply how much time I had spent for this info! Thanks!

  176. Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

  177. Right now it seems like Movable Type is the best blogging platform available right now. (from what I’ve read) Is that what you are using on your blog?

Leave a Comment

您的邮箱地址不会被公开。 必填项已用 * 标注

*
*