<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7015429265415715802</id><updated>2012-02-16T04:05:33.726-08:00</updated><title type='text'>Nothing</title><subtitle type='html'>A Girl Should Be Two Things:
Classy &amp;amp; Fabulous
       --Coco Chanel</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://emmaguo.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7015429265415715802/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://emmaguo.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>nothing</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7015429265415715802.post-5311478025448782450</id><published>2011-07-26T15:43:00.000-07:00</published><updated>2011-07-30T18:38:34.283-07:00</updated><title type='text'>How To Avoid Talking To People You Don't Want To Talk To</title><content type='html'>&lt;a href="http://1.bp.blogspot.com/-UVXt2ric5tQ/Ti9DWYY2jMI/AAAAAAAAAEU/YFjJC33qm4M/s1600/123.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 210px;" src="http://1.bp.blogspot.com/-UVXt2ric5tQ/Ti9DWYY2jMI/AAAAAAAAAEU/YFjJC33qm4M/s320/123.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5633795710646652098" /&gt;&lt;/a&gt;&lt;span class="Apple-style-span" style="font-family: 'trebuchet ms', verdana, arial, sans-serif; font-size: small; "&gt;&lt;div class="deleteBody"&gt;&lt;h2 class="postTitle"&gt;You DisgustED Me.&lt;/h2&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7015429265415715802-5311478025448782450?l=emmaguo.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://emmaguo.blogspot.com/feeds/5311478025448782450/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://emmaguo.blogspot.com/2011/07/how-to-avoid-talking-to-people-you-dont.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7015429265415715802/posts/default/5311478025448782450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7015429265415715802/posts/default/5311478025448782450'/><link rel='alternate' type='text/html' href='http://emmaguo.blogspot.com/2011/07/how-to-avoid-talking-to-people-you-dont.html' title='How To Avoid Talking To People You Don&apos;t Want To Talk To'/><author><name>nothing</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-UVXt2ric5tQ/Ti9DWYY2jMI/AAAAAAAAAEU/YFjJC33qm4M/s72-c/123.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7015429265415715802.post-8599140695965503739</id><published>2010-03-26T07:28:00.000-07:00</published><updated>2010-03-26T07:29:05.120-07:00</updated><title type='text'></title><content type='html'>(define-struct t-node (label children))&lt;br /&gt;;; A general tree (gen-tree) is either&lt;br /&gt;;; a string or&lt;br /&gt;;; a structure (make-t-node l c), where&lt;br /&gt;;; l is a string and&lt;br /&gt;;; c is a tree-list.&lt;br /&gt;;; A tree-list is either&lt;br /&gt;;; empty or&lt;br /&gt;;; (cons t tlist), where&lt;br /&gt;;; t is a gen-tree and&lt;br /&gt;;; tlist is a tree-list.&lt;br /&gt;(define-struct single-product (name origin))&lt;br /&gt;;; A single-product is a structure (make-single-product n o), where&lt;br /&gt;;; n is a string and&lt;br /&gt;;; o is a string denoting the country of origin.&lt;br /&gt;(define-struct sales-product (ID prod))&lt;br /&gt;;; A sales-product is a structure (make-sales-product i p), where&lt;br /&gt;;; i is an integer and&lt;br /&gt;;; p is either a single-product or a product-list.&lt;br /&gt;;; A product-list is either&lt;br /&gt;;; empty or&lt;br /&gt;;; (cons sp pl), where&lt;br /&gt;;; sp is a sales-product and&lt;br /&gt;;; pl is a product-list.&lt;br /&gt;&lt;br /&gt;(define (node-count-list alog)&lt;br /&gt;  (cond&lt;br /&gt;    [(empty? alog) 0]&lt;br /&gt;    [else (+ (node-count (first alog))&lt;br /&gt;          (node-count-list (rest alog)))]))&lt;br /&gt;&lt;br /&gt;(define (node-count g)&lt;br /&gt;  (cond&lt;br /&gt;    [(string? g) 1]&lt;br /&gt;    [(t-node? g) (+ 1 (node-count-list (t-node-children g)))]))&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7015429265415715802-8599140695965503739?l=emmaguo.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://emmaguo.blogspot.com/feeds/8599140695965503739/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://emmaguo.blogspot.com/2010/03/define-struct-t-node-label-children.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7015429265415715802/posts/default/8599140695965503739'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7015429265415715802/posts/default/8599140695965503739'/><link rel='alternate' type='text/html' href='http://emmaguo.blogspot.com/2010/03/define-struct-t-node-label-children.html' title=''/><author><name>nothing</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
