CS代考计算机代写 algorithm /***************************************************************************/

/***************************************************************************/
/* */
/* ftoutln.h */
/* */
/* Support for the FT_Outline type used to store glyph shapes of */
/* most scalable font formats (specification). */
/* */
/* Copyright 1996-2015 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
/* modified, and distributed under the terms of the FreeType project */
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
/* this file you indicate that you have read the license and */
/* understand and accept it fully. */
/* */
/***************************************************************************/

#ifndef __FTOUTLN_H__
#define __FTOUTLN_H__

#include
#include FT_FREETYPE_H

#ifdef FREETYPE_H
#error “freetype.h of FreeType 1 has been loaded!”
#error “Please fix the directory search order for header files”
#error “so that freetype.h of FreeType 2 is found first.”
#endif

FT_BEGIN_HEADER

/*************************************************************************/
/* */
/*

*/
/* outline_processing */
/* */
/* */<br /> /* Outline Processing */<br /> /* */<br /> /* <Abstract> */<br /> /* Functions to create, transform, and render vectorial glyph images. */<br /> /* */<br /> /* <Description> */<br /> /* This section contains routines used to create and destroy scalable */<br /> /* glyph images known as `outlines’. These can also be measured, */<br /> /* transformed, and converted into bitmaps and pixmaps. */<br /> /* */<br /> /* <Order> */<br /> /* FT_Outline */<br /> /* FT_Outline_New */<br /> /* FT_Outline_Done */<br /> /* FT_Outline_Copy */<br /> /* FT_Outline_Translate */<br /> /* FT_Outline_Transform */<br /> /* FT_Outline_Embolden */<br /> /* FT_Outline_EmboldenXY */<br /> /* FT_Outline_Reverse */<br /> /* FT_Outline_Check */<br /> /* */<br /> /* FT_Outline_Get_CBox */<br /> /* FT_Outline_Get_BBox */<br /> /* */<br /> /* FT_Outline_Get_Bitmap */<br /> /* FT_Outline_Render */<br /> /* FT_Outline_Decompose */<br /> /* FT_Outline_Funcs */<br /> /* FT_Outline_MoveToFunc */<br /> /* FT_Outline_LineToFunc */<br /> /* FT_Outline_ConicToFunc */<br /> /* FT_Outline_CubicToFunc */<br /> /* */<br /> /* FT_Orientation */<br /> /* FT_Outline_Get_Orientation */<br /> /* */<br /> /* FT_OUTLINE_XXX */<br /> /* */<br /> /*************************************************************************/</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Decompose */<br /> /* */<br /> /* <Description> */<br /> /* Walk over an outline’s structure to decompose it into individual */<br /> /* segments and Bézier arcs. This function also emits `move to’ */<br /> /* operations to indicate the start of new contours in the outline. */<br /> /* */<br /> /* <Input> */<br /> /* outline :: A pointer to the source target. */<br /> /* */<br /> /* func_interface :: A table of `emitters’, i.e., function pointers */<br /> /* called during decomposition to indicate path */<br /> /* operations. */<br /> /* */<br /> /* <InOut> */<br /> /* user :: A typeless pointer that is passed to each */<br /> /* emitter during the decomposition. It can be */<br /> /* used to store the state during the */<br /> /* decomposition. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* A contour that contains a single point only is represented by a */<br /> /* `move to’ operation followed by `line to’ to the same point. In */<br /> /* most cases, it is best to filter this out before using the */<br /> /* outline for stroking purposes (otherwise it would result in a */<br /> /* visible dot when round caps are used). */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_Decompose( FT_Outline* outline,<br /> const FT_Outline_Funcs* func_interface,<br /> void* user );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_New */<br /> /* */<br /> /* <Description> */<br /> /* Create a new outline of a given size. */<br /> /* */<br /> /* <Input> */<br /> /* library :: A handle to the library object from where the */<br /> /* outline is allocated. Note however that the new */<br /> /* outline will *not* necessarily be *freed*, when */<br /> /* destroying the library, by @FT_Done_FreeType. */<br /> /* */<br /> /* numPoints :: The maximum number of points within the outline. */<br /> /* Must be smaller than or equal to 0xFFFF (65535). */<br /> /* */<br /> /* numContours :: The maximum number of contours within the outline. */<br /> /* This value must be in the range 0 to `numPoints’. */<br /> /* */<br /> /* <Output> */<br /> /* anoutline :: A handle to the new outline. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* The reason why this function takes a `library’ parameter is simply */<br /> /* to use the library’s memory allocator. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_New( FT_Library library,<br /> FT_UInt numPoints,<br /> FT_Int numContours,<br /> FT_Outline *anoutline );</p> <p> FT_EXPORT( FT_Error )<br /> FT_Outline_New_Internal( FT_Memory memory,<br /> FT_UInt numPoints,<br /> FT_Int numContours,<br /> FT_Outline *anoutline );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Done */<br /> /* */<br /> /* <Description> */<br /> /* Destroy an outline created with @FT_Outline_New. */<br /> /* */<br /> /* <Input> */<br /> /* library :: A handle of the library object used to allocate the */<br /> /* outline. */<br /> /* */<br /> /* outline :: A pointer to the outline object to be discarded. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* If the outline’s `owner’ field is not set, only the outline */<br /> /* descriptor will be released. */<br /> /* */<br /> /* The reason why this function takes an `library’ parameter is */<br /> /* simply to use ft_mem_free(). */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_Done( FT_Library library,<br /> FT_Outline* outline );</p> <p> FT_EXPORT( FT_Error )<br /> FT_Outline_Done_Internal( FT_Memory memory,<br /> FT_Outline* outline );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Check */<br /> /* */<br /> /* <Description> */<br /> /* Check the contents of an outline descriptor. */<br /> /* */<br /> /* <Input> */<br /> /* outline :: A handle to a source outline. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_Check( FT_Outline* outline );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Get_CBox */<br /> /* */<br /> /* <Description> */<br /> /* Return an outline’s `control box’. The control box encloses all */<br /> /* the outline’s points, including Bézier control points. Though it */<br /> /* coincides with the exact bounding box for most glyphs, it can be */<br /> /* slightly larger in some situations (like when rotating an outline */<br /> /* that contains Bézier outside arcs). */<br /> /* */<br /> /* Computing the control box is very fast, while getting the bounding */<br /> /* box can take much more time as it needs to walk over all segments */<br /> /* and arcs in the outline. To get the latter, you can use the */<br /> /* `ftbbox’ component, which is dedicated to this single task. */<br /> /* */<br /> /* <Input> */<br /> /* outline :: A pointer to the source outline descriptor. */<br /> /* */<br /> /* <Output> */<br /> /* acbox :: The outline’s control box. */<br /> /* */<br /> /* <Note> */<br /> /* See @FT_Glyph_Get_CBox for a discussion of tricky fonts. */<br /> /* */<br /> FT_EXPORT( void )<br /> FT_Outline_Get_CBox( const FT_Outline* outline,<br /> FT_BBox *acbox );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Translate */<br /> /* */<br /> /* <Description> */<br /> /* Apply a simple translation to the points of an outline. */<br /> /* */<br /> /* <InOut> */<br /> /* outline :: A pointer to the target outline descriptor. */<br /> /* */<br /> /* <Input> */<br /> /* xOffset :: The horizontal offset. */<br /> /* */<br /> /* yOffset :: The vertical offset. */<br /> /* */<br /> FT_EXPORT( void )<br /> FT_Outline_Translate( const FT_Outline* outline,<br /> FT_Pos xOffset,<br /> FT_Pos yOffset );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Copy */<br /> /* */<br /> /* <Description> */<br /> /* Copy an outline into another one. Both objects must have the */<br /> /* same sizes (number of points & number of contours) when this */<br /> /* function is called. */<br /> /* */<br /> /* <Input> */<br /> /* source :: A handle to the source outline. */<br /> /* */<br /> /* <Output> */<br /> /* target :: A handle to the target outline. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_Copy( const FT_Outline* source,<br /> FT_Outline *target );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Transform */<br /> /* */<br /> /* <Description> */<br /> /* Apply a simple 2×2 matrix to all of an outline’s points. Useful */<br /> /* for applying rotations, slanting, flipping, etc. */<br /> /* */<br /> /* <InOut> */<br /> /* outline :: A pointer to the target outline descriptor. */<br /> /* */<br /> /* <Input> */<br /> /* matrix :: A pointer to the transformation matrix. */<br /> /* */<br /> /* <Note> */<br /> /* You can use @FT_Outline_Translate if you need to translate the */<br /> /* outline’s points. */<br /> /* */<br /> FT_EXPORT( void )<br /> FT_Outline_Transform( const FT_Outline* outline,<br /> const FT_Matrix* matrix );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Embolden */<br /> /* */<br /> /* <Description> */<br /> /* Embolden an outline. The new outline will be at most 4~times */<br /> /* `strength’ pixels wider and higher. You may think of the left and */<br /> /* bottom borders as unchanged. */<br /> /* */<br /> /* Negative `strength’ values to reduce the outline thickness are */<br /> /* possible also. */<br /> /* */<br /> /* <InOut> */<br /> /* outline :: A handle to the target outline. */<br /> /* */<br /> /* <Input> */<br /> /* strength :: How strong the glyph is emboldened. Expressed in */<br /> /* 26.6 pixel format. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* The used algorithm to increase or decrease the thickness of the */<br /> /* glyph doesn’t change the number of points; this means that certain */<br /> /* situations like acute angles or intersections are sometimes */<br /> /* handled incorrectly. */<br /> /* */<br /> /* If you need `better’ metrics values you should call */<br /> /* @FT_Outline_Get_CBox or @FT_Outline_Get_BBox. */<br /> /* */<br /> /* Example call: */<br /> /* */<br /> /* { */<br /> /* FT_Load_Glyph( face, index, FT_LOAD_DEFAULT ); */<br /> /* if ( face->glyph->format == FT_GLYPH_FORMAT_OUTLINE ) */<br /> /* FT_Outline_Embolden( &face->glyph->outline, strength ); */<br /> /* } */<br /> /* */<br /> /* To get meaningful results, font scaling values must be set with */<br /> /* functions like @FT_Set_Char_Size before calling FT_Render_Glyph. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_Embolden( FT_Outline* outline,<br /> FT_Pos strength );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_EmboldenXY */<br /> /* */<br /> /* <Description> */<br /> /* Embolden an outline. The new outline will be `xstrength’ pixels */<br /> /* wider and `ystrength’ pixels higher. Otherwise, it is similar to */<br /> /* @FT_Outline_Embolden, which uses the same strength in both */<br /> /* directions. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_EmboldenXY( FT_Outline* outline,<br /> FT_Pos xstrength,<br /> FT_Pos ystrength );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Reverse */<br /> /* */<br /> /* <Description> */<br /> /* Reverse the drawing direction of an outline. This is used to */<br /> /* ensure consistent fill conventions for mirrored glyphs. */<br /> /* */<br /> /* <InOut> */<br /> /* outline :: A pointer to the target outline descriptor. */<br /> /* */<br /> /* <Note> */<br /> /* This function toggles the bit flag @FT_OUTLINE_REVERSE_FILL in */<br /> /* the outline’s `flags’ field. */<br /> /* */<br /> /* It shouldn’t be used by a normal client application, unless it */<br /> /* knows what it is doing. */<br /> /* */<br /> FT_EXPORT( void )<br /> FT_Outline_Reverse( FT_Outline* outline );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Get_Bitmap */<br /> /* */<br /> /* <Description> */<br /> /* Render an outline within a bitmap. The outline’s image is simply */<br /> /* OR-ed to the target bitmap. */<br /> /* */<br /> /* <Input> */<br /> /* library :: A handle to a FreeType library object. */<br /> /* */<br /> /* outline :: A pointer to the source outline descriptor. */<br /> /* */<br /> /* <InOut> */<br /> /* abitmap :: A pointer to the target bitmap descriptor. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* This function does NOT CREATE the bitmap, it only renders an */<br /> /* outline image within the one you pass to it! Consequently, the */<br /> /* various fields in `abitmap’ should be set accordingly. */<br /> /* */<br /> /* It will use the raster corresponding to the default glyph format. */<br /> /* */<br /> /* The value of the `num_grays’ field in `abitmap’ is ignored. If */<br /> /* you select the gray-level rasterizer, and you want less than 256 */<br /> /* gray levels, you have to use @FT_Outline_Render directly. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_Get_Bitmap( FT_Library library,<br /> FT_Outline* outline,<br /> const FT_Bitmap *abitmap );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Outline_Render */<br /> /* */<br /> /* <Description> */<br /> /* Render an outline within a bitmap using the current scan-convert. */<br /> /* This function uses an @FT_Raster_Params structure as an argument, */<br /> /* allowing advanced features like direct composition, translucency, */<br /> /* etc. */<br /> /* */<br /> /* <Input> */<br /> /* library :: A handle to a FreeType library object. */<br /> /* */<br /> /* outline :: A pointer to the source outline descriptor. */<br /> /* */<br /> /* <InOut> */<br /> /* params :: A pointer to an @FT_Raster_Params structure used to */<br /> /* describe the rendering operation. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* You should know what you are doing and how @FT_Raster_Params works */<br /> /* to use this function. */<br /> /* */<br /> /* The field `params.source’ will be set to `outline’ before the scan */<br /> /* converter is called, which means that the value you give to it is */<br /> /* actually ignored. */<br /> /* */<br /> /* The gray-level rasterizer always uses 256 gray levels. If you */<br /> /* want less gray levels, you have to provide your own span callback. */<br /> /* See the @FT_RASTER_FLAG_DIRECT value of the `flags’ field in the */<br /> /* @FT_Raster_Params structure for more details. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Outline_Render( FT_Library library,<br /> FT_Outline* outline,<br /> FT_Raster_Params* params );</p> <p> /**************************************************************************<br /> *<br /> * @enum:<br /> * FT_Orientation<br /> *<br /> * @description:<br /> * A list of values used to describe an outline’s contour orientation.<br /> *<br /> * The TrueType and PostScript specifications use different conventions<br /> * to determine whether outline contours should be filled or unfilled.<br /> *<br /> * @values:<br /> * FT_ORIENTATION_TRUETYPE ::<br /> * According to the TrueType specification, clockwise contours must<br /> * be filled, and counter-clockwise ones must be unfilled.<br /> *<br /> * FT_ORIENTATION_POSTSCRIPT ::<br /> * According to the PostScript specification, counter-clockwise contours<br /> * must be filled, and clockwise ones must be unfilled.<br /> *<br /> * FT_ORIENTATION_FILL_RIGHT ::<br /> * This is identical to @FT_ORIENTATION_TRUETYPE, but is used to<br /> * remember that in TrueType, everything that is to the right of<br /> * the drawing direction of a contour must be filled.<br /> *<br /> * FT_ORIENTATION_FILL_LEFT ::<br /> * This is identical to @FT_ORIENTATION_POSTSCRIPT, but is used to<br /> * remember that in PostScript, everything that is to the left of<br /> * the drawing direction of a contour must be filled.<br /> *<br /> * FT_ORIENTATION_NONE ::<br /> * The orientation cannot be determined. That is, different parts of<br /> * the glyph have different orientation.<br /> *<br /> */<br /> typedef enum FT_Orientation_<br /> {<br /> FT_ORIENTATION_TRUETYPE = 0,<br /> FT_ORIENTATION_POSTSCRIPT = 1,<br /> FT_ORIENTATION_FILL_RIGHT = FT_ORIENTATION_TRUETYPE,<br /> FT_ORIENTATION_FILL_LEFT = FT_ORIENTATION_POSTSCRIPT,<br /> FT_ORIENTATION_NONE</p> <p> } FT_Orientation;</p> <p> /**************************************************************************<br /> *<br /> * @function:<br /> * FT_Outline_Get_Orientation<br /> *<br /> * @description:<br /> * This function analyzes a glyph outline and tries to compute its<br /> * fill orientation (see @FT_Orientation). This is done by integrating<br /> * the total area covered by the outline. The positive integral<br /> * corresponds to the clockwise orientation and @FT_ORIENTATION_POSTSCRIPT<br /> * is returned. The negative integral corresponds to the counter-clockwise<br /> * orientation and @FT_ORIENTATION_TRUETYPE is returned.<br /> *<br /> * Note that this will return @FT_ORIENTATION_TRUETYPE for empty<br /> * outlines.<br /> *<br /> * @input:<br /> * outline ::<br /> * A handle to the source outline.<br /> *<br /> * @return:<br /> * The orientation.<br /> *<br /> */<br /> FT_EXPORT( FT_Orientation )<br /> FT_Outline_Get_Orientation( FT_Outline* outline );</p> <p> /* */</p> <p>FT_END_HEADER</p> <p>#endif /* __FTOUTLN_H__ */</p> <p>/* END */</p> <p>/* Local Variables: */<br /> /* coding: utf-8 */<br /> /* End: */</p> </div><!-- .entry-content .clear --> </div> </article><!-- #post-## --> <nav class="navigation post-navigation" aria-label="Post navigation"> <span class="screen-reader-text">Post navigation</span> <div class="nav-links"><div class="nav-previous"><a title="CS代考计算机代写 diff -urp bochs-2.2.6/iodev/pit82c54.cc bochs-2.2.6.orig/iodev/pit82c54.cc" href="https://powcoder.com/2021/02/13/cs%e4%bb%a3%e8%80%83%e8%ae%a1%e7%ae%97%e6%9c%ba%e4%bb%a3%e5%86%99-diff-urp-bochs-2-2-6-iodev-pit82c54-cc-bochs-2-2-6-orig-iodev-pit82c54-cc/" rel="prev"><span class="ast-left-arrow">←</span> Previous Post</a></div><div class="nav-next"><a title="CS代考计算机代写 /* Verifies that memory mappings at address 0 are disallowed. */" href="https://powcoder.com/2021/02/13/cs%e4%bb%a3%e8%80%83%e8%ae%a1%e7%ae%97%e6%9c%ba%e4%bb%a3%e5%86%99-verifies-that-memory-mappings-at-address-0-are-disallowed/" rel="next">Next Post <span class="ast-right-arrow">→</span></a></div></div> </nav><div class="ast-single-related-posts-container ast-container--fallback"><div class="ast-related-posts-title-section"> <h2 class="ast-related-posts-title"> Related Posts </h2> </div><div class="ast-related-posts-wrapper"> <article class="ast-related-post post-38 post type-post status-publish format-standard hentry category-uncategorized tag-matlab tag-simulation"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/matlab-simulation/" target="_self" rel="bookmark noopener noreferrer">matlab simulation</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/matlab/" rel="tag">matlab代写代考</a>, <a href="https://powcoder.com/tag/simulation/" rel="tag">simulation</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-39 post type-post status-publish format-standard hentry category-uncategorized tag-c"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/ab202-assignment-1-arkapong/" target="_self" rel="bookmark noopener noreferrer">AB202 Assignment 1: Arkapong</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-40 post type-post status-publish format-standard hentry category-uncategorized tag-c"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/msc-c-programming/" target="_self" rel="bookmark noopener noreferrer">MSc C++ Programming</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-41 post type-post status-publish format-standard hentry category-uncategorized tag-prolog"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/msc-assessed-prolog-lab-exercise-2/" target="_self" rel="bookmark noopener noreferrer">MSc Assessed Prolog Lab Exercise 2</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/prolog/" rel="tag">Prolog代写代考</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-49 post type-post status-publish format-standard hentry category-uncategorized tag-c tag-uml"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/spring-session2015assignment-1/" target="_self" rel="bookmark noopener noreferrer">Spring Session:2015:Assignment 1</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a>, <a href="https://powcoder.com/tag/uml/" rel="tag">UML</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-51 post type-post status-publish format-standard hentry category-uncategorized tag-uml"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/assignment-2-inception-and-elaboration/" target="_self" rel="bookmark noopener noreferrer">Assignment 2: "Inception and Elaboration"</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/uml/" rel="tag">UML</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-55 post type-post status-publish format-standard hentry category-uncategorized tag-android tag-java"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/android-app/" target="_self" rel="bookmark noopener noreferrer">android app</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/android/" rel="tag">android</a>, <a href="https://powcoder.com/tag/java/" rel="tag">Java代写代考</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-57 post type-post status-publish format-standard hentry category-uncategorized tag-java tag-junit"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/comp220-software-development-tools/" target="_self" rel="bookmark noopener noreferrer">COMP220: Software Development Tools</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/java/" rel="tag">Java代写代考</a>, <a href="https://powcoder.com/tag/junit/" rel="tag">junit</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> </div> </div> </main><!-- #main --> </div><!-- #primary --> <div class="widget-area secondary" id="secondary" itemtype="https://schema.org/WPSideBar" itemscope="itemscope"> <div class="sidebar-main" > <aside id="custom_html-2" class="widget_text widget widget_custom_html"><h2 class="widget-title">Contact</h2><div class="textwidget custom-html-widget"><ul> <li><strong>QQ: 1823890830</strong></li> <li><strong>微信号(WeChat): powcoder</strong></li> <li><img data-recalc-dims="1" class="alignnone wp-image-366" src="https://i0.wp.com/powcoder.com/wp-content/uploads/2021/01/powcoder.jpg?resize=133%2C133&ssl=1" alt="myweixin" width="133" height="133"/></li> <li><strong>Email: <a href="mailto:powcoder@163.com">powcoder@163.com</a></strong></li> </ul> <ul> <li><strong>请加微信或QQ发要求</strong></li> <li><strong>Contact me through WeChat</strong></li> </ul> </div></aside><aside id="categories-2" class="widget widget_categories"><h2 class="widget-title">Categories</h2><nav aria-label="Categories"> <ul> <li class="cat-item cat-item-245"><a href="https://powcoder.com/category/machine-learning/">机器学习代写代考 machine learning</a> </li> <li class="cat-item cat-item-242"><a href="https://powcoder.com/category/database-db-sql/">数据库代写代考 DB Database SQL</a> </li> <li class="cat-item cat-item-244"><a href="https://powcoder.com/category/data-structure-algorithm/">数据结构算法代写代考 data structure algorithm</a> </li> <li class="cat-item cat-item-239"><a href="https://powcoder.com/category/%e4%ba%ba%e5%b7%a5%e6%99%ba%e8%83%bd-ai-artificial-intelligence/">人工智能 AI Artificial Intelligence</a> </li> <li class="cat-item cat-item-247"><a href="https://powcoder.com/category/compiler/">编译器原理 Compiler</a> </li> <li class="cat-item cat-item-254"><a href="https://powcoder.com/category/network-socket/">计算机网络 套接字编程 computer network socket programming</a> </li> <li class="cat-item cat-item-240"><a href="https://powcoder.com/category/hadoop-map-reduce-spark-hbase/">大数据 Hadoop Map Reduce Spark HBase</a> </li> <li class="cat-item cat-item-241"><a href="https://powcoder.com/category/%e6%93%8d%e4%bd%9c%e7%b3%bb%e7%bb%9fosoperating-system/">操作系统OS代写代考 (Operating System)</a> </li> <li class="cat-item cat-item-250"><a href="https://powcoder.com/category/computer-architecture/">计算机体系结构代写代考 Computer Architecture</a> </li> <li class="cat-item cat-item-251"><a href="https://powcoder.com/category/computer-graphics-opengl-webgl/">计算机图形学 Computer Graphics opengl webgl</a> </li> <li class="cat-item cat-item-249"><a href="https://powcoder.com/category/nlp/">自然语言处理 NLP natural language processing</a> </li> <li class="cat-item cat-item-383"><a href="https://powcoder.com/category/%e5%b9%b6%e8%a1%8c%e8%ae%a1%e7%ae%97/">并行计算</a> </li> <li class="cat-item cat-item-253"><a href="https://powcoder.com/category/computation-theory/">计算理论 Theory of Computation</a> </li> <li class="cat-item cat-item-252"><a href="https://powcoder.com/category/computer-security/">计算机安全密码学computer security cryptography</a> </li> <li class="cat-item cat-item-246"><a href="https://powcoder.com/category/sys-programming/">系统编程 System programming</a> </li> <li class="cat-item cat-item-367"><a href="https://powcoder.com/category/%e6%95%b0%e5%80%bc%e7%a7%91%e5%ad%a6%e8%ae%a1%e7%ae%97/">数值科学计算</a> </li> <li class="cat-item cat-item-255"><a href="https://powcoder.com/category/%e8%ae%a1%e7%ae%97%e6%9c%ba%e8%a7%86%e8%a7%89compute-vision/">计算机视觉代写代考(Compute Vision)</a> </li> <li class="cat-item cat-item-248"><a href="https://powcoder.com/category/web/">网页应用 Web Application</a> </li> <li class="cat-item cat-item-401"><a href="https://powcoder.com/category/%e5%88%86%e5%b8%83%e5%bc%8f%e7%b3%bb%e7%bb%9f/">分布式系统</a> </li> <li class="cat-item cat-item-640"><a href="https://powcoder.com/category/%e7%ac%94%e8%af%95%e9%9d%a2%e8%af%95/">笔试面试</a> </li> <li class="cat-item cat-item-403"><a href="https://powcoder.com/category/%e5%87%bd%e6%95%b0%e5%bc%8f%e7%bc%96%e7%a8%8b/">函数式编程</a> </li> <li class="cat-item cat-item-243"><a href="https://powcoder.com/category/%e6%95%b0%e6%8d%ae%e6%8c%96%e6%8e%98-data-mining/">数据挖掘 Data Mining</a> </li> <li class="cat-item cat-item-364"><a href="https://powcoder.com/category/%e7%a6%bb%e6%95%a3%e6%95%b0%e5%ad%a6/">离散数学代写代考 (Discrete mathematics)</a> </li> <li class="cat-item cat-item-384"><a href="https://powcoder.com/category/%e8%bd%af%e4%bb%b6%e5%b7%a5%e7%a8%8b/">软件工程</a> </li> <li class="cat-item cat-item-551"><a href="https://powcoder.com/category/%e7%bc%96%e7%a8%8b%e8%af%ad%e8%a8%80-programming-language/">编程语言 Programming Language</a> </li> <li class="cat-item cat-item-594"><a href="https://powcoder.com/category/%e7%bb%9f%e8%ae%a1%e4%bb%a3%e5%86%99%e4%bb%a3%e8%80%83/">统计代写代考</a> </li> <li class="cat-item cat-item-574"><a href="https://powcoder.com/category/%e8%bf%90%e7%ad%b9%e5%ad%a6-operation-research/">运筹学 Operation Research</a> </li> </ul> </nav></aside><aside id="tag_cloud-3" class="widget widget_tag_cloud"><h2 class="widget-title">Tag</h2><nav aria-label="Tag"><div class="tagcloud"><a href="https://powcoder.com/tag/algorithm/" class="tag-cloud-link tag-link-469 tag-link-position-1" style="font-size: 18px;" aria-label="Algorithm算法代写代考 (15,146 items)">Algorithm算法代写代考</a><a href="https://powcoder.com/tag/java/" class="tag-cloud-link tag-link-298 tag-link-position-2" style="font-size: 16.91156462585px;" aria-label="Java代写代考 (7,274 items)">Java代写代考</a><a href="https://powcoder.com/tag/database/" class="tag-cloud-link tag-link-414 tag-link-position-3" style="font-size: 16.503401360544px;" aria-label="database (5,442 items)">database</a><a href="https://powcoder.com/tag/data-structure/" class="tag-cloud-link tag-link-501 tag-link-position-4" style="font-size: 16.43537414966px;" aria-label="data structure (5,188 items)">data structure</a><a href="https://powcoder.com/tag/python/" class="tag-cloud-link tag-link-331 tag-link-position-5" style="font-size: 16.299319727891px;" aria-label="Python代写代考 (4,816 items)">Python代写代考</a><a href="https://powcoder.com/tag/compiler/" class="tag-cloud-link tag-link-472 tag-link-position-6" style="font-size: 16.027210884354px;" aria-label="compiler (4,000 items)">compiler</a><a href="https://powcoder.com/tag/scheme/" class="tag-cloud-link tag-link-338 tag-link-position-7" style="font-size: 15.823129251701px;" aria-label="Scheme代写代考 (3,502 items)">Scheme代写代考</a><a href="https://powcoder.com/tag/c-4/" class="tag-cloud-link tag-link-499 tag-link-position-8" style="font-size: 15.823129251701px;" aria-label="C语言代写 (3,489 items)">C语言代写</a><a href="https://powcoder.com/tag/ai/" class="tag-cloud-link tag-link-369 tag-link-position-9" style="font-size: 15.176870748299px;" aria-label="AI代写 (2,216 items)">AI代写</a><a href="https://powcoder.com/tag/c-3/" class="tag-cloud-link tag-link-491 tag-link-position-10" style="font-size: 14.700680272109px;" aria-label="c++代写 (1,633 items)">c++代写</a><a href="https://powcoder.com/tag/sql/" class="tag-cloud-link tag-link-395 tag-link-position-11" style="font-size: 14.530612244898px;" aria-label="SQL代写代考 (1,457 items)">SQL代写代考</a><a href="https://powcoder.com/tag/haskell/" class="tag-cloud-link tag-link-291 tag-link-position-12" style="font-size: 14.530612244898px;" aria-label="Haskell代写代考 (1,453 items)">Haskell代写代考</a><a href="https://powcoder.com/tag/javascript/" class="tag-cloud-link tag-link-299 tag-link-position-13" style="font-size: 14.462585034014px;" aria-label="javascript (1,395 items)">javascript</a><a href="https://powcoder.com/tag/concurrency/" class="tag-cloud-link tag-link-503 tag-link-position-14" style="font-size: 14.428571428571px;" aria-label="concurrency (1,355 items)">concurrency</a><a href="https://powcoder.com/tag/matlab/" class="tag-cloud-link tag-link-309 tag-link-position-15" style="font-size: 14.360544217687px;" aria-label="matlab代写代考 (1,281 items)">matlab代写代考</a><a href="https://powcoder.com/tag/finance/" class="tag-cloud-link tag-link-282 tag-link-position-16" style="font-size: 14.292517006803px;" aria-label="finance (1,221 items)">finance</a><a href="https://powcoder.com/tag/interpreter/" class="tag-cloud-link tag-link-297 tag-link-position-17" style="font-size: 14.190476190476px;" aria-label="interpreter (1,144 items)">interpreter</a><a href="https://powcoder.com/tag/mips/" class="tag-cloud-link tag-link-313 tag-link-position-18" style="font-size: 14.190476190476px;" aria-label="MIPS汇编代写代考 (1,137 items)">MIPS汇编代写代考</a><a href="https://powcoder.com/tag/data-mining/" class="tag-cloud-link tag-link-271 tag-link-position-19" style="font-size: 13.986394557823px;" aria-label="data mining (994 items)">data mining</a><a href="https://powcoder.com/tag/decision-tree/" class="tag-cloud-link tag-link-273 tag-link-position-20" style="font-size: 13.952380952381px;" aria-label="decision tree (982 items)">decision tree</a><a href="https://powcoder.com/tag/deep-learning/" class="tag-cloud-link tag-link-274 tag-link-position-21" style="font-size: 13.952380952381px;" aria-label="deep learning深度学习代写代考 (980 items)">deep learning深度学习代写代考</a><a href="https://powcoder.com/tag/prolog/" class="tag-cloud-link tag-link-329 tag-link-position-22" style="font-size: 13.918367346939px;" aria-label="Prolog代写代考 (957 items)">Prolog代写代考</a><a href="https://powcoder.com/tag/file-system/" class="tag-cloud-link tag-link-281 tag-link-position-23" style="font-size: 13.850340136054px;" aria-label="file system (902 items)">file system</a><a href="https://powcoder.com/tag/c/" class="tag-cloud-link tag-link-265 tag-link-position-24" style="font-size: 13.578231292517px;" aria-label="c++代做 (764 items)">c++代做</a><a href="https://powcoder.com/tag/computer-architecture/" class="tag-cloud-link tag-link-507 tag-link-position-25" style="font-size: 13.47619047619px;" aria-label="computer architecture (712 items)">computer architecture</a><a href="https://powcoder.com/tag/er/" class="tag-cloud-link tag-link-433 tag-link-position-26" style="font-size: 13.47619047619px;" aria-label="ER (711 items)">ER</a><a href="https://powcoder.com/tag/gui/" class="tag-cloud-link tag-link-290 tag-link-position-27" style="font-size: 13.47619047619px;" aria-label="gui (711 items)">gui</a><a href="https://powcoder.com/tag/gpu/" class="tag-cloud-link tag-link-396 tag-link-position-28" style="font-size: 13.272108843537px;" aria-label="GPU (620 items)">GPU</a><a href="https://powcoder.com/tag/data-science/" class="tag-cloud-link tag-link-272 tag-link-position-29" style="font-size: 13.272108843537px;" aria-label="data science (615 items)">data science</a><a href="https://powcoder.com/tag/x86%e6%b1%87%e7%bc%96/" class="tag-cloud-link tag-link-514 tag-link-position-30" style="font-size: 13.238095238095px;" aria-label="x86汇编代写代考 (606 items)">x86汇编代写代考</a><a href="https://powcoder.com/tag/case-study/" class="tag-cloud-link tag-link-468 tag-link-position-31" style="font-size: 13.204081632653px;" aria-label="case study (586 items)">case study</a><a href="https://powcoder.com/tag/distributed-system/" class="tag-cloud-link tag-link-277 tag-link-position-32" style="font-size: 13.170068027211px;" aria-label="distributed system (576 items)">distributed system</a><a href="https://powcoder.com/tag/android/" class="tag-cloud-link tag-link-256 tag-link-position-33" style="font-size: 13.034013605442px;" aria-label="android (527 items)">android</a><a href="https://powcoder.com/tag/kernel/" class="tag-cloud-link tag-link-470 tag-link-position-34" style="font-size: 13.034013605442px;" aria-label="kernel (520 items)">kernel</a><a href="https://powcoder.com/tag/arm/" class="tag-cloud-link tag-link-483 tag-link-position-35" style="font-size: 13px;" aria-label="ARM汇编代写代考 (514 items)">ARM汇编代写代考</a></div> </nav></aside><aside id="block-4" class="widget widget_block"> <div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><div class="wp-block-group__inner-container"><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/12/10/cs%e4%bb%a3%e8%80%83-cs-0447-computer-organization-and-assembly-language-midterm-project-conne/">CS代考 CS 0447 Computer Organization and Assembly Language Midterm Project – Conne</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/12/10/%e8%ae%a1%e7%ae%97%e6%9c%ba%e4%bb%a3%e5%86%99-cs7641-assignment-4-markov-decision-processes-fall-2024/">计算机代写 CS7641 Assignment 4 Markov Decision Processes Fall 2024</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/12/10/%e8%ae%a1%e7%ae%97%e6%9c%ba%e4%bb%a3%e5%86%99-comp9313-project-3/">计算机代写 COMP9313 Project 3</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/12/01/cs%e4%bb%a3%e5%86%99-cs7641-assignment-4-markov-decision-processes-fall-2024/">CS代写 CS7641 Assignment 4 Markov Decision Processes Fall 2024</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/12/01/cs%e4%bb%a3%e5%86%99-comp9313-project-3/">CS代写 COMP9313 Project 3</a></li> </ul></div></div> </aside> </div><!-- .sidebar-main --> </div><!-- #secondary --> </div> <!-- ast-container --> </div><!-- #content --> <footer class="site-footer" id="colophon" itemtype="https://schema.org/WPFooter" itemscope="itemscope" itemid="#colophon"> <div class="site-below-footer-wrap ast-builder-grid-row-container site-footer-focus-item ast-builder-grid-row-full ast-builder-grid-row-tablet-full ast-builder-grid-row-mobile-full ast-footer-row-stack ast-footer-row-tablet-stack ast-footer-row-mobile-stack" data-section="section-below-footer-builder"> <div class="ast-builder-grid-row-container-inner"> <div class="ast-builder-footer-grid-columns site-below-footer-inner-wrap ast-builder-grid-row"> <div class="site-footer-below-section-1 site-footer-section site-footer-section-1"> <div class="ast-builder-layout-element ast-flex site-footer-focus-item ast-footer-copyright" data-section="section-footer-builder"> <div class="ast-footer-copyright"><p>Copyright © 2025 PowCoder代写 | Powered by <a href="https://wpastra.com/" rel="nofollow noopener" target="_blank">Astra WordPress Theme</a></p> </div> </div> </div> </div> </div> </div> </footer><!-- #colophon --> </div><!-- #page --> <link rel="stylesheet" href="https://powcoder.com/wp-content/cache/minify/12163.css" media="all" /> <script id="astra-theme-js-js-extra"> var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; </script> <script src="https://powcoder.com/wp-content/cache/minify/75800.js"></script> <script src="https://stats.wp.com/e-202502.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script id="jetpack-stats-js-after"> _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"132118579\",\"post\":\"40819\",\"tz\":\"8\",\"srv\":\"powcoder.com\",\"j\":\"1:14.2.1\"}") ]); _stq.push([ "clickTrackerInit", "132118579", "40819" ]); </script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Object Caching 275/336 objects using Disk Page Caching using Disk: Enhanced Content Delivery Network via N/A Minified using Disk Served from: powcoder.com @ 2025-01-12 18:55:17 by W3 Total Cache -->